- github
- ocaml
- opam-repository
- 384459
- compilers,4.08,sail_output.0.19.1,tests
(not at the head of any monitored branch or PR)
2025-06-10 01:23.36: New job: test sail_output.0.19.1, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28004/head (3844593231c3fdb39e72e63dcee4e6ebfcd3ab58)
on debian-12-ocaml-4.08/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/28004/head" && git reset --hard 38445932
git fetch origin master
git merge --no-edit 6db96b377f993aa0c7ffb5c06737929e583f3305
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.08@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184
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 sail_output.0.19.1 0.19.1
RUN opam reinstall sail_output.0.19.1; \
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" != 'sail_output.0.19.1' && 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 sail_output.0.19.1) || true
RUN opam reinstall --with-test --verbose sail_output.0.19.1; \
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" != 'sail_output.0.19.1' && 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-10 01:23.36: Using cache hint "ocaml/opam:debian-12-ocaml-4.08@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184-sail_output.0.19.1-3844593231c3fdb39e72e63dcee4e6ebfcd3ab58"
2025-06-10 01:23.36: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.08@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184)
(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 sail_output.0.19.1 0.19.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall sail_output.0.19.1;\
\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\" != 'sail_output.0.19.1' && 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 sail_output.0.19.1) || true"))
(run (shell "opam reinstall --with-test --verbose sail_output.0.19.1;\
\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\" != 'sail_output.0.19.1' && 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-10 01:23.36: Waiting for resource in pool OCluster
2025-06-10 01:23.36: Waiting for worker…
2025-06-10 01:23.36: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 94% (21893/23233)
Updating files: 95% (22072/23233)
Updating files: 96% (22304/23233)
Updating files: 97% (22537/23233)
Updating files: 98% (22769/23233)
Updating files: 99% (23001/23233)
Updating files: 100% (23233/23233)
Updating files: 100% (23233/23233), done.
HEAD is now at 6db96b377f Merge pull request #28003 from punchagan/opam-publish-opam-ci-check-lint.0.1
Merge made by the 'ort' strategy.
packages/libsail/libsail.0.19.1/opam | 68 ++++++++++++++++++++
packages/sail/sail.0.19.1/opam | 73 ++++++++++++++++++++++
packages/sail_c_backend/sail_c_backend.0.19.1/opam | 49 +++++++++++++++
.../sail_coq_backend/sail_coq_backend.0.19.1/opam | 49 +++++++++++++++
.../sail_doc_backend/sail_doc_backend.0.19.1/opam | 51 +++++++++++++++
.../sail_latex_backend.0.19.1/opam | 50 +++++++++++++++
.../sail_lean_backend.0.19.1/opam | 49 +++++++++++++++
.../sail_lem_backend/sail_lem_backend.0.19.1/opam | 49 +++++++++++++++
packages/sail_manifest/sail_manifest.0.19.1/opam | 49 +++++++++++++++
.../sail_ocaml_backend.0.19.1/opam | 50 +++++++++++++++
packages/sail_output/sail_output.0.19.1/opam | 49 +++++++++++++++
.../sail_smt_backend/sail_smt_backend.0.19.1/opam | 49 +++++++++++++++
.../sail_sv_backend/sail_sv_backend.0.19.1/opam | 49 +++++++++++++++
13 files changed, 684 insertions(+)
create mode 100644 packages/libsail/libsail.0.19.1/opam
create mode 100644 packages/sail/sail.0.19.1/opam
create mode 100644 packages/sail_c_backend/sail_c_backend.0.19.1/opam
create mode 100644 packages/sail_coq_backend/sail_coq_backend.0.19.1/opam
create mode 100644 packages/sail_doc_backend/sail_doc_backend.0.19.1/opam
create mode 100644 packages/sail_latex_backend/sail_latex_backend.0.19.1/opam
create mode 100644 packages/sail_lean_backend/sail_lean_backend.0.19.1/opam
create mode 100644 packages/sail_lem_backend/sail_lem_backend.0.19.1/opam
create mode 100644 packages/sail_manifest/sail_manifest.0.19.1/opam
create mode 100644 packages/sail_ocaml_backend/sail_ocaml_backend.0.19.1/opam
create mode 100644 packages/sail_output/sail_output.0.19.1/opam
create mode 100644 packages/sail_smt_backend/sail_smt_backend.0.19.1/opam
create mode 100644 packages/sail_sv_backend/sail_sv_backend.0.19.1/opam
(from ocaml/opam:debian-12-ocaml-4.08@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.08@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184' locally
docker.io/ocaml/opam@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184: Pulling from ocaml/opam
2f15651b245f: Already exists
607f851f130b: Pulling fs layer
07f3cf94a968: Pulling fs layer
b39314c9b0f1: Pulling fs layer
85ad185d7041: Pulling fs layer
85ad185d7041: Waiting
b39314c9b0f1: Download complete
07f3cf94a968: Verifying Checksum
07f3cf94a968: Download complete
85ad185d7041: Verifying Checksum
85ad185d7041: Download complete
607f851f130b: Verifying Checksum
607f851f130b: Download complete
607f851f130b: Pull complete
07f3cf94a968: Pull complete
b39314c9b0f1: Pull complete
85ad185d7041: Pull complete
Digest: sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184
Status: Downloaded newer image for ocaml/opam@sha256:2130fd49789f792d22bebe000323eb08ab6fe93936df25b74c52d84325423184
2025-06-10 01:24.27 ---> saved as "96b66beb0a3c5e1a2201c09227832de0f3a2dcedaec39fb45e1340d5ed67c4f4"
/: (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-10 01:24.27 ---> saved as "86881e489b87274a39fad45236361160514e099d2005c45e7395efb887f10085"
/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-10 01:25.07 ---> saved as "bf56c78e17e4ff2e248391632c8feeb238ee53d6fc2ddaa9688d69cb0f84e576"
/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.08
# invariant ["ocaml-base-compiler" {= "4.08.1"}]
# compiler-packages ocaml-base-compiler.4.08.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.08/lib/ocaml/stublibs:/home/opam/.opam/4.08/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.08.1
2025-06-10 01:25.09 ---> saved as "d2340507be1acb4007d7e3ed9b972ea5cfeeff56e806899f6c4ba10836968233"
/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-10 01:25.17 ---> saved as "d95062bfd5f9a0ad3d0dcf6686822964dbf2e0b65855f037fefd9eb09892f7fd"
/home/opam: (copy (src .) (dst opam-repository/))
2025-06-10 01:25.36 ---> saved as "ba8cb070990d150d744a94c454eb4a1badb4831817a7ec56a303edb2041f7f16"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-10 01:26.09 ---> saved as "90280dca6ee41469b56eed8cefb5b3aa27e193bbab34b680444279507e903764"
/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 1s (375 kB/s)
- Reading package lists...
-
2025-06-10 01:26.12 ---> saved as "f82e57d14350b61b496d7341c91af659bf1de6b8b78948beeac2f9c6f83f444f"
/home/opam: (run (shell "opam pin add -k version -yn sail_output.0.19.1 0.19.1"))
sail_output is now pinned to version 0.19.1
2025-06-10 01:26.13 ---> saved as "a4f28d987dab340d220b021ff3d5390befd92e71f5ac58e734aa1de6b9a76855"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall sail_output.0.19.1;\
\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\" != 'sail_output.0.19.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
sail_output.0.19.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 27 packages
- install conf-findutils 1 [required by lem]
- install conf-gmp 5 [required by libsail]
- install conf-pkg-config 4 [required by zarith]
- install csexp 1.5.2 [required by dune-private-libs]
- install dune 3.19.0 [required by sail_output]
- install dune-private-libs 3.19.0 [required by dune-site]
- install dune-site 3.19.0 [required by libsail]
- install dyn 3.19.0 [required by dune-private-libs]
- install lem 2025-03-13 [required by libsail]
- install libsail 0.19.1 [required by sail_output]
- install linksem 0.8 [required by libsail]
- install menhir 20240715 [required by libsail]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by menhir]
- install menhirSdk 20240715 [required by menhir]
- install num 1.5-1 [required by lem]
- install ocamlbuild 0.16.1 [required by lem, linksem]
- install ocamlfind 1.9.8 [required by linksem, lem, ott]
- install ocamlgraph 2.2.0 [required by ott]
- install ordering 3.19.0 [required by dyn, stdune]
- install ott 0.34 [required by libsail]
- install pp 2.0.0 [required by dune-private-libs]
- install pprint 20230830 [required by libsail]
- install sail_output 0.19.1 (pinned)
- install stdune 3.19.0 [required by dune-private-libs]
- install yojson 3.0.0 [required by libsail]
- install zarith 1.14 [required by lem]
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 libgmpxx4ldbl: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 ... 18745 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-findutils.1
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved dune.3.19.0, dune-private-libs.3.19.0, dune-site.3.19.0, dyn.3.19.0, ordering.3.19.0, stdune.3.19.0 (cached)
-> retrieved lem.2025-03-13 (cached)
-> retrieved libsail.0.19.1, sail_output.0.19.1 (cached)
-> retrieved linksem.0.8 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved num.1.5-1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved ott.0.34 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved pprint.20230830 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed num.1.5-1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed dune.3.19.0
-> installed csexp.1.5.2
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed pp.2.0.0
-> installed pprint.20230830
-> installed ordering.3.19.0
-> installed ocamlgraph.2.2.0
-> installed yojson.3.0.0
-> installed dyn.3.19.0
-> installed stdune.3.19.0
-> installed ott.0.34
-> installed dune-private-libs.3.19.0
-> installed dune-site.3.19.0
-> installed menhir.20240715
-> installed lem.2025-03-13
-> installed linksem.0.8
-> installed libsail.0.19.1
-> installed sail_output.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 01:31.44 ---> saved as "e2b6360a1a703abf42a574b407f4ddfa8fda5d532a4bc515c55af02ea70ec3b8"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test sail_output.0.19.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile sail_output 0.19.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed sail_output.0.19.1
-> installed sail_output.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 01:31.55 ---> saved as "82ecde36d0982ac5aeb082bb329276ba74442657c3c91f96c7485f34fb610d91"
/home/opam: (run (shell "opam reinstall --with-test --verbose sail_output.0.19.1;\
\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\" != 'sail_output.0.19.1' && 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 sail_output 0.19.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [sail_output: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sail_output" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.08/.opam-switch/build/sail_output.0.19.1)
Processing 2/4: [sail_output: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "sail_output" "--create-install-files" "sail_output" (CWD=/home/opam/.opam/4.08/.opam-switch/build/sail_output.0.19.1)
-> compiled sail_output.0.19.1
-> removed sail_output.0.19.1
-> installed sail_output.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 01:32.07 ---> saved as "7077a4916c126876bb6ac569a24d7961ffba1cab89f1af6d2a961feb94d1136e"
Job succeeded
2025-06-10 01:32.21: Job succeeded