(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 archlinux-ocaml-5.3/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:archlinux-ocaml-5.3@sha256:cbed359a5b944374776d976ac883d681be77aa5a70857a59ef6ba169c8e9d053
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 "\"archlinux\""; 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 "\"archlinux\""; 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:archlinux-ocaml-5.3@sha256:cbed359a5b944374776d976ac883d681be77aa5a70857a59ef6ba169c8e9d053-sel.0.7.0-43612c0f934e71e0b79e9889113dba898038409d"
2025-06-13 08:44.38: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.3@sha256:cbed359a5b944374776d976ac883d681be77aa5a70857a59ef6ba169c8e9d053)
 (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 \"\\\"archlinux\\\"\"; 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 \"\\\"archlinux\\\"\"; 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.39: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files:  91% (21286/23300)
Updating files:  92% (21436/23300)
Updating files:  93% (21669/23300)
Updating files:  94% (21902/23300)
Updating files:  95% (22135/23300)
Updating files:  96% (22368/23300)
Updating files:  97% (22601/23300)
Updating files:  98% (22834/23300)
Updating files:  99% (23067/23300)
Updating files: 100% (23300/23300)
Updating files: 100% (23300/23300), done.
HEAD is now at 88b51a5452 Merge pull request #28021 from mbarbin/conf-hg-win32-cygwin
Updating 88b51a5452..43612c0f93
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
 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:archlinux-ocaml-5.3@sha256:cbed359a5b944374776d976ac883d681be77aa5a70857a59ef6ba169c8e9d053)
2025-06-13 08:45.25 ---> saved as "f146817939391dd461dc0051d6616646a020acb9df53b4b096414e56e3feea37"

/: (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.25 ---> saved as "0c6698cd9619bc7005bf32a65d44967bb0b378a62c3d07d20938ac66594d2a5a"

/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
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=255 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-06-13 08:45.58 ---> saved as "9ec95034f8b35b37338a8c9ef7883d330f37e6fdcc12e89ac47b939eef640cf9"

/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=arch os-version=20250601.0.358000
# 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       5.3
# invariant            ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-06-13 08:45.59 ---> saved as "b67dd9a259caf008c39d0173584bfb8652af24f732054e3a5a2af18508541517"

/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.08 ---> saved as "84b29062b013327339de9d83c5eae0b37f418e159ed5d36df54cb44b8599f7ff"

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2025-06-13 08:46.43 ---> saved as "b9db10b9a3251ecf9a294f1dc5198e560a9229f9031ace2bea91d4e1e92fd6ab"

/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.44 ---> saved as "839c7ce9b0781be602eebff2247691ee675afade0c25afb165acf87e810d98d8"

/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 \"\\\"archlinux\\\"\"; 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
  ∗ cppo                1.8.0          [required by ppx_deriving]
  ∗ dune                3.19.1         [required by sel]
  ∗ ocaml-compiler-libs v0.17.0        [required by ppxlib]
  ∗ ocamlfind           1.9.8          [required by ppx_deriving]
  ∗ ppx_derivers        1.2.1          [required by ppx_deriving]
  ∗ ppx_deriving        6.1.0          [required by sel]
  ∗ ppxlib              0.36.0         [required by ppx_deriving]
  ∗ sel                 0.7.0 (pinned)
  ∗ sexplib0            v0.17.0        [required by ppxlib]
  ∗ 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.17.0  (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.17.0
∗ 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:47.55 ---> saved as "40711b70fe1a84f352bab919f9e2018e9a2a6b7adf432f2ff06802f2d9460b61"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test sel.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
  ↻ sel                     0.7.0 (pinned)
=== install 20 packages
  ∗ base                    v0.17.2        [required by ppx_assert, ppx_inline_test]
  ∗ csexp                   1.5.2          [required by dune-configurator]
  ∗ dune-configurator       3.19.1         [required by base]
  ∗ jane-street-headers     v0.17.0        [required by time_now]
  ∗ jst-config              v0.17.0        [required by time_now]
  ∗ ocaml_intrinsics_kernel v0.17.1        [required by base]
  ∗ ppx_assert              v0.17.0        [required by sel]
  ∗ ppx_base                v0.17.0        [required by time_now]
  ∗ ppx_cold                v0.17.0        [required by ppx_assert]
  ∗ ppx_compare             v0.17.0        [required by ppx_assert]
  ∗ ppx_enumerate           v0.17.0        [required by ppx_base]
  ∗ ppx_globalize           v0.17.2        [required by ppx_base]
  ∗ ppx_hash                v0.17.0        [required by ppx_base]
  ∗ ppx_here                v0.17.0        [required by ppx_assert]
  ∗ ppx_inline_test         v0.17.1        [required by sel]
  ∗ ppx_optcomp             v0.17.1        [required by time_now]
  ∗ ppx_sexp_conv           v0.17.1        [required by sel]
  ∗ ppxlib_jane             v0.17.3        [required by ppx_compare, ppx_sexp_conv]
  ∗ stdio                   v0.17.0        [required by ppx_optcomp]
  ∗ time_now                v0.17.0        [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved base.v0.17.2  (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.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved jst-config.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_assert.v0.17.0  (https://opam.ocaml.org/cache)
∗ installed jane-street-headers.v0.17.0
⬇ retrieved ppx_base.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_cold.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_compare.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_enumerate.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_globalize.v0.17.2  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_hash.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_here.v0.17.0  (https://opam.ocaml.org/cache)
∗ installed ocaml_intrinsics_kernel.v0.17.1
⬇ retrieved ppx_inline_test.v0.17.1  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_optcomp.v0.17.1  (https://opam.ocaml.org/cache)
⬇ retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
⬇ retrieved ppxlib_jane.v0.17.3  (https://opam.ocaml.org/cache)
⬇ retrieved stdio.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved time_now.v0.17.0  (https://opam.ocaml.org/cache)
∗ installed dune-configurator.3.19.1
⊘ removed   sel.0.7.0
∗ installed ppxlib_jane.v0.17.3
∗ installed base.v0.17.2
∗ installed stdio.v0.17.0
∗ installed ppx_here.v0.17.0
∗ installed ppx_cold.v0.17.0
∗ installed ppx_optcomp.v0.17.1
∗ installed ppx_enumerate.v0.17.0
∗ installed ppx_globalize.v0.17.2
∗ installed ppx_compare.v0.17.0
∗ installed ppx_sexp_conv.v0.17.1
∗ installed ppx_hash.v0.17.0
∗ installed ppx_assert.v0.17.0
∗ installed ppx_base.v0.17.0
∗ installed jst-config.v0.17.0
∗ installed time_now.v0.17.0
∗ installed ppx_inline_test.v0.17.1
∗ installed sel.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-13 08:48.44 ---> saved as "dd5e8a62348f6678dd4e748437ed18876bc2ffd0237a961a38cb6befee643dbd"

/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 \"\\\"archlinux\\\"\"; 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
  ↻ 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/5.3/.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.55 ---> saved as "4d80d2c129d4740caf20be4fbbf946aa717732ffbce7da475f70f5038e4ac82a"
Job succeeded
2025-06-13 08:49.05: Job succeeded