(for PR #29484)
2026-03-12 11:12.26: New job: test colibrilib.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on centos-9-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:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856
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.0.5 0.5
RUN opam reinstall colibrilib.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibrilib.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.0.5) || true
RUN opam reinstall --with-test --verbose colibrilib.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibrilib.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:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856-colibrilib.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.26: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856)
(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.0.5 0.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrilib.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 \"\\\"centos-9\\\"\"; 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.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.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose colibrilib.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 \"\\\"centos-9\\\"\"; 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.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.30: Waiting for worker…
2026-03-12 11:12.31: Got resource from pool OCluster
Building on doris.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:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856)
Unable to find image 'ocaml/opam:centos-9-ocaml-5.4@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856' locally
docker.io/ocaml/opam@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856: Pulling from ocaml/opam
45c6a4d4c886: Pulling fs layer
b17581aa4795: Pulling fs layer
4c1de3308e3e: Pulling fs layer
48316ebaa55a: Pulling fs layer
45c6a4d4c886: Waiting
4c1de3308e3e: Waiting
7ec69a714829: Pulling fs layer
b17581aa4795: Waiting
48316ebaa55a: Waiting
b03bd2510449: Pulling fs layer
7ec69a714829: Waiting
304a5c461745: Pulling fs layer
b03bd2510449: Waiting
60df06c700dd: Pulling fs layer
304a5c461745: Waiting
89e00e57b3fa: Pulling fs layer
60df06c700dd: Waiting
89e00e57b3fa: Waiting
7a919f7b5f28: Pulling fs layer
4dd342eaf261: Pulling fs layer
7a919f7b5f28: Waiting
fe0e6064d681: Pulling fs layer
4ecda19bc519: Pulling fs layer
d7de0d705545: Pulling fs layer
fe0e6064d681: Waiting
4dd342eaf261: Waiting
dd5867dc1c0f: Pulling fs layer
d7de0d705545: Waiting
e95819b6c530: Pulling fs layer
0d197bd9c89e: Pulling fs layer
4ecda19bc519: Waiting
dd5867dc1c0f: Waiting
e95819b6c530: Waiting
5c85d30bb240: Pulling fs layer
0d197bd9c89e: Waiting
64d1254de61e: Pulling fs layer
5c85d30bb240: Waiting
64d1254de61e: Waiting
de006d6a444d: Pulling fs layer
9704bbfa1415: Pulling fs layer
de006d6a444d: Waiting
d53544e2413c: Pulling fs layer
4f4fb700ef54: Pulling fs layer
d53544e2413c: Waiting
4d545aa3b363: Pulling fs layer
9704bbfa1415: Waiting
09943d8af875: Pulling fs layer
4f4fb700ef54: Waiting
f4bef9be8486: Pulling fs layer
792f3c5f41a4: Pulling fs layer
09943d8af875: Waiting
f4bef9be8486: Waiting
6985496d8889: Pulling fs layer
5301efc77bf0: Pulling fs layer
6985496d8889: Waiting
792f3c5f41a4: Waiting
2ffd769334f5: Pulling fs layer
5301efc77bf0: Waiting
08c3be5e76fe: Pulling fs layer
2ffd769334f5: Waiting
284a634e255d: Pulling fs layer
38c8ab2c6bee: Pulling fs layer
284a634e255d: Waiting
2c29741f6e40: Pulling fs layer
60cce0d35550: Pulling fs layer
38c8ab2c6bee: Waiting
2c29741f6e40: Waiting
75db624f3f65: Pulling fs layer
21fdff44f7df: Pulling fs layer
75db624f3f65: Waiting
08c3be5e76fe: Waiting
9fd1a090a391: Pulling fs layer
21fdff44f7df: Waiting
6572f3b9bb36: Pulling fs layer
1f1e09f0a1c4: Pulling fs layer
9fd1a090a391: Waiting
6572f3b9bb36: Waiting
7c1cf8ce65af: Pulling fs layer
1f1e09f0a1c4: Waiting
9befe636c1db: Pulling fs layer
7c1cf8ce65af: Waiting
25027c3d5c10: Pulling fs layer
9befe636c1db: Waiting
99740a30b581: Pulling fs layer
1659eb123329: Pulling fs layer
99740a30b581: Waiting
5fd91256cf90: Pulling fs layer
b17581aa4795: Download complete
45c6a4d4c886: Verifying Checksum
45c6a4d4c886: Download complete
4c1de3308e3e: Verifying Checksum
4c1de3308e3e: Download complete
b03bd2510449: Download complete
7ec69a714829: Verifying Checksum
7ec69a714829: Download complete
60df06c700dd: Verifying Checksum
60df06c700dd: Download complete
45c6a4d4c886: Pull complete
b17581aa4795: Pull complete
89e00e57b3fa: Verifying Checksum
89e00e57b3fa: Download complete
7a919f7b5f28: Verifying Checksum
7a919f7b5f28: Download complete
4c1de3308e3e: Pull complete
304a5c461745: Verifying Checksum
304a5c461745: Download complete
fe0e6064d681: Verifying Checksum
fe0e6064d681: Download complete
4dd342eaf261: Verifying Checksum
4dd342eaf261: Download complete
4ecda19bc519: Verifying Checksum
4ecda19bc519: Download complete
d7de0d705545: Verifying Checksum
d7de0d705545: Download complete
e95819b6c530: Download complete
0d197bd9c89e: Download complete
5c85d30bb240: Verifying Checksum
5c85d30bb240: Download complete
dd5867dc1c0f: Verifying Checksum
dd5867dc1c0f: Download complete
de006d6a444d: Download complete
9704bbfa1415: Download complete
64d1254de61e: Verifying Checksum
64d1254de61e: Download complete
4f4fb700ef54: Download complete
48316ebaa55a: Verifying Checksum
48316ebaa55a: Download complete
d53544e2413c: Download complete
4d545aa3b363: Download complete
09943d8af875: Verifying Checksum
09943d8af875: Download complete
792f3c5f41a4: Download complete
6985496d8889: Verifying Checksum
6985496d8889: Download complete
5301efc77bf0: Verifying Checksum
5301efc77bf0: Download complete
f4bef9be8486: Download complete
2ffd769334f5: Verifying Checksum
2ffd769334f5: Download complete
08c3be5e76fe: Verifying Checksum
08c3be5e76fe: Download complete
284a634e255d: Verifying Checksum
284a634e255d: Download complete
38c8ab2c6bee: Verifying Checksum
38c8ab2c6bee: Download complete
2c29741f6e40: Verifying Checksum
2c29741f6e40: Download complete
60cce0d35550: Verifying Checksum
60cce0d35550: Download complete
21fdff44f7df: Verifying Checksum
21fdff44f7df: Download complete
1f1e09f0a1c4: Download complete
7c1cf8ce65af: Verifying Checksum
7c1cf8ce65af: Download complete
9befe636c1db: Verifying Checksum
9befe636c1db: Download complete
75db624f3f65: Verifying Checksum
75db624f3f65: Download complete
99740a30b581: Download complete
1659eb123329: Verifying Checksum
1659eb123329: Download complete
25027c3d5c10: Verifying Checksum
25027c3d5c10: Download complete
5fd91256cf90: Download complete
48316ebaa55a: Pull complete
9fd1a090a391: Verifying Checksum
9fd1a090a391: Download complete
7ec69a714829: Pull complete
b03bd2510449: Pull complete
304a5c461745: Pull complete
60df06c700dd: Pull complete
89e00e57b3fa: Pull complete
7a919f7b5f28: Pull complete
4dd342eaf261: Pull complete
fe0e6064d681: Pull complete
4ecda19bc519: Pull complete
d7de0d705545: Pull complete
dd5867dc1c0f: Pull complete
e95819b6c530: Pull complete
0d197bd9c89e: Pull complete
5c85d30bb240: Pull complete
64d1254de61e: Pull complete
de006d6a444d: Pull complete
9704bbfa1415: Pull complete
d53544e2413c: Pull complete
4f4fb700ef54: Pull complete
4d545aa3b363: Pull complete
09943d8af875: Pull complete
f4bef9be8486: Pull complete
792f3c5f41a4: Pull complete
6985496d8889: Pull complete
5301efc77bf0: Pull complete
2ffd769334f5: Pull complete
08c3be5e76fe: Pull complete
284a634e255d: Pull complete
38c8ab2c6bee: Pull complete
2c29741f6e40: Pull complete
60cce0d35550: Pull complete
75db624f3f65: Pull complete
21fdff44f7df: Pull complete
9fd1a090a391: Pull complete
6572f3b9bb36: Pull complete
1f1e09f0a1c4: Pull complete
7c1cf8ce65af: Pull complete
9befe636c1db: Pull complete
25027c3d5c10: Pull complete
99740a30b581: Pull complete
1659eb123329: Pull complete
5fd91256cf90: Pull complete
Digest: sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856
Status: Downloaded newer image for ocaml/opam@sha256:d33cd8f3809725736692b00c3a83e85feb195d6a56e0dd75247e09e431a4a856
2026-03-12 11:13.53 ---> using "4762cf358287d530eb90170aa25b01b6f28f72eee32421a7ce7e5f0f9c30f619" 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:13.53 ---> using "aa5050d7b817bcc3bd129dac3c24e616babb35fc2d5ed49896862795fda4639c" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-12 11:13.53 ---> using "5d07f6d2cd3eca72910758ad77a939b508a535065bf976976031d8b04664a824" 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=centos os-version=9
# 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.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:13.53 ---> using "a21939b4dac471cbccbc2c1eac301cefbfc2f73cb8ac9d26ca3b1d968e9f7609" 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:13.53 ---> using "02cf26fa4df0c938a5060afb2f4b0425431ca46b919698a71dc53fcd09dfeb9f" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:13.57 ---> saved as "b50e2b77177737358d1638e0b4c1bc9817df5055b498482b8e20050c7d03296f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:14.16 ---> saved as "db89696dfc59188695c1a080930d8c49bb2f725e8c8ab236336a8d495bf9916b"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 41 kB/s | 15 kB 00:00
- CentOS Stream 9 - BaseOS 2.1 MB/s | 8.9 MB 00:04
- CentOS Stream 9 - AppStream 122 kB/s | 16 kB 00:00
- CentOS Stream 9 - AppStream 12 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 115 kB/s | 15 kB 00:00
- CentOS Stream 9 - CRB 7.8 MB/s | 8.0 MB 00:01
- CentOS Stream 9 - Extras packages 119 kB/s | 16 kB 00:00
- CentOS Stream 9 - Extras packages 123 kB/s | 20 kB 00:00
- Metadata cache created.
2026-03-12 11:14.35 ---> saved as "e9df98788ba80cef97c65bedc579212e38a4ef8cc4ca0593dcae589dbebdb44b"
/home/opam: (run (shell "opam pin add -k version -yn colibrilib.0.5 0.5"))
colibrilib is now pinned to version 0.5
2026-03-12 11:14.36 ---> saved as "bbb707f2b4dbf97dbe22a0dfde989088396dd60cf04037456bad721f2b3965e0"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrilib.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 \"\\\"centos-9\\\"\"; 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.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.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install colibrilib 0.5 (pinned)
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install dune 3.21.1 [required by colibrilib]
- install ocamlfind 1.9.8 [required by zarith]
- install zarith 1.14 [required by colibrilib]
The following system packages will first need to be installed:
gmp-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run 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/bin/sudo "yum" "install" "-y" "gmp-devel"
- Last metadata expiration check: 0:00:05 ago on Thu Mar 12 11:14:33 2026.
- Dependencies resolved.
- ================================================================================
- Package Architecture Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.0-13.el9 appstream 174 k
- Installing dependencies:
- gmp-c++ x86_64 1:6.2.0-13.el9 appstream 19 k
-
- Transaction Summary
- ================================================================================
- Install 2 Packages
-
- Total download size: 193 k
- Installed size: 382 k
- Downloading Packages:
- (1/2): gmp-c++-6.2.0-13.el9.x86_64.rpm 256 kB/s | 19 kB 00:00
- (2/2): gmp-devel-6.2.0-13.el9.x86_64.rpm 1.4 MB/s | 174 kB 00:00
- --------------------------------------------------------------------------------
- Total 741 kB/s | 193 kB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : gmp-c++-1:6.2.0-13.el9.x86_64 1/2
- Installing : gmp-devel-1:6.2.0-13.el9.x86_64 2/2
- Running scriptlet: gmp-devel-1:6.2.0-13.el9.x86_64 2/2
- Verifying : gmp-c++-1:6.2.0-13.el9.x86_64 1/2
- Verifying : gmp-devel-1:6.2.0-13.el9.x86_64 2/2
-
-
- Installed:
- gmp-c++-1:6.2.0-13.el9.x86_64 gmp-devel-1:6.2.0-13.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.2.0-13.el9.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved colibrilib.0.5 (cached)
-> retrieved conf-gmp.5 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.21.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.21.1
-> installed colibrilib.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:15.08 ---> saved as "7472ca17b8966c24d65c571db8f634ebfe73a627e59eeb5b0328b991abd101fe"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibrilib.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile colibrilib 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".
#=== ERROR while compiling colibrilib.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/colibrilib.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest
# exit-code 1
# env-file ~/.opam/log/colibrilib-7-aa4d3a.env
# output-file ~/.opam/log/colibrilib-7-aa4d3a.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
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib 0.5
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:15.12 ---> saved as "ec4ccd815d151afa2489279bd422235b891be74acdd4357c240cd052a135112d"
/home/opam: (run (shell "opam reinstall --with-test --verbose colibrilib.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 \"\\\"centos-9\\\"\"; 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.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 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [colibrilib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibrilib" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colibrilib.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
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".
#=== ERROR while compiling colibrilib.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/colibrilib.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest
# exit-code 1
# env-file ~/.opam/log/colibrilib-7-5bed66.env
# output-file ~/.opam/log/colibrilib-7-5bed66.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
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib 0.5
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose colibrilib.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.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 "\"centos-9\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'colibrilib.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:15.26: Job failed: Failed: Build failed
2026-03-12 11:15.26: Log analysis:
2026-03-12 11:15.26: >>>
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".
(score = 20)
2026-03-12 11:15.26: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-03-12 11:15.26: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-03-12 11:15.26: >>>
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".
(score = 20)
2026-03-12 11:15.26: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-03-12 11:15.26: >>>
# Error: Package colibri2 does not exist
(score = 48)
2026-03-12 11:15.26: Package colibri2 does not exist