(for PR #29484)
2026-04-27 07:45.28: New job: test colibri2.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on alpine-3.23-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 d5058a91d400180e2118d7eeefa040cfcee45d2c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
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 "\"alpine-3.23\""; 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 "\"alpine-3.23\""; 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-04-27 07:45.28: Using cache hint "ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366-colibri2.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-04-27 07:45.28: Using OBuilder spec:
((from ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366)
(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 \"\\\"alpine-3.23\\\"\"; 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 \"\\\"alpine-3.23\\\"\"; 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-04-27 07:45.28: Connecting to build cluster…
2026-04-27 07:45.28: Waiting for resource in pool OCluster
2026-04-27 07:45.28: Waiting for worker…
2026-04-27 07:47.00: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 68% (12988/18865)
Updating files: 69% (13017/18865)
Updating files: 70% (13206/18865)
Updating files: 71% (13395/18865)
Updating files: 72% (13583/18865)
Updating files: 73% (13772/18865)
Updating files: 74% (13961/18865)
Updating files: 75% (14149/18865)
Updating files: 76% (14338/18865)
Updating files: 77% (14527/18865)
Updating files: 78% (14715/18865)
Updating files: 79% (14904/18865)
Updating files: 80% (15092/18865)
Updating files: 81% (15281/18865)
Updating files: 82% (15470/18865)
Updating files: 83% (15658/18865)
Updating files: 84% (15847/18865)
Updating files: 85% (16036/18865)
Updating files: 86% (16224/18865)
Updating files: 87% (16413/18865)
Updating files: 88% (16602/18865)
Updating files: 89% (16790/18865)
Updating files: 90% (16979/18865)
Updating files: 91% (17168/18865)
Updating files: 92% (17356/18865)
Updating files: 93% (17545/18865)
Updating files: 94% (17734/18865)
Updating files: 95% (17922/18865)
Updating files: 96% (18111/18865)
Updating files: 97% (18300/18865)
Updating files: 98% (18488/18865)
Updating files: 99% (18677/18865)
Updating files: 100% (18865/18865)
Updating files: 100% (18865/18865), done.
HEAD is now at d5058a91d4 Merge pull request #29801 from YuriyKrasilnikov/opam-publish-idna.0.4.0
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:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366)
Unable to find image 'ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366' locally
docker.io/ocaml/opam@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366: Pulling from ocaml/opam
6a0ac1617861: Already exists
9630673831f3: Already exists
4cffb540229a: Already exists
aa3cee094119: Already exists
f2700202f619: Already exists
33135c7375d5: Already exists
1ea4b64ae955: Already exists
ca34ef70eda1: Already exists
d4998b6f8f35: Already exists
4a43cfe8648c: Already exists
453dd28eaace: Already exists
a962f0379f0a: Already exists
b68882dcbbd8: Already exists
3f63b4eac828: Already exists
0720e1e1068a: Already exists
0676d4d6023a: Already exists
0ab690805f49: Already exists
fc0af979c0fe: Already exists
4f4fb700ef54: Already exists
63f1d0bef8ae: Already exists
43fd6995d88f: Already exists
c775bfb331ab: Already exists
a7a9b5ed8780: Already exists
86ac791930d3: Already exists
2e34d70b785c: Already exists
56c554cb0baa: Already exists
0109b7ea4beb: Already exists
a72aa581a14e: Already exists
0b969b88b90b: Already exists
d1ae0e2bf910: Already exists
cfd8efe5a061: Already exists
a34595d6f491: Already exists
7333547f58a0: Already exists
803cdf5f2902: Already exists
d74501489c54: Already exists
628aecb9cafb: Already exists
0c52f398a865: Already exists
f4e18988783e: Pulling fs layer
d9b0005bf058: Pulling fs layer
ac511140fcec: Pulling fs layer
e5e3b5898b4b: Pulling fs layer
08e53197d17a: Pulling fs layer
9502f6b2d19e: Pulling fs layer
e5e3b5898b4b: Waiting
9502f6b2d19e: Waiting
08e53197d17a: Waiting
d9b0005bf058: Download complete
e5e3b5898b4b: Download complete
08e53197d17a: Verifying Checksum
08e53197d17a: Download complete
9502f6b2d19e: Verifying Checksum
9502f6b2d19e: Download complete
ac511140fcec: Verifying Checksum
ac511140fcec: Download complete
f4e18988783e: Verifying Checksum
f4e18988783e: Download complete
f4e18988783e: Pull complete
d9b0005bf058: Pull complete
ac511140fcec: Pull complete
e5e3b5898b4b: Pull complete
08e53197d17a: Pull complete
9502f6b2d19e: Pull complete
Digest: sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
Status: Downloaded newer image for ocaml/opam@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
2026-04-27 07:48.40 ---> saved as "01c11b07ac2b5cd48e66007e5a5cac291b476dda37442ad969d24b0ab6dc0559"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-27 07:48.41 ---> saved as "5fa6b9ef5549d606fde31aba0d2d7485a36147f16a3ee218cbb6a6f517620475"
/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.
[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-27 07:49.12 ---> saved as "2b7c0c1ec60c3c866c21f4c48a177ecdc8d20898064aa58e8186b73bd0a3b82c"
/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.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=alpine os-version=3.23.4
# 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.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-04-27 07:49.13 ---> saved as "7862949e114365a7d947f371162aff05306891b079ee9ff96207c1c35ea17ff1"
/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-04-27 07:49.24 ---> saved as "b5281aa9dc433b8ef976cfc81df3773fee0eb65d5c716c2c984d2975eae1fea3"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-27 07:49.52 ---> saved as "0492d1782fc53271355f6033e3b1d9f1dd31b920c0e983f5d83a39cfce9f0f69"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-27 07:50.26 ---> saved as "6ec605530e2900a41e8db3fc5769eac6cdfda2333e60e7117610d5dc63aaac4d"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- v3.23.4-59-gb9ff5fecad9 [https://dl-cdn.alpinelinux.org/alpine/v3.23/main]
- v3.23.4-62-gc06bcbb6e5a [https://dl-cdn.alpinelinux.org/alpine/v3.23/community]
- v20260127-8556-g62e2b7bb20c [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-8557-g79450ec30a5 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-8554-gb33de4ab903 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 62089 distinct packages available
2026-04-27 07:50.37 ---> saved as "ab28011b8d635e86773fc03435eb3e3e3e19f1189bdff4f70078d9fc6b02e0d7"
/home/opam: (run (shell "opam pin add -k version -yn colibri2.0.5 0.5"))
colibri2 is now pinned to version 0.5
2026-04-27 07:50.38 ---> saved as "55723f1b5efd4fc9b8ab9cd8f6360967ced81f35bc881e14851644be6b52c706"
/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 \"\\\"alpine-3.23\\\"\"; 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-1 [required by mlcuddidl]
- install cmdliner 2.1.1 [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.22.2 [required by colibri2]
- install dune-build-info 3.22.2 [required by colibri2]
- install dune-configurator 3.22.2 [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.38.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-dev@edgecommunity gmp-dev m4 mpfr-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
2. Display the recommended apk 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 "apk" "add" "flint-dev@edgecommunity" "gmp-dev" "m4" "mpfr-dev"
- (1/6) Installing flint@edgecommunity (3.4.0-r1)
- (2/6) Installing libgmpxx (6.3.0-r4)
- (3/6) Installing gmp-dev (6.3.0-r4)
- (4/6) Installing mpfr-dev (4.2.2-r0)
- (5/6) Installing flint-dev@edgecommunity (3.4.0-r1)
- (6/6) Installing m4 (1.4.20-r0)
- Executing busybox-1.37.0-r30.trigger
- OK: 352.4 MiB in 110 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (cached)
-> retrieved camlidl.1.13-1 (cached)
-> retrieved cmdliner.2.1.1 (cached)
-> installed camlidl.1.13-1
-> retrieved colibri2.0.5, colibrilib.0.5 (https://git.frama-c.com/api/v4/projects/879/packages/generic/colibri2/0.5/colibri2-0.5.tbz)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-mpfr.3 (cached)
-> installed conf-gmp.5
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> installed conf-mpfr.3
-> retrieved containers.3.18 (cached)
-> installed conf-flint.3.0
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10 (cached)
-> retrieved dune.3.22.2, dune-build-info.3.22.2, dune-configurator.3.22.2 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved farith.0.1 (cached)
-> installed cmdliner.2.1.1
-> retrieved flint.0.4.2 (https://opam.ocaml.org/cache)
-> 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)
-> retrieved mlcuddidl.3.0.8 (https://opam.ocaml.org/cache)
-> 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.38.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 mtime.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed mlcuddidl.3.0.8
-> installed dune.3.22.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.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-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocplib-simplex.0.5.1
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed stdlib-shims.0.3.0
-> installed colibrilib.0.5
-> installed trace.0.12
-> installed qcheck-core.0.91
-> installed spelll.0.4
-> installed ocamlgraph.2.2.0
-> installed trace-tef.0.12
-> installed integers.0.7.0
-> installed dune-configurator.3.22.2
-> 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.38.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_deriving.6.1.1
-> 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 dolmen_loop.0.10
-> installed time_now.v0.17.0
-> 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-04-27 07:53.12 ---> saved as "1a9eb143a53a30dc79f7243bcef21ba3c4a1c3e7ec20f3f35ed843ba800235f1"
/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.1 | linux/x86_64 | ocaml-base-compiler.5.4.1 | 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-f13c03.env
# output-file ~/.opam/log/colibri2-7-f13c03.out
### output ###
# (cd _build/default/colibri2/tests && ./tests.exe)
# ..........................................................................................................................................................................................................................................................................................................................................
# Ran: 330 tests in: 0.42 seconds.
# OK
# File "colibri2/tests/cram/labelled-uf.t/run.t", line 1, characters 0-0:
# /usr/bin/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-20260427075312.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-04-27 07:54.20 ---> saved as "e562f7baf3f2d77cd3580ffc985d085e707a63e369fc41ae5d5c05e304bb5546"
/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 \"\\\"alpine-3.23\\\"\"; 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.51 seconds.
- OK
Processing 2/3: [colibri2: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "colibri2" "--create-install-files" "colibri2" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colibri2.0.5)
-> compiled colibri2.0.5
-> installed colibri2.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-27 07:55.37 ---> saved as "16c5026e29d5705f1b42384010572169dd64a43d4ecaf59a031bf2af1fea04a3"
Job succeeded
2026-04-27 07:56.08: Job succeeded