- github
- ocaml
- opam-repository
- 384459
- distributions,opensuse-tumbleweed-ocaml-5.3,sail_ocaml_backend.0.19.1,tests
(not at the head of any monitored branch or PR)
2025-06-10 01:23.57: New job: test sail_ocaml_backend.0.19.1, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28004/head (3844593231c3fdb39e72e63dcee4e6ebfcd3ab58)
on opensuse-tumbleweed-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/28004/head" && git reset --hard 38445932
git fetch origin master
git merge --no-edit 6db96b377f993aa0c7ffb5c06737929e583f3305
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-5.3@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f
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_ocaml_backend.0.19.1 0.19.1
RUN opam reinstall sail_ocaml_backend.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 "\"opensuse-tumbleweed\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'sail_ocaml_backend.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_ocaml_backend.0.19.1) || true
RUN opam reinstall --with-test --verbose sail_ocaml_backend.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 "\"opensuse-tumbleweed\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'sail_ocaml_backend.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.57: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-5.3@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f-sail_ocaml_backend.0.19.1-3844593231c3fdb39e72e63dcee4e6ebfcd3ab58"
2025-06-10 01:23.57: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-5.3@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f)
(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_ocaml_backend.0.19.1 0.19.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall sail_ocaml_backend.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 \"\\\"opensuse-tumbleweed\\\"\"; 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_ocaml_backend.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_ocaml_backend.0.19.1) || true"))
(run (shell "opam reinstall --with-test --verbose sail_ocaml_backend.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 \"\\\"opensuse-tumbleweed\\\"\"; 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_ocaml_backend.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.57: Waiting for resource in pool OCluster
2025-06-10 01:23.57: Waiting for worker…
2025-06-10 01:29.43: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
Updating files: 95% (22097/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:opensuse-tumbleweed-ocaml-5.3@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-5.3@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f' locally
docker.io/ocaml/opam@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f: Pulling from ocaml/opam
780273ccb6b6: Already exists
5b6c5bc904d4: Pulling fs layer
ad4fce8f720d: Pulling fs layer
c770a59348ab: Pulling fs layer
ea0efcbd7a8a: Pulling fs layer
c770a59348ab: Waiting
f2810bee91f1: Pulling fs layer
3ad56a8e8e1e: Pulling fs layer
ea0efcbd7a8a: Waiting
f2810bee91f1: Waiting
46824c97f509: Pulling fs layer
3ad56a8e8e1e: Waiting
46824c97f509: Waiting
ad4fce8f720d: Verifying Checksum
ad4fce8f720d: Download complete
5b6c5bc904d4: Download complete
5b6c5bc904d4: Pull complete
ad4fce8f720d: Pull complete
c770a59348ab: Verifying Checksum
c770a59348ab: Download complete
c770a59348ab: Pull complete
f2810bee91f1: Verifying Checksum
f2810bee91f1: Download complete
46824c97f509: Verifying Checksum
46824c97f509: Download complete
ea0efcbd7a8a: Verifying Checksum
ea0efcbd7a8a: Download complete
ea0efcbd7a8a: Pull complete
f2810bee91f1: Pull complete
3ad56a8e8e1e: Pull complete
46824c97f509: Pull complete
Digest: sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f
Status: Downloaded newer image for ocaml/opam@sha256:9b9071d78a6511544b843586078053c098ad0017cd23769bd8828851db45af2f
2025-06-10 01:30.55 ---> saved as "c59d44876f50be224818e89c0497fdd1224c5890b4d70051c4b6552ff70cb72c"
/: (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:30.56 ---> saved as "7359833c6c378d5596dbe74a4dfb80c0fc586abf68cf107ebd2a1201434dc11d"
/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-10 01:31.21 ---> saved as "9b95751af8dad151853a01429675a9c35019a9f3acc0237734e99d3a4f8d0706"
/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=opensuse-tumbleweed os-version=20250605
# 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-10 01:31.22 ---> saved as "02aef54f196ff85644fb04b0736c02827eb9821f3c1bf20fb86848d4d4f9d676"
/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:31.35 ---> saved as "87abf42595aaf0e788f6e3ec1e477af820eb2949b9797a931c8726010d232ac6"
/home/opam: (copy (src .) (dst opam-repository/))
2025-06-10 01:31.45 ---> saved as "42a0dfa7e07ba5f643aa8cca1981f7cd0be3b12eefb3b5ee68a113547a90c1ec"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-10 01:32.06 ---> saved as "dddf22efbb27f51191a6b2ec7a3154431015f78ff79659c843e2165f3d638309"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
- gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- .
- .....done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
- gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- .....
- ............
- .........
- ...done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2025-06-10 01:32.15 ---> saved as "9095a11f3c7a30be5e8a8caa712e714a215b1b43450a8436ce461c288eafcb1f"
/home/opam: (run (shell "opam pin add -k version -yn sail_ocaml_backend.0.19.1 0.19.1"))
sail_ocaml_backend is now pinned to version 0.19.1
2025-06-10 01:32.16 ---> saved as "1457755405a0b7cd1c0a4abd8abe76a05eee191b27691584574c474596b32a44"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall sail_ocaml_backend.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 \"\\\"opensuse-tumbleweed\\\"\"; 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_ocaml_backend.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_ocaml_backend.0.19.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 28 packages
- install base64 3.5.1 [required by sail_ocaml_backend]
- 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_ocaml_backend]
- 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_ocaml_backend]
- 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_ocaml_backend 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:
gmp-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "gmp-devel"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 2 NEW packages are going to be installed:
- gmp-devel libgmpxx4
-
- 2 new packages to install.
-
- Package download size: 323.6 KiB
-
- Package install size change:
- | 1.1 MiB required by packages that will be installed
- 1.1 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: libgmpxx4-6.3.0-5.1.x86_64.rpm [done]
- .
-
- Preloading: gmp-devel-6.3.0-5.1.x86_64.rpm [done]
- .done]
- Retrieving: libgmpxx4-6.3.0-5.1.x86_64 (openSUSE-Tumbleweed-Oss) (1/2), 17.7 KiB
- Retrieving: gmp-devel-6.3.0-5.1.x86_64 (openSUSE-Tumbleweed-Oss) (2/2), 305.9 KiB
-
- Checking for file conflicts: [..done]
- (1/2) Installing: libgmpxx4-6.3.0-5.1.x86_64 [..done]
- (2/2) Installing: gmp-devel-6.3.0-5.1.x86_64 [..done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.1 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp.5
-> installed conf-findutils.1
-> installed conf-pkg-config.4
-> 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_ocaml_backend.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 base64.3.5.1
-> installed csexp.1.5.2
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed pp.2.0.0
-> installed pprint.20230830
-> installed ocamlgraph.2.2.0
-> installed ordering.3.19.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_ocaml_backend.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 01:34.39 ---> saved as "d12317aa94683c0ab140553b0388d134f802defd5533ae4355939993db88c3ef"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test sail_ocaml_backend.0.19.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile sail_ocaml_backend 0.19.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed sail_ocaml_backend.0.19.1
-> installed sail_ocaml_backend.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 01:34.46 ---> saved as "ad09180a1e2831eb1709250d7cc76d94b55dc63449de9a6eebb218df725257d7"
/home/opam: (run (shell "opam reinstall --with-test --verbose sail_ocaml_backend.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 \"\\\"opensuse-tumbleweed\\\"\"; 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_ocaml_backend.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_ocaml_backend 0.19.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [sail_ocaml_backend: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sail_ocaml_backend" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/sail_ocaml_backend.0.19.1)
Processing 2/4: [sail_ocaml_backend: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "sail_ocaml_backend" "--create-install-files" "sail_ocaml_backend" (CWD=/home/opam/.opam/5.3/.opam-switch/build/sail_ocaml_backend.0.19.1)
-> compiled sail_ocaml_backend.0.19.1
-> removed sail_ocaml_backend.0.19.1
-> installed sail_ocaml_backend.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 01:34.52 ---> saved as "b967576ac347ec1e4fa8a3cda9a0908a9c41052e808e9321f1d48c54d2ca3825"
Job succeeded
2025-06-10 01:34.57: Job succeeded