(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 fedora-41-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:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7
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 "\"fedora-41\""; 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 "\"fedora-41\""; 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:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7-sel.0.7.0-43612c0f934e71e0b79e9889113dba898038409d"
2025-06-13 08:44.38: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7)
 (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 \"\\\"fedora-41\\\"\"; 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 \"\\\"fedora-41\\\"\"; 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 asteria.caelum.ci.dev
All commits already cached
Updating files:  91% (21238/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 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:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7)
2025-06-13 08:45.06 ---> using "6885aab87f4fe22185c8b8094f735035f681f36e522db31f68b1c3410c45c8dc" from cache

/: (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.06 ---> using "a28a8db60400c77ae32062687c010999f9c406a6287ed7c9c2dbd253433cfc5d" 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 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 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-06-13 08:45.33 ---> saved as "90e05fdd753eaea84c35665496312023240a8784e6f67649f73fc5ea01febc95"

/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=fedora os-version=41
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# 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.33 ---> saved as "0a6fd1dce792146357dd70d5d8065bfe8864afa5a37332fc904d65c501785b6a"

/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:45.46 ---> saved as "2312968cc6379df5322f3d7b67e8f0c5daf58b3d6ef5abdae34059e1412e850f"

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 41 - x86_64 - Updates           100% |  72.2 KiB/s |   7.4 KiB |  00m00s
-  Fedora 41 - x86_64 - Updates           100% |   3.7 MiB/s |   3.5 MiB |  00m01s
- Repositories loaded.
- Metadata cache created.
2025-06-13 08:46.27 ---> saved as "ac04c32611af5f74a958568544e7c335bd0b60067a28048b777da25b1f1a7364"

/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.28 ---> saved as "6054e6cbd0622d643baa979cb6604a0aadc38d0ad16a42e5b06b6b209cc3ca62"

/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 \"\\\"fedora-41\\\"\"; 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.17.0        [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.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  (https://github.com/gares/sel/releases/download/v0.7.0/sel-0.7.0.tbz)
-> 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 cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.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.12 ---> saved as "d5c05acc5a6d730f76a5b55dae09f9cd4ee39d4665f8bfab3ff3b2203b793ccf"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test sel.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile sel                     0.7.0 (pinned)
=== install 20 packages
  - install   base                    v0.17.2        [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.17.0        [required by time_now]
  - install   jst-config              v0.17.0        [required by time_now]
  - install   ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install   ppx_assert              v0.17.0        [required by sel]
  - install   ppx_base                v0.17.0        [required by time_now]
  - install   ppx_cold                v0.17.0        [required by ppx_assert]
  - install   ppx_compare             v0.17.0        [required by ppx_assert]
  - install   ppx_enumerate           v0.17.0        [required by ppx_base]
  - install   ppx_globalize           v0.17.2        [required by ppx_base]
  - install   ppx_hash                v0.17.0        [required by ppx_base]
  - install   ppx_here                v0.17.0        [required by ppx_assert]
  - install   ppx_inline_test         v0.17.1        [required by sel]
  - install   ppx_optcomp             v0.17.1        [required by time_now]
  - install   ppx_sexp_conv           v0.17.1        [required by sel]
  - install   ppxlib_jane             v0.17.3        [required by ppx_compare, ppx_sexp_conv]
  - install   stdio                   v0.17.0        [required by ppx_optcomp]
  - install   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)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> 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)
-> 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_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> 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:47.42 ---> saved as "c185fb0769f10f2fd7bebf59add4463596a630668989cdd31368d3e846ca6798"

/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 \"\\\"fedora-41\\\"\"; 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" "255" "@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:47.48 ---> saved as "0027cad05bdcde1071de5c7434c776f72eb0fe7ad542e376150efda84c3976fa"
Job succeeded
2025-06-13 08:47.54: Job succeeded