(for PR #29484)
2026-03-12 11:12.26: New job: test colibrics.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on fedora-42-ocaml-4.14/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/29484/head" && git reset --hard 1b330fad
git fetch origin master
git merge --no-edit 6d75ddf1d37818547f88125983edb2e55e55ed23
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da
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 colibrics.0.5 0.5
RUN opam reinstall colibrics.0.5; \
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-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibrics.0.5' && 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 colibrics.0.5) || true
RUN opam reinstall --with-test --verbose colibrics.0.5; \
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-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibrics.0.5' && 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 .
2026-03-12 11:12.26: Using cache hint "ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da-colibrics.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.26: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da)
(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 colibrics.0.5 0.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrics.0.5;\
\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-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && 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 colibrics.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose colibrics.0.5;\
\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-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-12 11:12.26: Waiting for resource in pool OCluster
2026-03-12 11:12.31: Waiting for worker…
2026-03-12 11:12.37: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 6d75ddf1d3 Merge pull request #29495 from toots/opam-publish-posix-bindings.4.0.2
Merge made by the 'ort' strategy.
packages/colibri2/colibri2.0.5/opam | 70 +++++++++++++++++++++++
packages/colibrics/colibrics.0.5/opam | 50 ++++++++++++++++
packages/colibrilib-why3/colibrilib-why3.0.5/opam | 40 +++++++++++++
packages/colibrilib/colibrilib.0.5/opam | 40 +++++++++++++
4 files changed, 200 insertions(+)
create mode 100644 packages/colibri2/colibri2.0.5/opam
create mode 100644 packages/colibrics/colibrics.0.5/opam
create mode 100644 packages/colibrilib-why3/colibrilib-why3.0.5/opam
create mode 100644 packages/colibrilib/colibrilib.0.5/opam
(from ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da)
2026-03-12 11:15.19 ---> using "4f4aad99373b064eb667a9f696f7c6d39ac750bdfb8a8b7f98f15f1c5afd5dcd" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-12 11:15.19 ---> using "20911cbf85592b0aa5ed4677b5b9647deace104570a70f76f53a37b2c5f407b7" 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 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
2026-03-12 11:15.19 ---> using "79891501f4b82044246c3ac06abe2b77b5f7f723a65768644cbac1b80c9a4a6a" 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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=fedora os-version=42
# 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-12 11:15.19 ---> using "86fdaa4d94cc0167852d981a6632d1a6a972fe820c609ef5da3f8897f3d62697" 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/"))
2026-03-12 11:15.19 ---> using "5ce81cfef8afd01e5edf9f9f60c77f2ae3ca7012d095529f484ea8d19002ab99" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:15.20 ---> using "47e9fbc461a366e86ba33c2259f485e087b5f071330f07a46cde71d1a5bd3833" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:15.37 ---> saved as "3fa8ac9155942df883dbc4f773178250aeccd9b058976cc3280bd544c2154084"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 - Updates 100% | 32.3 KiB/s | 17.2 KiB | 00m01s
- Repositories loaded.
- Metadata cache created.
2026-03-12 11:15.41 ---> saved as "53963df74d6563a3df60f01697cd8790706419ee6dd06bf2827647c55383f980"
/home/opam: (run (shell "opam pin add -k version -yn colibrics.0.5 0.5"))
colibrics is now pinned to version 0.5
2026-03-12 11:15.42 ---> saved as "365c84f4dfc7333de95a2e80ba94f21ca24d61b4c93b5e4190bec7245a1e2ef4"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrics.0.5;\
\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-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
colibrics.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 75 packages
- install base v0.16.4 [required by colibri2]
- install camlidl 1.13 [required by mlcuddidl]
- install cmdliner 2.1.0 [required by colibrics]
- install colibri2 0.5 [required by colibrics]
- install colibrics 0.5 (pinned)
- install colibrilib 0.5 [required by colibri2]
- install conf-flint 3.0 [required by flint]
- install conf-gmp 5 [required by zarith, conf-mpfr]
- install conf-m4 1 [required by mlcuddidl]
- install conf-mpfr 3 [required by flint]
- install conf-pkg-config 4 [required by flint]
- install containers 3.18 [required by colibri2]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by flint]
- install dolmen 0.10 [required by colibrics]
- install dolmen_loop 0.10 [required by colibrics]
- install dolmen_type 0.10 [required by colibrics]
- install dune 3.21.1 [required by colibrics]
- install dune-build-info 3.21.1 [required by colibri2]
- install dune-configurator 3.21.1 [required by containers, base, flint]
- install either 1.0.0 [required by containers]
- install farith 0.1 [required by colibri2]
- install flint 0.4.2 [required by colibri2]
- install fmt 0.11.0 [required by dolmen]
- install gen 1.1 [required by colibri2]
- install hmap 0.8.1 [required by dolmen]
- install integers 0.7.0 [required by ctypes]
- install jane-street-headers v0.16.0 [required by time_now]
- install jingoo 1.5.2 [required by colibrics]
- install jst-config v0.16.0 [required by time_now]
- install logs 0.10.0 [required by colibrics]
- install menhir 20250912 [required by jingoo, why3]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install mlcuddidl 3.0.8 [required by colibri2]
- install mtime 2.1.0 [required by trace, trace-tef]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by mlcuddidl, uucp]
- install ocamlfind 1.9.8 [required by why3]
- install ocamlgraph 2.2.0 [required by colibri2, why3]
- install ocplib-simplex 0.5.1 [required by colibri2]
- install pp_loc 2.1.0 [required by dolmen_loop]
- install ppx_assert v0.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_hash]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by ppx_deriving_yojson, colibri2, jingoo, why3]
- install ppx_deriving_yojson 3.9.1 [required by colibrics]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by colibri2]
- install ppx_here v0.16.0 [required by colibri2]
- install ppx_inline_test v0.16.1 [required by colibri2]
- install ppx_optcomp v0.16.0 [required by colibri2]
- install ppx_sexp_conv v0.16.0 [required by why3]
- install ppxlib 0.35.0 [required by ppx_deriving_yojson]
- install qcheck-core 0.91 [required by colibri2]
- install re 1.14.0 [required by colibri2, jingoo]
- install seq base [required by dolmen]
- install sexplib0 v0.16.0 [required by base]
- install spelll 0.4 [required by dolmen_type]
- install stdio v0.16.0 [required by ppx_optcomp]
- install stdlib-shims 0.3.0 [required by ppxlib, spelll, integers]
- install time_now v0.16.0 [required by ppx_inline_test]
- install topkg 1.1.1 [required by uucp]
- install trace 0.12 [required by colibri2]
- install trace-tef 0.12 [required by colibri2]
- install uucp 17.0.0 [required by jingoo]
- install uutf 1.0.4 [required by jingoo]
- install why3 1.8.2 [required by colibrics]
- install yojson 3.0.0 [required by colibrics]
- install zarith 1.14 [required by colibrics]
The following system packages will first need to be installed:
flint flint-devel gmp-devel mpfr-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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/sbin/sudo "yum" "install" "-y" "flint" "flint-devel" "gmp-devel" "mpfr-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- flint x86_64 3.2.2-1.fc42 updates 11.3 MiB
- flint-devel x86_64 3.2.2-1.fc42 updates 30.0 MiB
- gmp-devel x86_64 1:6.3.0-4.fc42 fedora 352.3 KiB
- mpfr-devel x86_64 4.2.2-1.fc42 fedora 62.9 KiB
- Installing dependencies:
- flexiblas x86_64 3.4.5-1.fc42 fedora 50.4 KiB
- flexiblas-netlib x86_64 3.4.5-1.fc42 fedora 10.9 MiB
- flexiblas-openblas-openmp x86_64 3.4.5-1.fc42 fedora 39.2 KiB
- gmp-c++ x86_64 1:6.3.0-4.fc42 fedora 27.6 KiB
- libgfortran x86_64 15.2.1-7.fc42 updates 3.4 MiB
- libquadmath x86_64 15.2.1-7.fc42 updates 317.9 KiB
- openblas x86_64 0.3.29-1.fc42 fedora 111.7 KiB
- openblas-openmp x86_64 0.3.29-1.fc42 fedora 43.7 MiB
-
- Transaction Summary:
- Installing: 12 packages
-
- Total size of inbound packages is 17 MiB. Need to download 17 MiB.
- After this operation, 100 MiB extra will be used (install 100 MiB, remove 0 B).
- [ 1/12] flexiblas-0:3.4.5-1.fc42.x86_64 100% | 73.9 KiB/s | 26.2 KiB | 00m00s
- [ 2/12] flexiblas-openblas-openmp-0:3.4 100% | 243.0 KiB/s | 17.3 KiB | 00m00s
- [ 3/12] flexiblas-netlib-0:3.4.5-1.fc42 100% | 6.5 MiB/s | 3.4 MiB | 00m01s
- [ 4/12] flint-0:3.2.2-1.fc42.x86_64 100% | 6.4 MiB/s | 4.1 MiB | 00m01s
- [ 5/12] gmp-devel-1:6.3.0-4.fc42.x86_64 100% | 4.9 MiB/s | 174.4 KiB | 00m00s
- [ 6/12] gmp-c++-1:6.3.0-4.fc42.x86_64 100% | 3.6 MiB/s | 18.5 KiB | 00m00s
- [ 7/12] mpfr-devel-0:4.2.2-1.fc42.x86_6 100% | 173.4 KiB/s | 21.7 KiB | 00m00s
- [ 8/12] flint-devel-0:3.2.2-1.fc42.x86_ 100% | 4.9 MiB/s | 2.2 MiB | 00m00s
- [ 9/12] openblas-0:0.3.29-1.fc42.x86_64 100% | 2.1 MiB/s | 42.3 KiB | 00m00s
- [10/12] libquadmath-0:15.2.1-7.fc42.x86 100% | 1.9 MiB/s | 207.3 KiB | 00m00s
- [11/12] libgfortran-0:15.2.1-7.fc42.x86 100% | 2.6 MiB/s | 975.1 KiB | 00m00s
- [12/12] openblas-openmp-0:0.3.29-1.fc42 100% | 7.6 MiB/s | 5.4 MiB | 00m01s
- --------------------------------------------------------------------------------
- [12/12] Total 100% | 11.0 MiB/s | 16.5 MiB | 00m02s
- Running transaction
- [ 1/14] Verify package files 100% | 222.0 B/s | 12.0 B | 00m00s
- [ 2/14] Prepare transaction 100% | 255.0 B/s | 12.0 B | 00m00s
- [ 3/14] Installing libgfortran-0:15.2.1 100% | 258.1 MiB/s | 3.4 MiB | 00m00s
- [ 4/14] Installing libquadmath-0:15.2.1 100% | 103.9 MiB/s | 319.2 KiB | 00m00s
- [ 5/14] Installing openblas-0:0.3.29-1. 100% | 110.8 MiB/s | 113.5 KiB | 00m00s
- [ 6/14] Installing openblas-openmp-0:0. 100% | 420.4 MiB/s | 43.7 MiB | 00m00s
- [ 7/14] Installing flexiblas-0:3.4.5-1. 100% | 50.4 MiB/s | 51.6 KiB | 00m00s
- [ 8/14] Installing flexiblas-openblas-o 100% | 39.1 MiB/s | 40.1 KiB | 00m00s
- [ 9/14] Installing flexiblas-netlib-0:3 100% | 191.8 MiB/s | 10.9 MiB | 00m00s
- [10/14] Installing flint-0:3.2.2-1.fc42 100% | 244.8 MiB/s | 11.3 MiB | 00m00s
- [11/14] Installing gmp-c++-1:6.3.0-4.fc 100% | 27.8 MiB/s | 28.5 KiB | 00m00s
- [12/14] Installing gmp-devel-1:6.3.0-4. 100% | 172.9 MiB/s | 354.1 KiB | 00m00s
- [13/14] Installing mpfr-devel-0:4.2.2-1 100% | 31.0 MiB/s | 63.6 KiB | 00m00s
- [14/14] Installing flint-devel-0:3.2.2- 100% | 346.3 MiB/s | 30.1 MiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "flint" "flint-devel" "gmp-devel" "mpfr-devel"
- flint-3.2.2-1.fc42.x86_64
- flint-devel-3.2.2-1.fc42.x86_64
- gmp-devel-6.3.0-4.fc42.x86_64
- mpfr-devel-4.2.2-1.fc42.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4 (cached)
-> retrieved camlidl.1.13 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved colibri2.0.5, colibrics.0.5, colibrilib.0.5 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-mpfr.3 (cached)
-> installed camlidl.1.13
-> retrieved containers.3.18 (cached)
-> installed conf-gmp.5
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-flint.3.0
-> installed conf-mpfr.3
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10 (cached)
-> retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved farith.0.1 (cached)
-> installed cmdliner.2.1.0
-> retrieved flint.0.4.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved jane-street-headers.v0.16.0 (cached)
-> retrieved jingoo.1.5.2 (cached)
-> retrieved jst-config.v0.16.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved mlcuddidl.3.0.8 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved ocplib-simplex.0.5.1 (cached)
-> retrieved pp_loc.2.1.0 (cached)
-> retrieved ppx_assert.v0.16.0 (cached)
-> retrieved ppx_base.v0.16.0 (cached)
-> retrieved ppx_cold.v0.16.0 (cached)
-> retrieved ppx_compare.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_deriving_yojson.3.9.1 (cached)
-> retrieved ppx_enumerate.v0.16.0 (cached)
-> retrieved ppx_globalize.v0.16.0 (cached)
-> retrieved ppx_hash.v0.16.0 (cached)
-> retrieved ppx_here.v0.16.0 (cached)
-> retrieved ppx_inline_test.v0.16.1 (cached)
-> retrieved ppx_optcomp.v0.16.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved qcheck-core.0.91 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved spelll.0.4 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.16.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved trace.0.12, trace-tef.0.12 (cached)
-> retrieved uucp.17.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved why3.1.8.2 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed dune.3.21.1
-> installed mlcuddidl.3.0.8
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed jane-street-headers.v0.16.0
-> installed menhirCST.20250912
-> installed gen.1.1
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocamlgraph.2.2.0
-> installed ocplib-simplex.0.5.1
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed colibrilib.0.5
-> installed dune-build-info.3.21.1
-> installed trace.0.12
-> installed spelll.0.4
-> installed integers.0.7.0
-> installed trace-tef.0.12
-> installed dune-configurator.3.21.1
-> installed containers.3.18
-> installed base.v0.16.4
-> installed ctypes.0.24.0
-> installed stdio.v0.16.0
-> installed flint.0.4.2
-> installed uucp.17.0.0
-> installed menhir.20250912
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving_yojson.3.9.1
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed dolmen.0.10
-> installed ppx_base.v0.16.0
-> installed jingoo.1.5.2
-> installed farith.0.1
-> installed jst-config.v0.16.0
-> installed dolmen_type.0.10
-> installed time_now.v0.16.0
-> installed dolmen_loop.0.10
-> installed ppx_inline_test.v0.16.1
-> installed colibri2.0.5
-> installed why3.1.8.2
-> installed colibrics.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:17.29 ---> saved as "715a2202eca24eee1c90630e4755860860e340f5cd8a33e2bce3804f8156ca96"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibrics.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile colibrics 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed colibrics.0.5
-> installed colibrics.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:17.37 ---> saved as "cfdc6b8f68a0df9ef50a54b80a1dcde62fa1a43c4bef35f1b356865167112744"
/home/opam: (run (shell "opam reinstall --with-test --verbose colibrics.0.5;\
\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-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && 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 colibrics 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [colibrics: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibrics" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/colibrics.0.5)
Processing 2/4: [colibrics: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "colibrics" "--create-install-files" "colibrics" (CWD=/home/opam/.opam/4.14/.opam-switch/build/colibrics.0.5)
-> compiled colibrics.0.5
-> removed colibrics.0.5
-> installed colibrics.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:17.44 ---> saved as "19c6166bf570fa6e14faf5494364f16674882e0abe59c7ea24ff4fde7452eb58"
Job succeeded
2026-03-12 11:17.53: Job succeeded