(not at the head of any monitored branch or PR)
2025-02-26 14:59.56: New job: test junit_ounit.2.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27179/head (a3b5164831db81464b015f5a4c2eadaac5712852)
                              on ubuntu-24.04-ocaml-4.14/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 a3b51648
git fetch origin master
git merge --no-edit 1d1ea2841b231665859c831a77400c2a4deca6f4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:83254115748fa895e6d68032384c020371e6b48ba7e8e694e2f7688035f5a8e5
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 "\"ubuntu-24.04\""; 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 "\"ubuntu-24.04\""; 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-26 14:59.56: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:83254115748fa895e6d68032384c020371e6b48ba7e8e694e2f7688035f5a8e5-junit_ounit.2.2.0-a3b5164831db81464b015f5a4c2eadaac5712852"
2025-02-26 14:59.56: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:83254115748fa895e6d68032384c020371e6b48ba7e8e694e2f7688035f5a8e5)
 (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 \"\\\"ubuntu-24.04\\\"\"; 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 \"\\\"ubuntu-24.04\\\"\"; 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-26 14:59.56: Waiting for resource in pool OCluster
2025-02-26 15:02.12: Waiting for worker…
2025-02-26 15:07.30: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 1d1ea2841b Merge pull request #27381 from zapashcanon/conf
Merge made by the 'ort' strategy.
 packages/junit/junit.2.2.0/opam                   | 42 +++++++++++++++++++++++
 packages/junit_alcotest/junit_alcotest.2.2.0/opam | 42 +++++++++++++++++++++++
 packages/junit_ounit/junit_ounit.2.2.0/opam       | 41 ++++++++++++++++++++++
 3 files changed, 125 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:ubuntu-24.04-ocaml-4.14@sha256:83254115748fa895e6d68032384c020371e6b48ba7e8e694e2f7688035f5a8e5)
2025-02-26 15:07.52 ---> saved as "e69afb14abef9c4850e696800dbecfc3f0febd284bcd7514990611c898106a31"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-26 15:07.53 ---> saved as "207ec27b04257103e80ba113974cddb787dba49ba98512e0d263035d80f7fd7f"

/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-26 15:08.54 ---> saved as "6f74a3557201a8f536ce3f349f15472430ff5722a48e5cbe79d87e19e749ec17"

/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 (7f62f012239c88b3ce08e800578ca1d88e602f8a)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=ubuntu os-version=24.04
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (local), 1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-02-26 15:08.55 ---> saved as "dfb63e1ff16e874672ce6c72036d1e974a4d2dea7a210576f1ca26dd2b86dbe5"

/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-26 15:09.04 ---> saved as "630358a7a9186cd55848b2c811988715b0cf5c1b90d620859465b1fe8d261084"

/home/opam: (copy (src .) (dst opam-repository/))
2025-02-26 15:09.11 ---> saved as "3f2acd87e4f95ab8f61efced7b131811753d72728c575b83056a6d5fd97dd47d"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-26 15:10.09 ---> saved as "537cbefcb1f767510a344e3a6886a56c541b17989849541d928faa55df4a2701"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Get:2 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1053 kB]
- Hit:3 http://archive.ubuntu.com/ubuntu noble InRelease
- Get:4 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [798 kB]
- Get:5 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [24.2 kB]
- Get:6 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [822 kB]
- Get:7 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
- Get:8 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
- Get:9 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [863 kB]
- Get:10 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [28.8 kB]
- Get:11 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1331 kB]
- Get:12 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1119 kB]
- Fetched 6418 kB in 1s (5756 kB/s)
- Reading package lists...
2025-02-26 15:10.11 ---> saved as "2661bebe05c799400429ac3cf4d950fde1a2dc9676e5bfb50d29a39d057337a8"

/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-26 15:10.12 ---> saved as "2e6ce4eecf5bb6aeba673993967c728e01e129cb18e7bcf032724499ea326a02"

/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 \"\\\"ubuntu-24.04\\\"\"; 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 13 packages
  - 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.15.0         [required by ptime]
  - install ocamlfind    1.9.8          [required by ptime]
  - install ounit2       2.2.7          [required by junit_ounit]
  - install ptime        1.2.0          [required by junit]
  - install re           1.12.0         [required by tyxml]
  - install seq          base           [required by ounit2]
  - install stdlib-shims 0.3.0          [required by ounit2]
  - install topkg        1.0.7          [required by ptime]
  - install tyxml        4.6.0          [required by junit]
  - install uutf         1.0.3          [required by tyxml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.17.2  (cached)
-> retrieved junit.2.2.0, junit_ounit.2.2.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ounit2.2.2.7  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved tyxml.4.6.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed ptime.1.2.0
-> installed dune.3.17.2
-> installed stdlib-shims.0.3.0
-> installed re.1.12.0
-> installed ounit2.2.2.7
-> installed tyxml.4.6.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-26 15:10.43 ---> saved as "164822fcf555e763c18672ef3dfad12daa9e4a568ffec1f12059b709037d729f"

/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-26 15:10.49 ---> saved as "84297dfea457a4a7721e74124d8615ba189c89d5973da5342fbbc48d58cb8db0"

/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 \"\\\"ubuntu-24.04\\\"\"; 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" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.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-26 15:10.56 ---> saved as "c5aa54b52c4b8f42d358027c4a817bfb8e7791db5ba9d4ff9243199f80bc62c9"
Job succeeded
2025-02-26 15:11.11: Job succeeded