(not at the head of any monitored branch or PR)
2025-01-10 07:44.20: New job: test ortac-runtime-qcheck-stm.0.5.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27219/head (c8c103eb4673817336218a342e8960a6e8ac356e)
                              on debian-11-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/27219/head" && git reset --hard c8c103eb
git fetch origin master
git merge --no-edit 67e940587b8aca227f511e1943bcd31eabe6b1db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-11-ocaml-5.3@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68
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 ortac-runtime-qcheck-stm.0.5.0 0.5.0
RUN opam reinstall ortac-runtime-qcheck-stm.0.5.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-11\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ortac-runtime-qcheck-stm.0.5.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 ortac-runtime-qcheck-stm.0.5.0) || true
RUN opam reinstall --with-test --verbose ortac-runtime-qcheck-stm.0.5.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-11\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ortac-runtime-qcheck-stm.0.5.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-01-10 07:44.20: Using cache hint "ocaml/opam:debian-11-ocaml-5.3@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68-ortac-runtime-qcheck-stm.0.5.0-c8c103eb4673817336218a342e8960a6e8ac356e"
2025-01-10 07:44.20: Using OBuilder spec:
((from ocaml/opam:debian-11-ocaml-5.3@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68)
 (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 ortac-runtime-qcheck-stm.0.5.0 0.5.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ortac-runtime-qcheck-stm.0.5.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-11\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ortac-runtime-qcheck-stm.0.5.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 ortac-runtime-qcheck-stm.0.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ortac-runtime-qcheck-stm.0.5.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-11\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ortac-runtime-qcheck-stm.0.5.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-01-10 07:44.20: Connecting to build cluster…
2025-01-10 07:44.20: Waiting for resource in pool OCluster
2025-01-10 09:36.15: Waiting for worker…
2025-01-10 09:37.51: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  75% (21759/28899)
Updating files:  76% (21964/28899)
Updating files:  77% (22253/28899)
Updating files:  78% (22542/28899)
Updating files:  79% (22831/28899)
Updating files:  80% (23120/28899)
Updating files:  81% (23409/28899)
Updating files:  82% (23698/28899)
Updating files:  83% (23987/28899)
Updating files:  84% (24276/28899)
Updating files:  85% (24565/28899)
Updating files:  86% (24854/28899)
Updating files:  87% (25143/28899)
Updating files:  88% (25432/28899)
Updating files:  89% (25721/28899)
Updating files:  90% (26010/28899)
Updating files:  91% (26299/28899)
Updating files:  92% (26588/28899)
Updating files:  93% (26877/28899)
Updating files:  94% (27166/28899)
Updating files:  95% (27455/28899)
Updating files:  96% (27744/28899)
Updating files:  97% (28033/28899)
Updating files:  98% (28322/28899)
Updating files:  99% (28611/28899)
Updating files: 100% (28899/28899)
Updating files: 100% (28899/28899), done.
HEAD is now at 67e940587b Merge pull request #27236 from kit-ty-kate/opam-publish-mccs.1.1-19
Merge made by the 'ort' strategy.
 packages/ortac-core/ortac-core.0.5.0/opam          | 65 ++++++++++++++++++++++
 packages/ortac-dune/ortac-dune.0.5.0/opam          | 43 ++++++++++++++
 .../ortac-qcheck-stm/ortac-qcheck-stm.0.5.0/opam   | 64 +++++++++++++++++++++
 .../ortac-runtime-qcheck-stm.0.5.0/opam            | 51 +++++++++++++++++
 packages/ortac-runtime/ortac-runtime.0.5.0/opam    | 52 +++++++++++++++++
 5 files changed, 275 insertions(+)
 create mode 100644 packages/ortac-core/ortac-core.0.5.0/opam
 create mode 100644 packages/ortac-dune/ortac-dune.0.5.0/opam
 create mode 100644 packages/ortac-qcheck-stm/ortac-qcheck-stm.0.5.0/opam
 create mode 100644 packages/ortac-runtime-qcheck-stm/ortac-runtime-qcheck-stm.0.5.0/opam
 create mode 100644 packages/ortac-runtime/ortac-runtime.0.5.0/opam

(from ocaml/opam:debian-11-ocaml-5.3@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68)
Unable to find image 'ocaml/opam:debian-11-ocaml-5.3@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68' locally
docker.io/ocaml/opam@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68: Pulling from ocaml/opam
445ac20ba6e2: Pulling fs layer
445ac20ba6e2: Waiting
445ac20ba6e2: Download complete
445ac20ba6e2: Pull complete
Digest: sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68
Status: Downloaded newer image for ocaml/opam@sha256:7ca7d8baeaf86dceba08348618b0a681490df083ce43c2c9e0269891867cad68
2025-01-10 09:40.23 ---> using "dd4c66b4fc72a2efe62d7366c24841148a2fe536b066de27ae3f667c0d1050d6" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-01-10 09:40.23 ---> using "0b42ef57ecdcbd31462cf9ca12c4f05e1dffe6a245cc529827e09a5874e49f0c" 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 31 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=31 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2025-01-10 09:40.23 ---> using "e61e6775259920a5368a22f984955ee46a50991959a79147570fcbb1941cbb9b" 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.4.0~alpha1~dev (26290a42e5a3dd44c3e2f8f743e6b8c391bdc206)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=11
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (local)
# 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-01-10 09:40.23 ---> using "d5866fda65a85b4c61d99c2664fa84f398c7960f25baea99b819e2296cade1d7" 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-01-10 09:40.23 ---> using "edec514793203cb318feb423f1fd9234626d294ea815f52e200f5371564dfb89" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-01-10 09:40.26 ---> saved as "8bbb959fd8a82d43c5c9e7de849a06768a6bdbdd3597b7fd94f6c9b594b86eac"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-01-10 09:41.13 ---> saved as "a17733b59a3ff0a9afd891c8325f9f7977b1391c0cc05398bb15df4d93031cde"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bullseye InRelease
- Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [27.2 kB]
- Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]
- Fetched 71.2 kB in 0s (157 kB/s)
- Reading package lists...
2025-01-10 09:41.15 ---> saved as "9cc4c6ad0d621757b9edf31609caa0484a85d6973125ba16e3ee18a0ebc6df8b"

/home/opam: (run (shell "opam pin add -k version -yn ortac-runtime-qcheck-stm.0.5.0 0.5.0"))
ortac-runtime-qcheck-stm is now pinned to version 0.5.0
2025-01-10 09:41.15 ---> saved as "238b1d4fb4b214cdb6370b0d81e603d14a96e1db1b944babd713f1fabbd322ed"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ortac-runtime-qcheck-stm.0.5.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-11\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ortac-runtime-qcheck-stm.0.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ortac-runtime-qcheck-stm.0.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
  - install conf-gmp                   4              [required by zarith]
  - install conf-pkg-config            3              [required by zarith]
  - install dune                       3.17.1         [required by ortac-runtime-qcheck-stm]
  - install fmt                        0.9.0          [required by ortac-runtime]
  - install ocamlbuild                 0.15.0         [required by fmt]
  - install ocamlfind                  1.9.6          [required by fmt, zarith]
  - install ortac-runtime              0.5.0          [required by ortac-runtime-qcheck-stm]
  - install ortac-runtime-qcheck-stm   0.5.0 (pinned)
  - install qcheck-core                0.23           [required by qcheck-stm]
  - install qcheck-multicoretests-util 0.5            [required by qcheck-stm]
  - install qcheck-stm                 0.5            [required by ortac-runtime-qcheck-stm]
  - install topkg                      1.0.7          [required by fmt]
  - install zarith                     1.14           [required by ortac-runtime]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libglib2.0-0:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18364 files and directories currently installed.)
- Preparing to unpack .../0-libglib2.0-0_2.66.8-1+deb11u5_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.66.8-1+deb11u5) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../1-libglib2.0-data_2.66.8-1+deb11u5_all.deb ...
- Unpacking libglib2.0-data (2.66.8-1+deb11u5) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../2-libgmpxx4ldbl_2%3a6.2.1+dfsg-1+deb11u1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg-1+deb11u1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../3-libgmp-dev_2%3a6.2.1+dfsg-1+deb11u1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg-1+deb11u1) ...
- Selecting previously unselected package libicu67:amd64.
- Preparing to unpack .../4-libicu67_67.1-7_amd64.deb ...
- Unpacking libicu67:amd64 (67.1-7) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../5-libxml2_2.9.10+dfsg-6.7+deb11u5_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u5) ...
- Selecting previously unselected package pkg-config.
- Preparing to unpack .../6-pkg-config_0.29.2-1_amd64.deb ...
- Unpacking pkg-config (0.29.2-1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../7-shared-mime-info_2.0-1_amd64.deb ...
- Unpacking shared-mime-info (2.0-1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../8-xdg-user-dirs_0.17-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.17-2) ...
- Setting up libicu67:amd64 (67.1-7) ...
- Setting up xdg-user-dirs (0.17-2) ...
- Setting up libglib2.0-0:amd64 (2.66.8-1+deb11u5) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.66.8-1+deb11u5) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg-1+deb11u1) ...
- Setting up pkg-config (0.29.2-1) ...
- Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u5) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg-1+deb11u1) ...
- Setting up shared-mime-info (2.0-1) ...
- Processing triggers for libc-bin (2.31-13+deb11u11) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.4  (cached)
-> installed conf-gmp.4
-> installed conf-pkg-config.3
-> retrieved dune.3.17.1  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ortac-runtime.0.5.0, ortac-runtime-qcheck-stm.0.5.0  (cached)
-> retrieved qcheck-core.0.23  (cached)
-> retrieved qcheck-multicoretests-util.0.5, qcheck-stm.0.5  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.6
-> installed ocamlbuild.0.15.0
-> installed zarith.1.14
-> installed topkg.1.0.7
-> installed fmt.0.9.0
-> installed dune.3.17.1
-> installed ortac-runtime.0.5.0
-> installed qcheck-core.0.23
-> installed qcheck-multicoretests-util.0.5
-> installed qcheck-stm.0.5
-> installed ortac-runtime-qcheck-stm.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-01-10 09:41.49 ---> saved as "259c32f2b540c96dd935f17b9f9b3e7ef14569b71e81ab2715358d0bc8665baa"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ortac-runtime-qcheck-stm.0.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ortac-runtime-qcheck-stm 0.5.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   ortac-runtime-qcheck-stm.0.5.0
-> installed ortac-runtime-qcheck-stm.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-01-10 09:41.55 ---> saved as "d3ae7c6a62d9f4401ec6c7613cb5bde09fd4b8f2d3c84fd10b32bb88765ef08e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ortac-runtime-qcheck-stm.0.5.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-11\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ortac-runtime-qcheck-stm.0.5.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 ortac-runtime-qcheck-stm 0.5.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ortac-runtime-qcheck-stm: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ortac-runtime-qcheck-stm" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/ortac-runtime-qcheck-stm.0.5.0)
Processing  2/4: [ortac-runtime-qcheck-stm: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "ortac-runtime-qcheck-stm" "--create-install-files" "ortac-runtime-qcheck-stm" (CWD=/home/opam/.opam/5.3/.opam-switch/build/ortac-runtime-qcheck-stm.0.5.0)
-> compiled  ortac-runtime-qcheck-stm.0.5.0
-> removed   ortac-runtime-qcheck-stm.0.5.0
-> installed ortac-runtime-qcheck-stm.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-01-10 09:42.00 ---> saved as "206bb7f00a98efde39a9c4520b09d87b6f2f99736116f0b4f561508a4a316a4d"
Job succeeded
2025-01-10 09:42.20: Job succeeded