(not at the head of any monitored branch or PR)
2025-02-10 19:01.42: New job: test junit_ounit.2.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27179/head (b5d19e192c34b6eaa3dceec327ed5e7cad9e24fa)
                              on debian-12-ocaml-4.02/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27179/head" && git reset --hard b5d19e19
git fetch origin master
git merge --no-edit e41dcf1317027b68f2446cba5fefed79d9087146
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.02@sha256:ef772061af9654b39460a742a16507f23b4ea4fc3c012ea4dae3f10f99359f5a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn junit_ounit.2.2.0 2.2.0
RUN opam reinstall junit_ounit.2.2.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'junit_ounit.2.2.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test junit_ounit.2.2.0) || true
RUN opam reinstall --with-test --verbose junit_ounit.2.2.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'junit_ounit.2.2.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-02-10 19:01.42: Using cache hint "ocaml/opam:debian-12-ocaml-4.02@sha256:ef772061af9654b39460a742a16507f23b4ea4fc3c012ea4dae3f10f99359f5a-junit_ounit.2.2.0-b5d19e192c34b6eaa3dceec327ed5e7cad9e24fa"
2025-02-10 19:01.42: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.02@sha256:ef772061af9654b39460a742a16507f23b4ea4fc3c012ea4dae3f10f99359f5a)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn junit_ounit.2.2.0 2.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall junit_ounit.2.2.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'junit_ounit.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test junit_ounit.2.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose junit_ounit.2.2.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'junit_ounit.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-02-10 19:01.42: Waiting for resource in pool OCluster
2025-02-11 08:13.56: Waiting for worker…
2025-02-11 08:16.36: Got resource from pool OCluster
Building on x86-bm-c2.sw.ocaml.org
All commits already cached
HEAD is now at e41dcf1317 Merge pull request #27400 from hannesm/release-tcpip-v9.0.0
Merge made by the 'ort' strategy.
 packages/junit/junit.2.2.0/opam                   | 41 +++++++++++++++++++++++
 packages/junit_alcotest/junit_alcotest.2.2.0/opam | 41 +++++++++++++++++++++++
 packages/junit_ounit/junit_ounit.2.2.0/opam       | 41 +++++++++++++++++++++++
 3 files changed, 123 insertions(+)
 create mode 100644 packages/junit/junit.2.2.0/opam
 create mode 100644 packages/junit_alcotest/junit_alcotest.2.2.0/opam
 create mode 100644 packages/junit_ounit/junit_ounit.2.2.0/opam

(from ocaml/opam:debian-12-ocaml-4.02@sha256:ef772061af9654b39460a742a16507f23b4ea4fc3c012ea4dae3f10f99359f5a)
2025-02-11 08:17.36 ---> saved as "a9aa29aea5d91d3c62ae9d3ad01ec030aa382ebc9d386fa2f9a7e58ae77a5167"

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-11 08:17.36 ---> saved as "1731b641017188602c4c2ed376bfc22927428e184b112f524d903101dbda180e"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-11 08:18.44 ---> saved as "ffdceab664539beb0a1b5c071b07e79df69b9a4c86335b391019a3f68b02bcd6"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 39
# repositories         1 (local), 1 (version-controlled)
# pinned               1 (version)
# current-switch       4.02
# invariant            ["ocaml-base-compiler" {= "4.02.3"}]
# compiler-packages    ocaml-base-compiler.4.02.3
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.02/lib/ocaml/stublibs:/home/opam/.opam/4.02/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.02.3
2025-02-11 08:18.46 ---> saved as "fff87b8032b32e8b119b6164079db7220a83859b99de41cc61cd1e88a718987e"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-02-11 08:18.54 ---> saved as "379c1e7e536e1c10dad1ef5d86a96e3743d478f90f4671249be384aaa6a7a546"

/home/opam: (copy (src .) (dst opam-repository/))
2025-02-11 08:19.02 ---> saved as "c97b2667e2263c3523ccc46245dc634f08fdcc3c1485ffd92d9ebfb52b619c21"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-11 08:19.58 ---> saved as "24409a398514dad841335fe5dedb58678b3800d24bae2350a000b609b975fb9d"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [245 kB]
- Fetched 348 kB in 0s (1225 kB/s)
- Reading package lists...
- 
2025-02-11 08:19.59 ---> saved as "e9fc433af461950b05053f6cb7ff5a3bff88a9e187a0f556c64f59e04b80f718"

/home/opam: (run (shell "opam pin add -k version -yn junit_ounit.2.2.0 2.2.0"))
junit_ounit is now pinned to version 2.2.0
2025-02-11 08:20.00 ---> saved as "264a19b422e9696f484f9e02fe679dcb8b80db9beca79a7ff9f258467996209e"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall junit_ounit.2.2.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'junit_ounit.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
junit_ounit.2.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
  - install base-bytes          base           [required by ounit2]
  - install dune                3.17.2         [required by junit_ounit]
  - install junit               2.2.0          [required by junit_ounit]
  - install junit_ounit         2.2.0 (pinned)
  - install ocamlbuild          0              [required by ptime]
  - install ocamlfind           1.9.6          [required by ptime, ocamlfind-secondary, base-bytes]
  - install ocamlfind-secondary 1.9.6          [required by dune]
  - install ounit2              2.2.2          [required by junit_ounit]
  - install ptime               0.8.5          [required by junit]
  - install re                  1.10.3         [required by tyxml]
  - install result              1.5            [required by ptime]
  - install seq                 0.3.1          [required by tyxml]
  - install stdlib-shims        0.3.0          [required by ounit2]
  - install topkg               1.0.0          [required by ptime]
  - install tyxml               4.5.0          [required by junit]
  - install uchar               0.0.2          [required by uutf]
  - install uutf                1.0.2          [required by tyxml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.17.2  (cached)
-> retrieved junit.2.2.0, junit_ounit.2.2.0  (cached)
-> installed ocamlbuild.0
-> retrieved ocamlfind.1.9.6, ocamlfind-secondary.1.9.6  (cached)
-> retrieved ounit2.2.2.2  (cached)
-> retrieved ptime.0.8.5  (cached)
-> retrieved re.1.10.3  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.0.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.0  (cached)
-> retrieved tyxml.4.5.0  (cached)
-> retrieved uchar.0.0.2  (cached)
-> retrieved uutf.1.0.2  (cached)
-> installed uchar.0.0.2
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlfind-secondary.1.9.6
-> installed dune.3.17.2
-> installed seq.0.3.1
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed re.1.10.3
-> installed ounit2.2.2.2
-> installed topkg.1.0.0
-> installed uutf.1.0.2
-> installed ptime.0.8.5
-> installed tyxml.4.5.0
-> installed junit.2.2.0
-> installed junit_ounit.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 08:20.57 ---> saved as "041b55020da774475a1a27ec226d1ec862fcc6616c1b4fa723027e9b59969c80"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test junit_ounit.2.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile junit_ounit 2.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   junit_ounit.2.2.0
-> installed junit_ounit.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 08:21.06 ---> saved as "fc93c618dd0d7a8c0b31ad29b9ae7bd32d39d92699aca1ba21ee69f4dcbc992a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose junit_ounit.2.2.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'junit_ounit.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile junit_ounit 2.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [junit_ounit: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "junit_ounit" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/4.02/.opam-switch/build/junit_ounit.2.2.0)
-> compiled  junit_ounit.2.2.0
-> removed   junit_ounit.2.2.0
-> installed junit_ounit.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 08:21.19 ---> saved as "6a9287616ef3be14dbcfd9ac3a3208719f3f097db40d8506fc4468da18a1ee0d"
Job succeeded
2025-02-11 08:21.25: Job succeeded