(for PR #29484)
2026-04-27 07:45.28: New job: test colibrilib-why3.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 colibrilib-why3.0.5 0.5
RUN opam reinstall colibrilib-why3.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" != 'colibrilib-why3.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 colibrilib-why3.0.5) || true
RUN opam reinstall --with-test --verbose colibrilib-why3.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" != 'colibrilib-why3.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-colibrilib-why3.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 colibrilib-why3.0.5 0.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrilib-why3.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\" != 'colibrilib-why3.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 colibrilib-why3.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose colibrilib-why3.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\" != 'colibrilib-why3.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.09: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
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
f4e18988783e: Waiting
ac511140fcec: Waiting
e5e3b5898b4b: Waiting
08e53197d17a: Waiting
9502f6b2d19e: Waiting
f4e18988783e: Verifying Checksum
f4e18988783e: Download complete
f4e18988783e: Pull complete
d9b0005bf058: Verifying Checksum
d9b0005bf058: Download complete
d9b0005bf058: Pull complete
e5e3b5898b4b: Verifying Checksum
e5e3b5898b4b: Download complete
9502f6b2d19e: Verifying Checksum
9502f6b2d19e: Download complete
08e53197d17a: Verifying Checksum
08e53197d17a: Download complete
ac511140fcec: Verifying Checksum
ac511140fcec: Download 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:47.12 ---> using "01c11b07ac2b5cd48e66007e5a5cac291b476dda37442ad969d24b0ab6dc0559" 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-04-27 07:47.12 ---> using "5fa6b9ef5549d606fde31aba0d2d7485a36147f16a3ee218cbb6a6f517620475" 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-04-27 07:47.28 ---> 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 255
# 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:47.29 ---> 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:47.38 ---> saved as "b5281aa9dc433b8ef976cfc81df3773fee0eb65d5c716c2c984d2975eae1fea3"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-27 07:47.46 ---> saved as "0492d1782fc53271355f6033e3b1d9f1dd31b920c0e983f5d83a39cfce9f0f69"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-27 07:48.05 ---> 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:48.07 ---> saved as "ab28011b8d635e86773fc03435eb3e3e3e19f1189bdff4f70078d9fc6b02e0d7"
/home/opam: (run (shell "opam pin add -k version -yn colibrilib-why3.0.5 0.5"))
colibrilib-why3 is now pinned to version 0.5
2026-04-27 07:48.08 ---> saved as "c53f71939127ed7092d006c543d6d5840694b0ef8d631ca72531a8da44374de8"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrilib-why3.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\" != 'colibrilib-why3.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"))
colibrilib-why3.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 24 packages
- install colibrilib-why3 0.5 (pinned)
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install csexp 1.5.2 [required by dune-private-libs]
- install dune 3.22.2 [required by colibrilib-why3]
- install dune-private-libs 3.22.2 [required by dune-site]
- install dune-site 3.22.2 [required by why3find]
- install dyn 3.22.2 [required by dune-private-libs]
- install fs-io 3.22.2 [required by stdune]
- install menhir 20260209 [required by why3]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- install ocamlfind 1.9.8 [required by why3]
- install ordering 3.22.2 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install stdune 3.22.2 [required by dune-private-libs]
- install terminal_size 0.2.0 [required by why3find]
- install top-closure 3.22.2 [required by stdune]
- install why3 1.8.2 [required by why3find]
- install why3find 1.3.0 [required by colibrilib-why3]
- install yojson 3.0.0 [required by why3find]
- install zarith 1.14 [required by why3]
The following system packages will first need to be installed:
gmp-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" "gmp-dev"
- (1/2) Installing libgmpxx (6.3.0-r4)
- (2/2) Installing gmp-dev (6.3.0-r4)
- OK: 338.9 MiB in 106 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved colibrilib-why3.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 csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved dune.3.22.2, dune-private-libs.3.22.2, dune-site.3.22.2, dyn.3.22.2, fs-io.3.22.2, ordering.3.22.2, stdune.3.22.2, top-closure.3.22.2 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved terminal_size.0.2.0 (cached)
-> retrieved why3.1.8.2 (cached)
-> retrieved why3find.1.3.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed fs-io.3.22.2
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ordering.3.22.2
-> installed pp.2.0.0
-> installed terminal_size.0.2.0
-> installed top-closure.3.22.2
-> installed yojson.3.0.0
-> installed dyn.3.22.2
-> installed stdune.3.22.2
-> installed menhir.20260209
-> installed dune-private-libs.3.22.2
-> installed dune-site.3.22.2
-> installed why3.1.8.2
-> installed why3find.1.3.0
-> installed colibrilib-why3.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-27 07:49.29 ---> saved as "f94227b747c6e3cdf2f60e0ea41a300262fc89763aa91eb27cf42418c644b335"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibrilib-why3.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile colibrilib-why3 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 255 --promote-install-files=false @install @runtest".
#=== ERROR while compiling colibrilib-why3.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/colibrilib-why3.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib-why3 -j 255 --promote-install-files=false @install @runtest
# exit-code 1
# env-file ~/.opam/log/colibrilib-why3-7-4ddd07.env
# output-file ~/.opam/log/colibrilib-why3-7-4ddd07.out
### output ###
# File "colibri2/tests/cram/dune", line 2, characters 16-24:
# 2 | (deps (package colibri2)))
# ^^^^^^^^
# Error: Package colibri2 does not exist
# File "colibri2/tests/dune", line 25, characters 21-29:
# 25 | (cram (deps (package colibri2)))
# ^^^^^^^^
# Error: Package colibri2 does not exist
# (cd _build/default/common && /home/opam/.opam/5.4/bin/why3find doc q.mlw bound.mlw union.mlw modulo.mlw)
# Generated /home/opam/.opam/5.4/.opam-switch/build/colibrilib-why3.0.5/_build/default/common/html/index.html
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib-why3 0.5
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
2026-04-27 07:49.34 ---> saved as "fbc7d1223995694f0768baf1c8abaf457e2fd4507e4f5515d657fa336d497440"
/home/opam: (run (shell "opam reinstall --with-test --verbose colibrilib-why3.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\" != 'colibrilib-why3.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 colibrilib-why3 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [colibrilib-why3: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibrilib-why3" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colibrilib-why3.0.5)
- File "colibri2/tests/cram/dune", line 2, characters 16-24:
- 2 | (deps (package colibri2)))
- ^^^^^^^^
- Error: Package colibri2 does not exist
- File "colibri2/tests/dune", line 25, characters 21-29:
- 25 | (cram (deps (package colibri2)))
- ^^^^^^^^
- Error: Package colibri2 does not exist
- (cd _build/default/common && /home/opam/.opam/5.4/bin/why3find doc q.mlw bound.mlw union.mlw modulo.mlw)
- Generated /home/opam/.opam/5.4/.opam-switch/build/colibrilib-why3.0.5/_build/default/common/html/index.html
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 255 --promote-install-files=false @install @runtest".
#=== ERROR while compiling colibrilib-why3.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/colibrilib-why3.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib-why3 -j 255 --promote-install-files=false @install @runtest
# exit-code 1
# env-file ~/.opam/log/colibrilib-why3-7-b97283.env
# output-file ~/.opam/log/colibrilib-why3-7-b97283.out
### output ###
# File "colibri2/tests/cram/dune", line 2, characters 16-24:
# 2 | (deps (package colibri2)))
# ^^^^^^^^
# Error: Package colibri2 does not exist
# File "colibri2/tests/dune", line 25, characters 21-29:
# 25 | (cram (deps (package colibri2)))
# ^^^^^^^^
# Error: Package colibri2 does not exist
# (cd _build/default/common && /home/opam/.opam/5.4/bin/why3find doc q.mlw bound.mlw union.mlw modulo.mlw)
# Generated /home/opam/.opam/5.4/.opam-switch/build/colibrilib-why3.0.5/_build/default/common/html/index.html
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib-why3 0.5
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose colibrilib-why3.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 colibrilib-why3.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" != 'colibrilib-why3.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-04-27 07:49.46: Job failed: Failed: Build failed
2026-04-27 07:49.46: Log analysis:
2026-04-27 07:49.46: >>>
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 255 --promote-install-files=false @install @runtest".
(score = 20)
2026-04-27 07:49.46: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-04-27 07:49.46: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-04-27 07:49.46: >>>
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 255 --promote-install-files=false @install @runtest".
(score = 20)
2026-04-27 07:49.46: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-04-27 07:49.46: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-04-27 07:49.46: Package colibri2 does not exist