(for PR #29484)
2026-03-12 11:12.25: New job: test colibrics.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on debian-unstable-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:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn colibrics.0.5 0.5
RUN opam reinstall colibrics.0.5; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibrics.0.5' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test colibrics.0.5) || true
RUN opam reinstall --with-test --verbose colibrics.0.5; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibrics.0.5' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-12 11:12.25: Using cache hint "ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be-colibrics.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.25: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn colibrics.0.5 0.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrics.0.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test colibrics.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose colibrics.0.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-12 11:12.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 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:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be)
Unable to find image 'ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be' locally
docker.io/ocaml/opam@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be: Pulling from ocaml/opam
5d328c471922: Pulling fs layer
f00abbd15497: Pulling fs layer
8db7d6e222cd: Pulling fs layer
5d328c471922: Waiting
745b4a42ed1b: Pulling fs layer
f00abbd15497: Waiting
2896b51452b5: Pulling fs layer
8db7d6e222cd: Waiting
1fea5b82256f: Pulling fs layer
8294f307901e: Pulling fs layer
745b4a42ed1b: Waiting
1fea5b82256f: Waiting
ecc43dfe3c80: Pulling fs layer
2896b51452b5: Waiting
5c981433deda: Pulling fs layer
8294f307901e: Waiting
ecc43dfe3c80: Waiting
75b392cef5ec: Pulling fs layer
c589b24d24cb: Pulling fs layer
e9218c22180c: Pulling fs layer
53efd95c2b7f: Pulling fs layer
c589b24d24cb: Waiting
5c981433deda: Waiting
c9f0b85dce1f: Pulling fs layer
e9218c22180c: Waiting
53efd95c2b7f: Waiting
75b392cef5ec: Waiting
d85ea5b43c76: Pulling fs layer
fe1b4d5e2ab3: Pulling fs layer
c9f0b85dce1f: Waiting
01719f26465e: Pulling fs layer
fe1b4d5e2ab3: Waiting
40ea78c8a01b: Pulling fs layer
01719f26465e: Waiting
d899eeed5549: Pulling fs layer
95eb2fcff96a: Pulling fs layer
a1bef402d6bf: Pulling fs layer
40ea78c8a01b: Waiting
d899eeed5549: Waiting
4f4fb700ef54: Pulling fs layer
95eb2fcff96a: Waiting
2b7876916db8: Pulling fs layer
a1bef402d6bf: Waiting
17b1c517d9f9: Pulling fs layer
2b7876916db8: Waiting
1f3c24128938: Pulling fs layer
17b1c517d9f9: Waiting
ff08eef5d167: Pulling fs layer
9f93c317ad84: Pulling fs layer
1f3c24128938: Waiting
ff08eef5d167: Waiting
de43567988be: Pulling fs layer
9f93c317ad84: Waiting
960f2cb3fd15: Pulling fs layer
21cc70e6624a: Pulling fs layer
960f2cb3fd15: Waiting
cb5a64eedb74: Pulling fs layer
21cc70e6624a: Waiting
14423c9cef00: Pulling fs layer
de43567988be: Waiting
cb5a64eedb74: Waiting
05a3fcd55689: Pulling fs layer
14423c9cef00: Waiting
bf669b533a13: Pulling fs layer
05a3fcd55689: Waiting
22f6d2e54943: Pulling fs layer
68132bd2a62e: Pulling fs layer
bf669b533a13: Waiting
22f6d2e54943: Waiting
b52e05e7534a: Pulling fs layer
68132bd2a62e: Waiting
c94f561cd98b: Pulling fs layer
b52e05e7534a: Waiting
866482d57749: Pulling fs layer
c94f561cd98b: Waiting
4433288cc778: Pulling fs layer
866482d57749: Waiting
83673efe24e5: Pulling fs layer
4d8b8f47597e: Pulling fs layer
0511166510bf: Pulling fs layer
846f7d19236b: Pulling fs layer
4433288cc778: Waiting
83673efe24e5: Waiting
0511166510bf: Waiting
2c14dbfc250b: Pulling fs layer
4d8b8f47597e: Waiting
f5a436005f49: Pulling fs layer
846f7d19236b: Waiting
a99de58fb3e5: Pulling fs layer
2c14dbfc250b: Waiting
f5a436005f49: Waiting
a99de58fb3e5: Waiting
5d328c471922: Verifying Checksum
5d328c471922: Download complete
f00abbd15497: Verifying Checksum
f00abbd15497: Download complete
8db7d6e222cd: Download complete
745b4a42ed1b: Verifying Checksum
745b4a42ed1b: Download complete
2896b51452b5: Verifying Checksum
2896b51452b5: Download complete
5d328c471922: Pull complete
f00abbd15497: Pull complete
8db7d6e222cd: Pull complete
745b4a42ed1b: Pull complete
2896b51452b5: Pull complete
1fea5b82256f: Verifying Checksum
1fea5b82256f: Download complete
8294f307901e: Download complete
ecc43dfe3c80: Verifying Checksum
ecc43dfe3c80: Download complete
5c981433deda: Verifying Checksum
5c981433deda: Download complete
75b392cef5ec: Verifying Checksum
75b392cef5ec: Download complete
c589b24d24cb: Download complete
e9218c22180c: Verifying Checksum
e9218c22180c: Download complete
53efd95c2b7f: Verifying Checksum
53efd95c2b7f: Download complete
c9f0b85dce1f: Verifying Checksum
c9f0b85dce1f: Download complete
d85ea5b43c76: Verifying Checksum
d85ea5b43c76: Download complete
01719f26465e: Download complete
fe1b4d5e2ab3: Verifying Checksum
fe1b4d5e2ab3: Download complete
40ea78c8a01b: Download complete
d899eeed5549: Verifying Checksum
d899eeed5549: Download complete
a1bef402d6bf: Download complete
95eb2fcff96a: Verifying Checksum
95eb2fcff96a: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
2b7876916db8: Download complete
1f3c24128938: Download complete
ff08eef5d167: Verifying Checksum
ff08eef5d167: Download complete
9f93c317ad84: Verifying Checksum
9f93c317ad84: Download complete
de43567988be: Download complete
960f2cb3fd15: Download complete
cb5a64eedb74: Verifying Checksum
cb5a64eedb74: Download complete
21cc70e6624a: Download complete
14423c9cef00: Verifying Checksum
14423c9cef00: Download complete
05a3fcd55689: Download complete
bf669b533a13: Download complete
68132bd2a62e: Download complete
1fea5b82256f: Pull complete
8294f307901e: Pull complete
ecc43dfe3c80: Pull complete
5c981433deda: Pull complete
75b392cef5ec: Pull complete
c589b24d24cb: Pull complete
e9218c22180c: Pull complete
53efd95c2b7f: Pull complete
c9f0b85dce1f: Pull complete
d85ea5b43c76: Pull complete
fe1b4d5e2ab3: Pull complete
01719f26465e: Pull complete
22f6d2e54943: Verifying Checksum
22f6d2e54943: Download complete
c94f561cd98b: Verifying Checksum
c94f561cd98b: Download complete
866482d57749: Verifying Checksum
866482d57749: Download complete
4433288cc778: Download complete
b52e05e7534a: Verifying Checksum
b52e05e7534a: Download complete
83673efe24e5: Verifying Checksum
83673efe24e5: Download complete
0511166510bf: Verifying Checksum
0511166510bf: Download complete
846f7d19236b: Verifying Checksum
846f7d19236b: Download complete
4d8b8f47597e: Verifying Checksum
4d8b8f47597e: Download complete
2c14dbfc250b: Verifying Checksum
2c14dbfc250b: Download complete
f5a436005f49: Verifying Checksum
f5a436005f49: Download complete
a99de58fb3e5: Download complete
40ea78c8a01b: Pull complete
d899eeed5549: Pull complete
95eb2fcff96a: Pull complete
a1bef402d6bf: Pull complete
4f4fb700ef54: Pull complete
2b7876916db8: Pull complete
17b1c517d9f9: Pull complete
1f3c24128938: Pull complete
ff08eef5d167: Pull complete
9f93c317ad84: Pull complete
de43567988be: Pull complete
960f2cb3fd15: Pull complete
21cc70e6624a: Pull complete
cb5a64eedb74: Pull complete
14423c9cef00: Pull complete
05a3fcd55689: Pull complete
bf669b533a13: Pull complete
22f6d2e54943: Pull complete
68132bd2a62e: Pull complete
b52e05e7534a: Pull complete
c94f561cd98b: Pull complete
866482d57749: Pull complete
4433288cc778: Pull complete
83673efe24e5: Pull complete
4d8b8f47597e: Pull complete
0511166510bf: Pull complete
846f7d19236b: Pull complete
2c14dbfc250b: Pull complete
f5a436005f49: Pull complete
a99de58fb3e5: Pull complete
Digest: sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be
Status: Downloaded newer image for ocaml/opam@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be
2026-03-12 11:13.36 ---> using "fc5f960075c978ec0e06c84f3560d8c857fd1defcad50daa8249e5300ed026cd" 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.36 ---> using "a7f8c42e1023ddd99516cc6b1dc5b5dd09b982c94c2d9bafb265d941baa4edb3" 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:13.36 ---> using "40835c6e6561451717592bb071d803f4abc6eff8c12465b59acc83781bff9a41" 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=debian os-version=unknown
# 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.36 ---> using "7b5982cab09db920dad7f5c3f06736d0cb94f99f187c29315a802b971a823bb4" 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.36 ---> using "212109850733c17a00b6ed0a6b4ce46d24fe6b211c30948949a3d5ebbe52a4c7" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:13.41 ---> saved as "29b9d3e3850e77aa65268a1c1b4a464b41da38f66c7fd7e77a9f36b4418eb661"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:13.59 ---> saved as "719baecc075cedf03cdaaab37e4912ff8fbb8f3427ce7a9e609ee9ab95616c82"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [187 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Err:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index
- Couldn't find the start of the patch series
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Ign:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages [10.3 MB]
- Fetched 10.6 MB in 1s (9644 kB/s)
- Reading package lists...
2026-03-12 11:14.01 ---> saved as "5153a93bae82c2004738af85e41d8a6d6a952e82a65d50649bf0fc287a6ab67b"
/home/opam: (run (shell "opam pin add -k version -yn colibrics.0.5 0.5"))
colibrics is now pinned to version 0.5
2026-03-12 11:14.01 ---> saved as "46dd466a87503586c5f49f1e1a9c6e02f121c4378ff44f9d3b5d4aef1caaff01"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colibrics.0.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
colibrics.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 77 packages
- install base v0.17.3 [required by colibri2]
- install camlidl 1.13 [required by mlcuddidl]
- install cmdliner 2.1.0 [required by colibrics]
- install colibri2 0.5 [required by colibrics]
- install colibrics 0.5 (pinned)
- install colibrilib 0.5 [required by colibri2]
- install conf-flint 3.0 [required by flint]
- install conf-gmp 5 [required by zarith, conf-mpfr]
- install conf-m4 1 [required by mlcuddidl]
- install conf-mpfr 3 [required by flint]
- install conf-pkg-config 4 [required by flint]
- install containers 3.18 [required by colibri2]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by flint]
- install dolmen 0.10 [required by colibrics]
- install dolmen_loop 0.10 [required by colibrics]
- install dolmen_type 0.10 [required by colibrics]
- install dune 3.21.1 [required by colibrics]
- install dune-build-info 3.21.1 [required by colibri2]
- install dune-configurator 3.21.1 [required by containers, base, flint]
- install either 1.0.0 [required by containers]
- install farith 0.1 [required by colibri2]
- install flint 0.4.2 [required by colibri2]
- install fmt 0.11.0 [required by dolmen]
- install gen 1.1 [required by colibri2]
- install hmap 0.8.1 [required by dolmen]
- install integers 0.7.0 [required by ctypes]
- install jane-street-headers v0.17.0 [required by time_now]
- install jingoo 1.5.2 [required by colibrics]
- install jst-config v0.17.0 [required by time_now]
- install logs 0.10.0 [required by colibrics]
- install menhir 20250912 [required by jingoo, why3]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install mlcuddidl 3.0.8 [required by colibri2]
- install mtime 2.1.0 [required by trace, trace-tef]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by mlcuddidl, uucp]
- install ocamlfind 1.9.8 [required by why3]
- install ocamlgraph 2.2.0 [required by colibri2, why3]
- install ocplib-simplex 0.5.1 [required by colibri2]
- install pp_loc 2.1.0 [required by dolmen_loop]
- install ppx_assert v0.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 ppx_deriving_yojson, colibri2, jingoo, why3]
- install ppx_deriving_yojson 3.10.0 [required by colibrics]
- 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 why3]
- install ppxlib 0.37.0 [required by ppx_deriving_yojson]
- 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, jingoo]
- 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 uucp]
- install trace 0.12 [required by colibri2]
- install trace-tef 0.12 [required by colibri2]
- install uucp 17.0.0 [required by jingoo]
- install uutf 1.0.4 [required by jingoo]
- install why3 1.8.2 [required by colibrics]
- install yojson 3.0.0 [required by colibrics]
- install zarith 1.14 [required by colibrics]
The following system packages will first need to be installed:
libflint-dev libgmp-dev libmpfr-dev m4 pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libflint-dev" "libgmp-dev" "libmpfr-dev" "m4" "pkg-config"
- Selecting previously unselected package libflint22:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20963 files and directories currently installed.)
- Preparing to unpack .../0-libflint22_3.4.0-1+b1_amd64.deb ...
- Unpacking libflint22:amd64 (3.4.0-1+b1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../1-libgmpxx4ldbl_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../2-libgmp-dev_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libmpfr-dev:amd64.
- Preparing to unpack .../3-libmpfr-dev_4.2.2-2+b1_amd64.deb ...
- Unpacking libmpfr-dev:amd64 (4.2.2-2+b1) ...
- Selecting previously unselected package libflint-dev.
- Preparing to unpack .../4-libflint-dev_3.4.0-1+b1_amd64.deb ...
- Unpacking libflint-dev (3.4.0-1+b1) ...
- Selecting previously unselected package libpkgconf7:amd64.
- Preparing to unpack .../5-libpkgconf7_2.5.1-4_amd64.deb ...
- Unpacking libpkgconf7:amd64 (2.5.1-4) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../6-m4_1.4.21-1_amd64.deb ...
- Unpacking m4 (1.4.21-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_2.5.1-4_amd64.deb ...
- Unpacking pkgconf-bin (2.5.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_2.5.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (2.5.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_2.5.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (2.5.1-4) ...
- Setting up libpkgconf7:amd64 (2.5.1-4) ...
- Setting up m4 (1.4.21-1) ...
- Setting up libflint22:amd64 (3.4.0-1+b1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up pkgconf-bin (2.5.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up libmpfr-dev:amd64 (4.2.2-2+b1) ...
- Setting up pkgconf:amd64 (2.5.1-4) ...
- Setting up pkg-config:amd64 (2.5.1-4) ...
- Setting up libflint-dev (3.4.0-1+b1) ...
- Processing triggers for libc-bin (2.42-13) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (cached)
-> retrieved camlidl.1.13 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved colibri2.0.5, colibrics.0.5, colibrilib.0.5 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-mpfr.3 (cached)
-> retrieved containers.3.18 (cached)
-> installed conf-gmp.5
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-mpfr.3
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-flint.3.0
-> 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)
-> installed cmdliner.2.1.0
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jingoo.1.5.2 (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 (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_deriving_yojson.3.10.0 (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 uucp.17.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved why3.1.8.2 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed 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-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 ocamlgraph.2.2.0
-> installed ppx_derivers.1.2.1
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed colibrilib.0.5
-> installed trace.0.12
-> installed spelll.0.4
-> installed integers.0.7.0
-> installed trace-tef.0.12
-> 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 uucp.17.0.0
-> installed stdio.v0.17.0
-> installed flint.0.4.2
-> installed menhir.20250912
-> installed ppxlib.0.37.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_deriving.6.1.1
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_hash.v0.17.0
-> installed jingoo.1.5.2
-> 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 why3.1.8.2
-> installed colibri2.0.5
-> installed colibrics.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:15.43 ---> saved as "7d261d4e4faeb412be7b45486b810f958c2dfa0db85c44b84b2ece971eb2c909"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibrics.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile colibrics 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed colibrics.0.5
-> installed colibrics.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:15.51 ---> saved as "541e778a6856f6ec1e7f83c10a841419769814e194334f4ab10186342b53feed"
/home/opam: (run (shell "opam reinstall --with-test --verbose colibrics.0.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibrics.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile colibrics 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [colibrics: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibrics" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colibrics.0.5)
Processing 2/4: [colibrics: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "colibrics" "--create-install-files" "colibrics" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colibrics.0.5)
-> compiled colibrics.0.5
-> removed colibrics.0.5
-> installed colibrics.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:15.59 ---> saved as "ac6ce755fada0e927770a0a5c6db656e1352e6e1ff20798b8149596d438722e3"
Job succeeded
2026-03-12 11:16.14: Job succeeded