Build:
  1. 0
2026-02-11 03:34.56: New job: test top-closure.3.21.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29374/head (8488f032647bf3337f4fccb6d52ed7fb871e97a1)
                              on centos-9-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/29374/head" && git reset --hard 8488f032
git fetch origin master
git merge --no-edit 98d5860f2a88bcf813cb6816f5afb924cab026a0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-4.14@sha256:c779df692ad03b59b13aa9182fc8777f38ff8e77a3adba95bf15c15976922d6d
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 top-closure.3.21.1 3.21.1
RUN opam reinstall top-closure.3.21.1; \
    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 "\"centos-9\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'top-closure.3.21.1' && 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 top-closure.3.21.1) || true
RUN opam reinstall --with-test --verbose top-closure.3.21.1; \
    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 "\"centos-9\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'top-closure.3.21.1' && 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 .

2026-02-11 03:34.56: Using cache hint "ocaml/opam:centos-9-ocaml-4.14@sha256:c779df692ad03b59b13aa9182fc8777f38ff8e77a3adba95bf15c15976922d6d-top-closure.3.21.1-8488f032647bf3337f4fccb6d52ed7fb871e97a1"
2026-02-11 03:34.56: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:c779df692ad03b59b13aa9182fc8777f38ff8e77a3adba95bf15c15976922d6d)
 (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 top-closure.3.21.1 3.21.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall top-closure.3.21.1;\
             \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 \"\\\"centos-9\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'top-closure.3.21.1' && 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 top-closure.3.21.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose top-closure.3.21.1;\
             \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 \"\\\"centos-9\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'top-closure.3.21.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-11 03:34.56: Waiting for resource in pool OCluster
2026-02-11 03:50.26: Waiting for worker…
2026-02-11 03:53.03: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 98d5860f2a Merge pull request #29364 from fpottier/opam-publish-menhir.20260209
Updating 98d5860f2a..8488f03264
Fast-forward
 packages/chrome-trace/chrome-trace.3.21.1/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.21.1/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.21.1/opam    | 47 ++++++++++++++
 .../dune-configurator.3.21.1/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.1/opam           | 44 +++++++++++++
 .../dune-private-libs.3.21.1/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.1/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.1/opam             | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.1/opam           | 39 +++++++++++
 packages/dune/dune.3.21.1/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.1/opam                       | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.1/opam                   | 41 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.1/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.21.1/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.21.1/opam                 | 48 ++++++++++++++
 packages/top-closure/top-closure.3.21.1/opam       | 40 ++++++++++++
 packages/xdg/xdg.3.21.1/opam                       | 41 ++++++++++++
 17 files changed, 789 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.1/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.1/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.1/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.1/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.1/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.1/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.1/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.1/opam
 create mode 100644 packages/dune-site/dune-site.3.21.1/opam
 create mode 100644 packages/dune/dune.3.21.1/opam
 create mode 100644 packages/dyn/dyn.3.21.1/opam
 create mode 100644 packages/fs-io/fs-io.3.21.1/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.1/opam
 create mode 100644 packages/ordering/ordering.3.21.1/opam
 create mode 100644 packages/stdune/stdune.3.21.1/opam
 create mode 100644 packages/top-closure/top-closure.3.21.1/opam
 create mode 100644 packages/xdg/xdg.3.21.1/opam

(from ocaml/opam:centos-9-ocaml-4.14@sha256:c779df692ad03b59b13aa9182fc8777f38ff8e77a3adba95bf15c15976922d6d)
2026-02-11 03:53.11 ---> using "2700d2ee689d7121b6af2e9619ada84d0f0afaee40e4c0e0591acc5f333fb7ac" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-11 03:53.11 ---> using "9d8c91c15c3db184b223979da28bf0f6fdd1c3fc5f1207a26db9699f68ba4914" from cache

/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 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-11 03:53.11 ---> using "d8d4b63edf5aa08c4e34e6d8a0a70b4afbd874875f211826ebeaf4e65aa98afc" from cache

/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.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=centos os-version=9
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         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
2026-02-11 03:53.11 ---> using "b14e251ea74ce0849c5e4148d3fa523d4e453a534dca78afc4c1eb01b26381d6" from cache

/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/"))
2026-02-11 03:53.11 ---> using "7cf54b718e61327b01a55e77f415ccee5102fbffaedcded57c6f68686f8a1b33" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-11 03:53.19 ---> saved as "e27d02d21c84f4463c8844252122b0b3e9b4bfe4c6012b1e0f46bd81a833fd38"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-11 03:53.40 ---> saved as "f4e1ed81ca018b0d93fb396cffff97d1952a3568a47c070f9022fe1aadf8201d"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS                         90 kB/s |  13 kB     00:00    
- CentOS Stream 9 - BaseOS                         14 MB/s | 8.9 MB     00:00    
- CentOS Stream 9 - AppStream                     100 kB/s |  13 kB     00:00    
- CentOS Stream 9 - AppStream                      12 MB/s |  27 MB     00:02    
- CentOS Stream 9 - CRB                            33 kB/s |  13 kB     00:00    
- CentOS Stream 9 - CRB                           2.0 MB/s | 7.8 MB     00:03    
- CentOS Stream 9 - Extras packages                97 kB/s |  16 kB     00:00    
- Metadata cache created.
2026-02-11 03:54.02 ---> saved as "a092c13ea94f9757bef39b3b7ff8b6c5e6ba5d6b6350959c13e783c76359be89"

/home/opam: (run (shell "opam pin add -k version -yn top-closure.3.21.1 3.21.1"))
top-closure is now pinned to version 3.21.1
2026-02-11 03:54.03 ---> saved as "943b4da6084ed63ebfbfe887d1ea067bef71c823bc7c6d177d26e1051af4f070"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall top-closure.3.21.1;\
                        \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 \"\\\"centos-9\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'top-closure.3.21.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
top-closure.3.21.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune        3.21.1          [required by top-closure]
  - install top-closure 3.21.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.1, top-closure.3.21.1  (cached)
-> installed dune.3.21.1
-> installed top-closure.3.21.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 03:54.41 ---> saved as "ea8ec0c4b627a57c4130a4bc9acae99fd8c00e5f2e85d369a3db56c1039e837b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   top-closure.3.21.1
-> installed top-closure.3.21.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 03:54.48 ---> saved as "624394838f5054ebe359355f94cfe9a49b20a3648f754f4d5c0a5dfbaaefadfd"

/home/opam: (run (shell  "opam reinstall --with-test --verbose top-closure.3.21.1;\
                        \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 \"\\\"centos-9\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'top-closure.3.21.1' && 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 top-closure 3.21.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [top-closure: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-rf" "vendor/csexp" (CWD=/home/opam/.opam/4.14/.opam-switch/build/top-closure.3.21.1)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-rf" "vendor/pp" (CWD=/home/opam/.opam/4.14/.opam-switch/build/top-closure.3.21.1)
Processing  2/4: [top-closure: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "top-closure" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/top-closure.3.21.1)
-> compiled  top-closure.3.21.1
-> removed   top-closure.3.21.1
-> installed top-closure.3.21.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-11 03:54.57 ---> saved as "0f63e86997c35e6c52341d0da8d5032544bbecb9ad441d70dff452e1b5e1f241"
Job succeeded
2026-02-11 03:55.05: Job succeeded