(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-5.3/ppc64le

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-5.3@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8
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-5.3@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8-sel.0.7.0-43612c0f934e71e0b79e9889113dba898038409d"
2025-06-13 08:44.38: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8)
 (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.38: Got resource from pool OCluster
Building on scyleia.caelum.ci.dev
All commits already cached
Updating files:  98% (23037/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
 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-5.3@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8' locally
docker.io/ocaml/opam@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8: Pulling from ocaml/opam
996840ee3507: Already exists
ee9a8af2a7ea: Already exists
4ca048e7bbe7: Already exists
31633a07e460: Already exists
4315786db56b: Already exists
a6598f3205f9: Already exists
34e0d892dafa: Already exists
1186a513b1da: Already exists
9bd8d8b76943: Already exists
7016669b2c0f: Already exists
b8f58781ef4f: Already exists
29350fa019d8: Already exists
1178d8bc1650: Already exists
ac5bf51cb11f: Already exists
9b5a8362d361: Already exists
9b5a8362d361: Already exists
b5bcce174082: Already exists
0bd37a71adbe: Already exists
dab36f7bc7b4: Already exists
ed1f103d763d: Already exists
4f4fb700ef54: Already exists
92bed594dc72: Already exists
4d1751d246ef: Already exists
d8983c7eea77: Already exists
82c323b890bf: Already exists
afda9558c731: Already exists
f1df42dd1639: Already exists
a324bcf96dc6: Already exists
5255b018b35d: Already exists
a6bcc41b20e7: Already exists
ce17426d065a: Already exists
0adcf64c49eb: Already exists
c7e3ef48db78: Already exists
afb9ef1685ec: Already exists
fbda39219ff8: Already exists
a002f0a7c957: Already exists
6a506a373e05: Already exists
0af459c94f77: Already exists
271aa99c86d1: Already exists
855716da00c9: Pulling fs layer
02a7644fe7fc: Pulling fs layer
65ed42461281: Pulling fs layer
a4c830d2ea18: Pulling fs layer
7ef957a691a9: Pulling fs layer
6410003e6380: Pulling fs layer
99b462ef4685: Pulling fs layer
a4c830d2ea18: Waiting
7ef957a691a9: Waiting
99b462ef4685: Waiting
6410003e6380: Waiting
65ed42461281: Verifying Checksum
65ed42461281: Download complete
02a7644fe7fc: Verifying Checksum
02a7644fe7fc: Download complete
855716da00c9: Verifying Checksum
855716da00c9: Download complete
855716da00c9: Pull complete
02a7644fe7fc: Pull complete
65ed42461281: Pull complete
7ef957a691a9: Verifying Checksum
7ef957a691a9: Download complete
99b462ef4685: Verifying Checksum
99b462ef4685: Download complete
6410003e6380: Download complete
a4c830d2ea18: Verifying Checksum
a4c830d2ea18: Download complete
a4c830d2ea18: Pull complete
7ef957a691a9: Pull complete
6410003e6380: Pull complete
99b462ef4685: Pull complete
Digest: sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8
Status: Downloaded newer image for ocaml/opam@sha256:ee1370892e35a7707afd41501039a3c90e173dd9ce9096b12b0e38a805d568f8
2025-06-13 08:44.48 ---> using "d2f18e339fc62b9487ec937ac3577309d7eb0a63dee3b97d34f0497b3005480e" 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:44.48 ---> using "fbedfb0fba00e9895539868a745a87fa804b1bfbff3ec8e316ef9c3106e9385d" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-06-13 08:44.48 ---> using "021a461651025e96abc6fd2293490c2d63a0e9f17a24aec1dc0944a27491d4e4" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=ppc64 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                 175
# 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:44.48 ---> using "099b1d3346b8666d2efe0fdf4c768ce84261874bf2c41f829925847b7b6a5bbc" 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/"))
2025-06-13 08:44.48 ---> using "bacf4058333341a13efa96348c9507edf9b437672a92a2676270bd46fd9d212c" from cache

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

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

/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 ppc64el Packages [253 kB]
- Fetched 356 kB in 0s (774 kB/s)
- Reading package lists...
- 
2025-06-13 08:47.01 ---> saved as "33bf7c67e620aac1b8eefc4175b8350df1a3cae55d6f4729c18274ac09c9cc14"

/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:47.02 ---> saved as "4ee0d474ec527efab9fc8c3c5b471fbaa4a20ae844343e078c1a3f81f05cc182"

/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.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 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.56 ---> saved as "028fbaad9feea9ad53e0ad0e2ad7e20dbc6a67d8fa46a7d476c1626e02326646"

/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)
-> installed jane-street-headers.v0.17.0
-> retrieved ppx_assert.v0.17.0  (https://opam.ocaml.org/cache)
-> 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)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> 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)
-> 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)
-> installed dune-configurator.3.19.1
-> 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)
-> 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_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_here.v0.17.0
-> 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.32 ---> saved as "ddc76e7b5af072b0d4db4db275a577ed3e0014424428b01fb13c9dd342b7b0a4"

/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" "175" "@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.39 ---> saved as "c21196c59d79f6f63f4c34c1edbd6ab7d1d5257fa9e249030c74a906b0a4716f"
Job succeeded
2025-06-13 08:49.08: Job succeeded