(for PR #28024)

2025-06-13 08:44.38: New job: test sel.0.7.0, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28024/head (43612c0f934e71e0b79e9889113dba898038409d)
                              on debian-12-ocaml-4.14-nnp/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/28024/head" && git reset --hard 43612c0f
git fetch origin master
git merge --no-edit 88b51a54522eb5c90b50480aa73d5c5b33b58230
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14-nnp@sha256:556fea128f1bfdd90209dfca413f673abad0978150fd38a3c7324071adc06634
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 sel.0.7.0 0.7.0
RUN opam reinstall sel.0.7.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" != 'sel.0.7.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 sel.0.7.0) || true
RUN opam reinstall --with-test --verbose sel.0.7.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" != 'sel.0.7.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-06-13 08:44.38: Using cache hint "ocaml/opam:debian-12-ocaml-4.14-nnp@sha256:556fea128f1bfdd90209dfca413f673abad0978150fd38a3c7324071adc06634-sel.0.7.0-43612c0f934e71e0b79e9889113dba898038409d"
2025-06-13 08:44.38: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14-nnp@sha256:556fea128f1bfdd90209dfca413f673abad0978150fd38a3c7324071adc06634)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 sel.0.7.0 0.7.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall sel.0.7.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\" != 'sel.0.7.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 sel.0.7.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose sel.0.7.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\" != 'sel.0.7.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-06-13 08:44.38: Waiting for resource in pool OCluster
2025-06-13 08:44.38: Waiting for worker…
2025-06-13 08:44.41: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 88b51a5452 Merge pull request #28021 from mbarbin/conf-hg-win32-cygwin
Updating 88b51a5452..43612c0f93
Fast-forward
 packages/sel/sel.0.7.0/opam | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 packages/sel/sel.0.7.0/opam

(from ocaml/opam:debian-12-ocaml-4.14-nnp@sha256:556fea128f1bfdd90209dfca413f673abad0978150fd38a3c7324071adc06634)
2025-06-13 08:45.24 ---> saved as "a46915dac0e5b04b39f820bf0d1d88ecdd33c9a39b585155495294227297a2d7"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-06-13 08:45.24 ---> saved as "c0ec8ee33b88b088019f7230a77eeb342cab79e50dcd7ed6c809b97e5706eab1"

/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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-06-13 08:45.55 ---> saved as "bb182ea5053ed868d39117505936d608d901aaae07ba851f68af8daf05abc72b"

/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# 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                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-options-only-nnp"]
# compiler-packages    ocaml-option-nnp.1, ocaml-options-only-nnp.1, ocaml-variants.4.14.2+options
# 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+options+nnp
2025-06-13 08:45.56 ---> saved as "9bb58cde38b311217c55b1d05812985a87e798f02f051786af7009afffc45329"

/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-06-13 08:46.03 ---> saved as "0b569b950d89e160354560ec6d8b541abba41348b7124d0d3f188c95ba539067"

/home/opam: (copy (src .) (dst opam-repository/))
2025-06-13 08:46.11 ---> saved as "0fa945f914aad8268fc3a83d053dc80a8205df08a691cb8dded6a5fe026a952a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-13 08:46.42 ---> saved as "4880b3a3c8dbe926d97c0d2092bc0336005c4b5913404e39ee273f1585aba068"

/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 [266 kB]
- Fetched 369 kB in 0s (895 kB/s)
- Reading package lists...
- 
2025-06-13 08:46.43 ---> saved as "df4f869aa7b38f8b0540a7c35de9528e4d2c578da71c0c405500a802b2b27e72"

/home/opam: (run (shell "opam pin add -k version -yn sel.0.7.0 0.7.0"))
sel is now pinned to version 0.7.0
2025-06-13 08:46.45 ---> saved as "43844401e44fcd1389591dfb53dfb9edbbb394548a7c5bd92d256a3c52e4a7d3"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sel.0.7.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\" != 'sel.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sel.0.7.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 10 packages
  - install cppo                1.8.0          [required by ppx_deriving]
  - install dune                3.19.1         [required by sel]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocamlfind           1.9.8          [required by ppx_deriving]
  - install ppx_derivers        1.2.1          [required by ppx_deriving]
  - install ppx_deriving        6.1.0          [required by sel]
  - install ppxlib              0.36.0         [required by ppx_deriving]
  - install sel                 0.7.0 (pinned)
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved dune.3.19.1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.0  (cached)
-> retrieved ppxlib.0.36.0  (cached)
-> retrieved sel.0.7.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed ocamlfind.1.9.8
-> installed dune.3.19.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed cppo.1.8.0
-> installed ppxlib.0.36.0
-> installed ppx_deriving.6.1.0
-> installed sel.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-13 08:48.00 ---> saved as "389d7002ee5373e2392da30cadf052ba7848751e906488ae1f0d40b95407f57b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test sel.0.7.0) || true"))
The following actions will be performed:
=== downgrade 3 packages
  - downgrade ppx_deriving        6.1.0 to 6.0.3     [required by sel]
  - downgrade ppxlib              0.36.0 to 0.35.0   [required by ppx_assert, ppx_deriving, ppx_inline_test]
  - downgrade sexplib0            v0.17.0 to v0.16.0 [required by base, ppxlib, ppx_sexp_conv]
=== recompile 1 package
  - recompile sel                 0.7.0 (pinned)
=== install 18 packages
  - install   base                v0.16.4            [required by ppx_assert, ppx_inline_test]
  - install   csexp               1.5.2              [required by dune-configurator]
  - install   dune-configurator   3.19.1             [required by base]
  - install   jane-street-headers v0.16.0            [required by time_now]
  - install   jst-config          v0.16.0            [required by time_now]
  - install   ppx_assert          v0.16.0            [required by sel]
  - install   ppx_base            v0.16.0            [required by time_now]
  - install   ppx_cold            v0.16.0            [required by ppx_assert]
  - install   ppx_compare         v0.16.0            [required by ppx_assert]
  - install   ppx_enumerate       v0.16.0            [required by ppx_base]
  - install   ppx_globalize       v0.16.0            [required by ppx_base]
  - install   ppx_hash            v0.16.0            [required by ppx_base]
  - install   ppx_here            v0.16.0            [required by ppx_assert]
  - install   ppx_inline_test     v0.16.1            [required by sel]
  - install   ppx_optcomp         v0.16.0            [required by time_now]
  - install   ppx_sexp_conv       v0.16.0            [required by sel]
  - install   stdio               v0.16.0            [required by ppx_optcomp]
  - install   time_now            v0.16.0            [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.19.1  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.16.0  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved ppx_base.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving.6.0.3  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.19.1
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.16.0  (https://opam.ocaml.org/cache)
-> removed   sel.0.7.0
-> removed   ppx_deriving.6.1.0
-> removed   ppxlib.0.36.0
-> removed   sexplib0.v0.17.0
-> installed sexplib0.v0.16.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed sel.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-13 08:48.45 ---> saved as "d1b02e7d9cb7cd73be890d0bf58be51a02d236a1398fced3d055c4e8eaa91d84"

/home/opam: (run (shell  "opam reinstall --with-test --verbose sel.0.7.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\" != 'sel.0.7.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 sel 0.7.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [sel: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sel" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/sel.0.7.0)
-> compiled  sel.0.7.0
-> removed   sel.0.7.0
-> installed sel.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-13 08:48.52 ---> saved as "9a6a7bc4cd155fd4a02f7a73f7caa5268a7db59441b1f9157b2ccdc2a8fa60e0"
Job succeeded
2025-06-13 08:48.59: Job succeeded