Build:
- 0
2026-03-12 11:12.25: New job: test colibri2.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on fedora-43-ocaml-5.4/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-43-ocaml-5.4@sha256:7694f0ecb7cbb4c2754283ed5c139f1ad48b76e2c76c43895463dd8500e86c48
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 colibri2.0.5 0.5
RUN opam reinstall colibri2.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-43\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibri2.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 colibri2.0.5) || true
RUN opam reinstall --with-test --verbose colibri2.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-43\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibri2.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.25: Using cache hint "ocaml/opam:fedora-43-ocaml-5.4@sha256:7694f0ecb7cbb4c2754283ed5c139f1ad48b76e2c76c43895463dd8500e86c48-colibri2.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.25: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-5.4@sha256:7694f0ecb7cbb4c2754283ed5c139f1ad48b76e2c76c43895463dd8500e86c48)
(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 colibri2.0.5 0.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibri2.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-43\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibri2.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 colibri2.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose colibri2.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-43\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibri2.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.25: Waiting for resource in pool OCluster
2026-03-12 11:12.30: Waiting for worker…
2026-03-12 11:12.31: Got resource from pool OCluster
Building on laodoke.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-43-ocaml-5.4@sha256:7694f0ecb7cbb4c2754283ed5c139f1ad48b76e2c76c43895463dd8500e86c48)
2026-03-12 11:14.00 ---> using "943bdac60bd9134b05a1a927c2bbd8ef5964f439492f80fb7226a25799aaab71" 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:14.00 ---> using "3586927bb912c2eaed6a9c94fb9c21d91b481d072eac4889cbd21aa046c1bc0c" 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:14.00 ---> using "964fef16a7890455d2cf4f025cdbd17578110e13a8e6f070078bf364dd017193" 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=43
# 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 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-12 11:14.00 ---> using "ee8927fe1546028ac8af8aa4e147a1b565fb14394272ea083e1e406d299c0ea1" 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:14.00 ---> using "76947db3086595f8499301e2404bdd44b0c40dd4799a98eccd7c87f001f768e1" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:14.07 ---> saved as "f5412d48ed6a2c7e917ae616aef2e462b1a78c0d1691b43786fd36cb925b890f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:14.31 ---> saved as "a02aece377ef34a58f327788814e96cb10e292a1f98e5251fb8600b756d3e385"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 - x86_64 - Updates 100% | 85.0 KiB/s | 14.2 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-03-12 11:14.41 ---> saved as "4669deeafea064cdf0716cb63bfb973ca9d4f32921d2d27a1bbbaeceb8072c51"
/home/opam: (run (shell "opam pin add -k version -yn colibri2.0.5 0.5"))
colibri2 is now pinned to version 0.5
2026-03-12 11:14.42 ---> saved as "a0cfd0976cc0a21c5b52ada8051ee567b9decfc4178b64942982982862a7e826"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibri2.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-43\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibri2.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"))
colibri2.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 71 packages
- install base v0.17.3 [required by colibri2]
- install camlidl 1.13 [required by mlcuddidl]
- install cmdliner 2.1.0 [required by colibri2]
- install colibri2 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 colibri2]
- install dolmen_loop 0.10 [required by colibri2]
- install dolmen_type 0.10 [required by colibri2]
- install dune 3.21.1 [required by colibri2]
- 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.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install logs 0.10.0 [required by ocplib-simplex]
- install menhir 20250912 [required by dolmen]
- 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.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by mlcuddidl]
- install ocamlfind 1.9.8 [required by mlcuddidl, ocplib-simplex]
- install ocamlgraph 2.2.0 [required by colibri2]
- install ocplib-simplex 0.5.1 [required by colibri2]
- install pp_loc 2.1.0 [required by dolmen_loop]
- install ppx_assert v0.17.0 [required by jst-config]
- install ppx_base v0.17.0 [required by time_now]
- install ppx_cold v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_hash]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by colibri2]
- 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 colibri2]
- install ppx_here v0.17.0 [required by colibri2]
- install ppx_inline_test v0.17.1 [required by colibri2]
- install ppx_optcomp v0.17.1 [required by colibri2]
- install ppx_sexp_conv v0.17.1 [required by ppx_hash]
- install ppxlib 0.37.0 [required by ppx_here, ppx_inline_test]
- install ppxlib_jane v0.17.4 [required by ppx_hash]
- install qcheck-core 0.91 [required by colibri2]
- install re 1.14.0 [required by colibri2]
- install seq base [required by dolmen]
- install sexplib0 v0.17.0 [required by base]
- install spelll 0.4 [required by dolmen_type]
- install stdio v0.17.0 [required by ppx_optcomp]
- install stdlib-shims 0.3.0 [required by ppxlib, spelll, integers]
- install time_now v0.17.0 [required by ppx_inline_test]
- install topkg 1.1.1 [required by logs, fmt, hmap, mtime]
- install trace 0.12 [required by colibri2]
- install trace-tef 0.12 [required by colibri2]
- install uutf 1.0.4 [required by dolmen_type]
- install zarith 1.14 [required by colibri2]
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.3.1-2.fc43 fedora 11.2 MiB
- flint-devel x86_64 3.3.1-2.fc43 fedora 30.0 MiB
- gmp-devel x86_64 1:6.3.0-4.fc43 fedora 352.3 KiB
- mpfr-devel x86_64 4.2.2-2.fc43 fedora 62.9 KiB
- Installing dependencies:
- flexiblas x86_64 3.5.0-1.fc43 updates 38.0 KiB
- flexiblas-netlib x86_64 3.5.0-1.fc43 updates 16.5 MiB
- flexiblas-openblas-openmp x86_64 3.5.0-1.fc43 updates 39.2 KiB
- gmp-c++ x86_64 1:6.3.0-4.fc43 fedora 27.6 KiB
- libgfortran x86_64 15.2.1-7.fc43 updates 3.4 MiB
- libquadmath x86_64 15.2.1-7.fc43 updates 317.9 KiB
- openblas x86_64 0.3.29-2.fc43 fedora 111.7 KiB
- openblas-openmp x86_64 0.3.29-2.fc43 fedora 43.7 MiB
-
- Transaction Summary:
- Installing: 12 packages
-
- Total size of inbound packages is 18 MiB. Need to download 18 MiB.
- After this operation, 106 MiB extra will be used (install 106 MiB, remove 0 B).
- [ 1/12] gmp-devel-1:6.3.0-4.fc43.x86_64 100% | 655.4 KiB/s | 174.3 KiB | 00m00s
- [ 2/12] flint-devel-0:3.3.1-2.fc43.x86_ 100% | 7.3 MiB/s | 2.2 MiB | 00m00s
- [ 3/12] mpfr-devel-0:4.2.2-2.fc43.x86_6 100% | 185.7 KiB/s | 21.5 KiB | 00m00s
- [ 4/12] gmp-c++-1:6.3.0-4.fc43.x86_64 100% | 115.8 KiB/s | 18.4 KiB | 00m00s
- [ 5/12] flint-0:3.3.1-2.fc43.x86_64 100% | 8.9 MiB/s | 4.1 MiB | 00m00s
- [ 6/12] flexiblas-0:3.5.0-1.fc43.x86_64 100% | 148.9 KiB/s | 23.1 KiB | 00m00s
- [ 7/12] flexiblas-openblas-openmp-0:3.5 100% | 115.8 KiB/s | 17.3 KiB | 00m00s
- [ 8/12] libgfortran-0:15.2.1-7.fc43.x86 100% | 14.2 MiB/s | 974.7 KiB | 00m00s
- [ 9/12] libquadmath-0:15.2.1-7.fc43.x86 100% | 1.6 MiB/s | 207.3 KiB | 00m00s
- [10/12] openblas-0:0.3.29-2.fc43.x86_64 100% | 454.5 KiB/s | 42.3 KiB | 00m00s
- [11/12] flexiblas-netlib-0:3.5.0-1.fc43 100% | 7.0 MiB/s | 4.5 MiB | 00m01s
- [12/12] openblas-openmp-0:0.3.29-2.fc43 100% | 8.8 MiB/s | 5.4 MiB | 00m01s
- --------------------------------------------------------------------------------
- [12/12] Total 100% | 11.8 MiB/s | 17.7 MiB | 00m01s
- Running transaction
- [ 1/14] Verify package files 100% | 40.0 B/s | 12.0 B | 00m00s
- [ 2/14] Prepare transaction 100% | 146.0 B/s | 12.0 B | 00m00s
- [ 3/14] Installing libgfortran-0:15.2.1 100% | 78.0 MiB/s | 3.4 MiB | 00m00s
- [ 4/14] Installing openblas-0:0.3.29-2. 100% | 36.9 MiB/s | 113.5 KiB | 00m00s
- [ 5/14] Installing openblas-openmp-0:0. 100% | 104.5 MiB/s | 43.7 MiB | 00m00s
- [ 6/14] Installing libquadmath-0:15.2.1 100% | 44.5 MiB/s | 319.2 KiB | 00m00s
- [ 7/14] Installing flexiblas-netlib-0:3 100% | 68.2 MiB/s | 16.5 MiB | 00m00s
- [ 8/14] Installing flexiblas-0:3.5.0-1. 100% | 12.7 MiB/s | 39.2 KiB | 00m00s
- [ 9/14] Installing flexiblas-openblas-o 100% | 9.8 MiB/s | 40.1 KiB | 00m00s
- [10/14] Installing flint-0:3.3.1-2.fc43 100% | 70.2 MiB/s | 11.2 MiB | 00m00s
- [11/14] Installing gmp-c++-1:6.3.0-4.fc 100% | 7.0 MiB/s | 28.5 KiB | 00m00s
- [12/14] Installing gmp-devel-1:6.3.0-4. 100% | 57.6 MiB/s | 354.1 KiB | 00m00s
- [13/14] Installing mpfr-devel-0:4.2.2-2 100% | 8.9 MiB/s | 63.6 KiB | 00m00s
- [14/14] Installing flint-devel-0:3.3.1- 100% | 156.5 MiB/s | 30.0 MiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "flint" "flint-devel" "gmp-devel" "mpfr-devel"
- flint-3.3.1-2.fc43.x86_64
- flint-devel-3.3.1-2.fc43.x86_64
- gmp-devel-6.3.0-4.fc43.x86_64
- mpfr-devel-4.2.2-2.fc43.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (cached)
-> retrieved camlidl.1.13 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved colibri2.0.5, colibrilib.0.5 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-mpfr.3 (cached)
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved containers.3.18 (cached)
-> installed conf-flint.3.0
-> installed conf-mpfr.3
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> installed camlidl.1.13
-> 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)
-> 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.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> installed cmdliner.2.1.0
-> retrieved mlcuddidl.3.0.8 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (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.17.0 (cached)
-> retrieved ppx_base.v0.17.0 (cached)
-> retrieved ppx_cold.v0.17.0 (cached)
-> retrieved ppx_compare.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_enumerate.v0.17.0 (cached)
-> retrieved ppx_globalize.v0.17.2 (cached)
-> retrieved ppx_hash.v0.17.0 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ppx_inline_test.v0.17.1 (cached)
-> retrieved ppx_optcomp.v0.17.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved qcheck-core.0.91 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved spelll.0.4 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.17.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved trace.0.12, trace-tef.0.12 (cached)
-> retrieved uutf.1.0.4 (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 fmt.0.11.0
-> installed mtime.2.1.0
-> installed logs.0.10.0
-> installed mlcuddidl.3.0.8
-> installed dune.3.21.1
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed gen.1.1
-> installed jane-street-headers.v0.17.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocplib-simplex.0.5.1
-> installed pp_loc.2.1.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed colibrilib.0.5
-> installed trace.0.12
-> installed spelll.0.4
-> installed qcheck-core.0.91
-> installed integers.0.7.0
-> installed trace-tef.0.12
-> installed ocamlgraph.2.2.0
-> installed dune-build-info.3.21.1
-> installed dune-configurator.3.21.1
-> installed containers.3.18
-> installed ctypes.0.24.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed flint.0.4.2
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_here.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_deriving.6.1.1
-> installed ppx_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed dolmen.0.10
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed farith.0.1
-> installed dolmen_type.0.10
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed dolmen_loop.0.10
-> installed ppx_inline_test.v0.17.1
-> installed colibri2.0.5
Done.
<><> mlcuddidl.3.0.8 installed successfully <><><><><><><><><><><><><><><><><><>
=> For supporting ocaml 5 some modules are removed compared to the release
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:18.38 ---> saved as "9a6ddb8371bc94fa471918eff0b5b3f86f565ce696518a4a02edc188096a2145"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibri2.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile colibri2 0.5 (pinned)
=== install 1 package
- install ounit2 2.2.7 [required by colibri2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> removed colibri2.0.5
-> installed ounit2.2.2.7
[ERROR] The compilation of colibri2.0.5 failed at "dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest".
#=== ERROR while compiling colibri2.0.5 =======================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(https://git.frama-c.com/api/v4/projects/879/packages/generic/colibri2/0.5/colibri2-0.5.tbz)
# path ~/.opam/5.4/.opam-switch/build/colibri2.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest
# exit-code 1
# env-file ~/.opam/log/colibri2-7-25914d.env
# output-file ~/.opam/log/colibri2-7-25914d.out
### output ###
# (cd _build/default/colibri2/tests && ./tests.exe)
# ..........................................................................................................................................................................................................................................................................................................................................
# Ran: 330 tests in: 0.59 seconds.
# OK
# File "colibri2/tests/cram/labelled-uf.t/run.t", line 1, characters 0-0:
# /usr/sbin/git --no-pager diff --no-index --color=always -u _build/default/colibri2/tests/cram/labelled-uf.t/run.t _build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
# diff --git a/_build/default/colibri2/tests/cram/labelled-uf.t/run.t b/_build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
# index db3c007..1864c5b 100644
# --- a/_build/default/colibri2/tests/cram/labelled-uf.t/run.t
# +++ b/_build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
# @@ -2,7 +2,8 @@
#
# # Check example with multiplication
# $ colibri2 $OPT example_labelled_uf_better.smt2
# - unknown-branch-cut
# + (error "Error Time limit reached")
# + [2]
#
# $ colibri2 $OPT example_labelled_uf_better.smt2 --lra-pivot-intr-upd
# unsat
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibri2 0.5
+-
+- The following changes have been performed
| - remove colibri2 0.5
| - install ounit2 2.2.7
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260312111839.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-03-12 11:20.49 ---> saved as "146df94e8db6536231d09fc3447f89ea7789dc64b9106fc63bcbf6c91e6d6ee4"
/home/opam: (run (shell "opam reinstall --with-test --verbose colibri2.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-43\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibri2.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"))
colibri2.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install colibri2 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/3: [colibri2: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibri2" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colibri2.0.5)
- (cd _build/default/colibri2/tests && ./tests.exe)
- ..........................................................................................................................................................................................................................................................................................................................................
- Ran: 330 tests in: 0.65 seconds.
- OK
- File "colibri2/tests/cram/labelled-uf.t/run.t", line 1, characters 0-0:
- /usr/sbin/git --no-pager diff --no-index --color=always -u _build/default/colibri2/tests/cram/labelled-uf.t/run.t _build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
- diff --git a/_build/default/colibri2/tests/cram/labelled-uf.t/run.t b/_build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
- index db3c007..1864c5b 100644
- --- a/_build/default/colibri2/tests/cram/labelled-uf.t/run.t
- +++ b/_build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
- @@ -2,7 +2,8 @@
-
- # Check example with multiplication
- $ colibri2 $OPT example_labelled_uf_better.smt2
- - unknown-branch-cut
- + (error "Error Time limit reached")
- + [2]
-
- $ colibri2 $OPT example_labelled_uf_better.smt2 --lra-pivot-intr-upd
- unsat
[ERROR] The compilation of colibri2.0.5 failed at "dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest".
#=== ERROR while compiling colibri2.0.5 =======================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(https://git.frama-c.com/api/v4/projects/879/packages/generic/colibri2/0.5/colibri2-0.5.tbz)
# path ~/.opam/5.4/.opam-switch/build/colibri2.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest
# exit-code 1
# env-file ~/.opam/log/colibri2-6-564a14.env
# output-file ~/.opam/log/colibri2-6-564a14.out
### output ###
# (cd _build/default/colibri2/tests && ./tests.exe)
# ..........................................................................................................................................................................................................................................................................................................................................
# Ran: 330 tests in: 0.65 seconds.
# OK
# File "colibri2/tests/cram/labelled-uf.t/run.t", line 1, characters 0-0:
# /usr/sbin/git --no-pager diff --no-index --color=always -u _build/default/colibri2/tests/cram/labelled-uf.t/run.t _build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
# diff --git a/_build/default/colibri2/tests/cram/labelled-uf.t/run.t b/_build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
# index db3c007..1864c5b 100644
# --- a/_build/default/colibri2/tests/cram/labelled-uf.t/run.t
# +++ b/_build/default/colibri2/tests/cram/labelled-uf.t/run.t.corrected
# @@ -2,7 +2,8 @@
#
# # Check example with multiplication
# $ colibri2 $OPT example_labelled_uf_better.smt2
# - unknown-branch-cut
# + (error "Error Time limit reached")
# + [2]
#
# $ colibri2 $OPT example_labelled_uf_better.smt2 --lra-pivot-intr-upd
# unsat
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibri2 0.5
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose colibri2.0.5' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose colibri2.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-43\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'colibri2.0.5' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-03-12 11:23.26: Job failed: Failed: Build failed
2026-03-12 11:23.26: Log analysis:
2026-03-12 11:23.26: >>>
[ERROR] The compilation of colibri2.0.5 failed at "dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest".
(score = 20)
2026-03-12 11:23.26: >>>
[ERROR] The compilation of colibri2.0.5 failed at "dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest".
(score = 20)
2026-03-12 11:23.26: The compilation of colibri2.0.5 failed at "dune build -p colibri2 -j 71 --promote-install-files=false @install @runtest".