(for PR #29484)
2026-03-12 11:12.26: New job: test colibri2.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on archlinux-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:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
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 "\"archlinux\""; 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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'colibri2.0.5' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-12 11:12.26: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151-colibri2.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.26: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151)
(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 \"\\\"archlinux\\\"\"; 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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'colibri2.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-12 11:12.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:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151' locally
docker.io/ocaml/opam@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151: Pulling from ocaml/opam
30309458937a: Pulling fs layer
d6ec592b6ce7: Pulling fs layer
eb0cc4fae01f: Pulling fs layer
da907aea55a3: Pulling fs layer
41225181d62b: Pulling fs layer
99bbb95b040c: Pulling fs layer
ae03e2432f2e: Pulling fs layer
d6ec592b6ce7: Waiting
da907aea55a3: Waiting
eb0cc4fae01f: Waiting
960a3688e50d: Pulling fs layer
99bbb95b040c: Waiting
30309458937a: Waiting
12e572ae8d9e: Pulling fs layer
41225181d62b: Waiting
5d9b53919351: Pulling fs layer
960a3688e50d: Waiting
5d9b53919351: Waiting
613718b9dc5c: Pulling fs layer
20c50d6517d7: Pulling fs layer
318e41a81dac: Pulling fs layer
c8d0fbcceca0: Pulling fs layer
20c50d6517d7: Waiting
613718b9dc5c: Waiting
318e41a81dac: Waiting
c8d0fbcceca0: Waiting
f18608e88c8a: Pulling fs layer
4f4fb700ef54: Pulling fs layer
f18608e88c8a: Waiting
53a25100385e: Pulling fs layer
4f4fb700ef54: Waiting
cf8654ebee96: Pulling fs layer
53a25100385e: Waiting
57cdf8563f57: Pulling fs layer
cf8654ebee96: Waiting
ce24bbfe16f6: Pulling fs layer
5c9351c3921c: Pulling fs layer
4d8c9f844539: Pulling fs layer
765a1d524e16: Pulling fs layer
e9b60c2e279a: Pulling fs layer
765a1d524e16: Waiting
35a412369c63: Pulling fs layer
e9b60c2e279a: Waiting
26b4e7a0d54a: Pulling fs layer
ce24bbfe16f6: Waiting
35a412369c63: Waiting
57cdf8563f57: Waiting
4d8c9f844539: Waiting
13545a674236: Pulling fs layer
5c9351c3921c: Waiting
93a04f32ed48: Pulling fs layer
13545a674236: Waiting
59e69b721f9d: Pulling fs layer
563d03393b08: Pulling fs layer
93a04f32ed48: Waiting
22f1353d2736: Pulling fs layer
59e69b721f9d: Waiting
563d03393b08: Waiting
bb9e869c408b: Pulling fs layer
22f1353d2736: Waiting
edabeb8a4c11: Pulling fs layer
7efbe0d19f89: Pulling fs layer
26b4e7a0d54a: Waiting
bb9e869c408b: Waiting
da342da15a63: Pulling fs layer
edabeb8a4c11: Waiting
7efbe0d19f89: Waiting
f71f539d293c: Pulling fs layer
da342da15a63: Waiting
f71f539d293c: Waiting
8d0e94db40bb: Pulling fs layer
a5e5b4f4a251: Pulling fs layer
8d0e94db40bb: Waiting
9852f471784f: Pulling fs layer
a5e5b4f4a251: Waiting
9852f471784f: Waiting
d6ec592b6ce7: Verifying Checksum
d6ec592b6ce7: Download complete
30309458937a: Verifying Checksum
30309458937a: Download complete
da907aea55a3: Verifying Checksum
da907aea55a3: Download complete
eb0cc4fae01f: Verifying Checksum
eb0cc4fae01f: Download complete
41225181d62b: Verifying Checksum
41225181d62b: Download complete
ae03e2432f2e: Verifying Checksum
ae03e2432f2e: Download complete
960a3688e50d: Verifying Checksum
960a3688e50d: Download complete
99bbb95b040c: Verifying Checksum
99bbb95b040c: Download complete
12e572ae8d9e: Verifying Checksum
12e572ae8d9e: Download complete
5d9b53919351: Verifying Checksum
5d9b53919351: Download complete
613718b9dc5c: Verifying Checksum
613718b9dc5c: Download complete
20c50d6517d7: Download complete
318e41a81dac: Download complete
c8d0fbcceca0: Verifying Checksum
c8d0fbcceca0: Download complete
f18608e88c8a: Verifying Checksum
f18608e88c8a: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
53a25100385e: Verifying Checksum
53a25100385e: Download complete
cf8654ebee96: Download complete
57cdf8563f57: Verifying Checksum
57cdf8563f57: Download complete
ce24bbfe16f6: Verifying Checksum
ce24bbfe16f6: Download complete
4d8c9f844539: Download complete
5c9351c3921c: Verifying Checksum
5c9351c3921c: Download complete
e9b60c2e279a: Verifying Checksum
e9b60c2e279a: Download complete
765a1d524e16: Download complete
26b4e7a0d54a: Verifying Checksum
26b4e7a0d54a: Download complete
35a412369c63: Verifying Checksum
35a412369c63: Download complete
13545a674236: Download complete
93a04f32ed48: Verifying Checksum
93a04f32ed48: Download complete
563d03393b08: Verifying Checksum
563d03393b08: Download complete
30309458937a: Pull complete
d6ec592b6ce7: Pull complete
59e69b721f9d: Verifying Checksum
59e69b721f9d: Download complete
bb9e869c408b: Download complete
edabeb8a4c11: Verifying Checksum
edabeb8a4c11: Download complete
7efbe0d19f89: Download complete
da342da15a63: Verifying Checksum
da342da15a63: Download complete
8d0e94db40bb: Download complete
a5e5b4f4a251: Download complete
9852f471784f: Download complete
f71f539d293c: Verifying Checksum
f71f539d293c: Download complete
22f1353d2736: Verifying Checksum
22f1353d2736: Download complete
eb0cc4fae01f: Pull complete
da907aea55a3: Pull complete
41225181d62b: Pull complete
99bbb95b040c: Pull complete
ae03e2432f2e: Pull complete
960a3688e50d: Pull complete
12e572ae8d9e: Pull complete
5d9b53919351: Pull complete
613718b9dc5c: Pull complete
20c50d6517d7: Pull complete
318e41a81dac: Pull complete
c8d0fbcceca0: Pull complete
f18608e88c8a: Pull complete
4f4fb700ef54: Pull complete
53a25100385e: Pull complete
cf8654ebee96: Pull complete
57cdf8563f57: Pull complete
ce24bbfe16f6: Pull complete
5c9351c3921c: Pull complete
4d8c9f844539: Pull complete
765a1d524e16: Pull complete
e9b60c2e279a: Pull complete
35a412369c63: Pull complete
26b4e7a0d54a: Pull complete
13545a674236: Pull complete
93a04f32ed48: Pull complete
59e69b721f9d: Pull complete
563d03393b08: Pull complete
22f1353d2736: Pull complete
bb9e869c408b: Pull complete
edabeb8a4c11: Pull complete
7efbe0d19f89: Pull complete
da342da15a63: Pull complete
f71f539d293c: Pull complete
8d0e94db40bb: Pull complete
a5e5b4f4a251: Pull complete
9852f471784f: Pull complete
Digest: sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
Status: Downloaded newer image for ocaml/opam@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
2026-03-12 11:13.59 ---> using "983fb8fa27cec9a4a5d43f665c1205c6ea6e68ba17ec6c9143d76637febb22cc" 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.59 ---> using "25752ddc5975f6e8996b264e3a3ca1fa7f145be5805ebd9514e16cb6aedde127" 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.59 ---> using "d478ddf269bcf3535bded5e1daaace87d3f4b9d7de5f55a5b08e209b0fdca5d6" 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=arch os-version=20260301.0.494762
# 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.59 ---> using "80b77dd44a92f7fb0130b934f34e0452f08989f0d0aa28c9d38f7ed342b7e091" 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.59 ---> using "1a9b8ae6fcd1519c9165b7da2355952b637f11a47032131c1c34a8be2f2d6ad5" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:14.03 ---> saved as "5422653ba6dbe992e0d2319c8f6aea82079326d41658d8a0265b9cfc4748040f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:14.21 ---> saved as "3e242c678b5a4477bed1347ced23d54a5ca97b2eaaba3f76acf3d8ccabd7b0b5"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-03-12 11:14.21 ---> saved as "8783aeac13d3c2aaec78a884e693281c54ce866c3abc3d1b24c1bc6ea5f85460"
/home/opam: (run (shell "opam pin add -k version -yn colibri2.0.5 0.5"))
colibri2 is now pinned to version 0.5
2026-03-12 11:14.22 ---> saved as "32455642b33a0f5eaea72aad29b9f34c3fbab8f2ea36b84d23e76a3a8162d0a5"
/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 \"\\\"archlinux\\\"\"; 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
∗ base v0.17.3 [required by colibri2]
∗ camlidl 1.13 [required by mlcuddidl]
∗ cmdliner 2.1.0 [required by colibri2]
∗ colibri2 0.5 (pinned)
∗ colibrilib 0.5 [required by colibri2]
∗ conf-flint 3.0 [required by flint]
∗ conf-gmp 5 [required by zarith, conf-mpfr]
∗ conf-m4 1 [required by mlcuddidl]
∗ conf-mpfr 3 [required by flint]
∗ conf-pkg-config 4 [required by flint]
∗ containers 3.18 [required by colibri2]
∗ cppo 1.8.0 [required by ppx_deriving]
∗ csexp 1.5.2 [required by dune-configurator]
∗ ctypes 0.24.0 [required by flint]
∗ dolmen 0.10 [required by colibri2]
∗ dolmen_loop 0.10 [required by colibri2]
∗ dolmen_type 0.10 [required by colibri2]
∗ dune 3.21.1 [required by colibri2]
∗ dune-build-info 3.21.1 [required by colibri2]
∗ dune-configurator 3.21.1 [required by containers, base, flint]
∗ either 1.0.0 [required by containers]
∗ farith 0.1 [required by colibri2]
∗ flint 0.4.2 [required by colibri2]
∗ fmt 0.11.0 [required by dolmen]
∗ gen 1.1 [required by colibri2]
∗ hmap 0.8.1 [required by dolmen]
∗ integers 0.7.0 [required by ctypes]
∗ jane-street-headers v0.17.0 [required by time_now]
∗ jst-config v0.17.0 [required by time_now]
∗ logs 0.10.0 [required by ocplib-simplex]
∗ menhir 20250912 [required by dolmen]
∗ menhirCST 20250912 [required by menhir]
∗ menhirLib 20250912 [required by menhir]
∗ menhirSdk 20250912 [required by menhir]
∗ mlcuddidl 3.0.8 [required by colibri2]
∗ mtime 2.1.0 [required by trace, trace-tef]
∗ ocaml-compiler-libs v0.17.0 [required by ppxlib]
∗ ocaml_intrinsics_kernel v0.17.1 [required by base]
∗ ocamlbuild 0.16.1 [required by mlcuddidl]
∗ ocamlfind 1.9.8 [required by mlcuddidl, ocplib-simplex]
∗ ocamlgraph 2.2.0 [required by colibri2]
∗ ocplib-simplex 0.5.1 [required by colibri2]
∗ pp_loc 2.1.0 [required by dolmen_loop]
∗ ppx_assert v0.17.0 [required by jst-config]
∗ ppx_base v0.17.0 [required by time_now]
∗ ppx_cold v0.17.0 [required by ppx_base]
∗ ppx_compare v0.17.0 [required by ppx_hash]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.1.1 [required by colibri2]
∗ ppx_enumerate v0.17.0 [required by ppx_base]
∗ ppx_globalize v0.17.2 [required by ppx_base]
∗ ppx_hash v0.17.0 [required by colibri2]
∗ ppx_here v0.17.0 [required by colibri2]
∗ ppx_inline_test v0.17.1 [required by colibri2]
∗ ppx_optcomp v0.17.1 [required by colibri2]
∗ ppx_sexp_conv v0.17.1 [required by ppx_hash]
∗ ppxlib 0.37.0 [required by ppx_here, ppx_inline_test]
∗ ppxlib_jane v0.17.4 [required by ppx_hash]
∗ qcheck-core 0.91 [required by colibri2]
∗ re 1.14.0 [required by colibri2]
∗ seq base [required by dolmen]
∗ sexplib0 v0.17.0 [required by base]
∗ spelll 0.4 [required by dolmen_type]
∗ stdio v0.17.0 [required by ppx_optcomp]
∗ stdlib-shims 0.3.0 [required by ppxlib, spelll, integers]
∗ time_now v0.17.0 [required by ppx_inline_test]
∗ topkg 1.1.1 [required by logs, fmt, hmap, mtime]
∗ trace 0.12 [required by colibri2]
∗ trace-tef 0.12 [required by colibri2]
∗ uutf 1.0.4 [required by dolmen_type]
∗ zarith 1.14 [required by colibri2]
The following system packages will first need to be installed:
flint m4 pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/sbin/sudo "pacman" "-Su" "--noconfirm" "flint" "m4" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (14) Old Version New Version Net Change Download Size
-
- extra/blas 3.12.1-2 0.74 MiB 0.24 MiB
- extra/cblas 3.12.1-2 0.34 MiB 0.06 MiB
- core/curl 8.18.0-3 8.19.0-1 0.00 MiB 1.23 MiB
- core/e2fsprogs 1.47.3-2 1.47.4-1 0.00 MiB 1.24 MiB
- core/iana-etc 20260225-2 20260306-1 0.00 MiB 0.39 MiB
- core/libarchive 3.8.5-1 3.8.6-1 0.00 MiB 0.55 MiB
- core/libcap-ng 0.9-1 0.9.1-1 -0.01 MiB 0.04 MiB
- core/libldap 2.6.12-1 2.6.13-1 0.00 MiB 0.28 MiB
- extra/lmdb 0.9.34-1 0.9.35-1 0.00 MiB 0.11 MiB
- core/sqlite 3.51.2-1 3.52.0-1 0.17 MiB 2.29 MiB
- core/zlib 1:1.3.2-2 1:1.3.2-3 0.00 MiB 0.08 MiB
- extra/flint 3.4.0-1 18.96 MiB 6.78 MiB
- core/m4 1.4.21-1 0.71 MiB 0.27 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 13.62 MiB
- Total Installed Size: 52.55 MiB
- Net Upgrade Size: 21.12 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- flint-3.4.0-1-x86_64 downloading...
- sqlite-3.52.0-1-x86_64 downloading...
- e2fsprogs-1.47.4-1-x86_64 downloading...
- curl-8.19.0-1-x86_64 downloading...
- libarchive-3.8.6-1-x86_64 downloading...
- iana-etc-20260306-1-any downloading...
- libldap-2.6.13-1-x86_64 downloading...
- m4-1.4.21-1-x86_64 downloading...
- blas-3.12.1-2-x86_64 downloading...
- lmdb-0.9.35-1-x86_64 downloading...
- zlib-1:1.3.2-3-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- cblas-3.12.1-2-x86_64 downloading...
- libcap-ng-0.9.1-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading iana-etc...
- installing blas...
- installing cblas...
- installing flint...
- installing m4...
- installing pkgconf...
- upgrading zlib...
- upgrading libcap-ng...
- upgrading sqlite...
- upgrading e2fsprogs...
- upgrading libldap...
- upgrading lmdb...
- upgrading curl...
- upgrading libarchive...
- :: Running post-transaction hooks...
- (1/4) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (2/4) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (3/4) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (4/4) Arming ConditionNeedsUpdate...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved base.v0.17.3 (cached)
⬇ retrieved camlidl.1.13 (cached)
⬇ retrieved cmdliner.2.1.0 (cached)
⬇ retrieved colibri2.0.5, colibrilib.0.5 (cached)
⬇ retrieved conf-gmp.5 (cached)
⬇ retrieved conf-mpfr.3 (cached)
⬇ 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-flint.3.0
∗ installed conf-mpfr.3
⬇ retrieved ctypes.0.24.0 (cached)
⬇ retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10 (cached)
∗ installed camlidl.1.13
⬇ retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1 (cached)
⬇ retrieved either.1.0.0 (cached)
⬇ retrieved farith.0.1 (cached)
⬇ retrieved flint.0.4.2 (cached)
⬇ retrieved fmt.0.11.0 (cached)
⬇ retrieved gen.1.1 (cached)
⬇ retrieved hmap.0.8.1 (cached)
⬇ retrieved integers.0.7.0 (cached)
⬇ retrieved jane-street-headers.v0.17.0 (cached)
⬇ retrieved jst-config.v0.17.0 (cached)
⬇ retrieved logs.0.10.0 (cached)
⬇ retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
∗ installed cmdliner.2.1.0
⬇ retrieved mlcuddidl.3.0.8 (cached)
⬇ retrieved mtime.2.1.0 (cached)
⬇ retrieved ocaml-compiler-libs.v0.17.0 (cached)
⬇ retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocamlgraph.2.2.0 (cached)
⬇ retrieved ocplib-simplex.0.5.1 (cached)
⬇ retrieved pp_loc.2.1.0 (cached)
⬇ retrieved ppx_assert.v0.17.0 (cached)
⬇ retrieved ppx_base.v0.17.0 (cached)
⬇ retrieved ppx_cold.v0.17.0 (cached)
⬇ retrieved ppx_compare.v0.17.0 (cached)
⬇ retrieved ppx_derivers.1.2.1 (cached)
⬇ retrieved ppx_deriving.6.1.1 (cached)
⬇ retrieved ppx_enumerate.v0.17.0 (cached)
⬇ retrieved ppx_globalize.v0.17.2 (cached)
⬇ retrieved ppx_hash.v0.17.0 (cached)
⬇ retrieved ppx_here.v0.17.0 (cached)
⬇ retrieved ppx_inline_test.v0.17.1 (cached)
⬇ retrieved ppx_optcomp.v0.17.1 (cached)
⬇ retrieved ppx_sexp_conv.v0.17.1 (cached)
⬇ retrieved ppxlib.0.37.0 (cached)
⬇ retrieved ppxlib_jane.v0.17.4 (cached)
⬇ retrieved qcheck-core.0.91 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved seq.base (cached)
∗ installed seq.base
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved spelll.0.4 (cached)
⬇ retrieved stdio.v0.17.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved time_now.v0.17.0 (cached)
⬇ retrieved topkg.1.1.1 (cached)
⬇ retrieved trace.0.12, trace-tef.0.12 (cached)
⬇ retrieved uutf.1.0.4 (cached)
⬇ retrieved zarith.1.14 (cached)
∗ installed ocamlfind.1.9.8
∗ installed ocamlbuild.0.16.1
∗ installed zarith.1.14
∗ installed topkg.1.1.1
∗ installed hmap.0.8.1
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed mtime.2.1.0
∗ installed logs.0.10.0
∗ installed dune.3.21.1
∗ installed cppo.1.8.0
∗ installed csexp.1.5.2
∗ installed mlcuddidl.3.0.8
∗ installed colibrilib.0.5
∗ 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 qcheck-core.0.91
∗ installed re.1.14.0
∗ installed sexplib0.v0.17.0
∗ installed stdlib-shims.0.3.0
∗ installed ocamlgraph.2.2.0
∗ installed trace.0.12
∗ installed dune-build-info.3.21.1
∗ installed spelll.0.4
∗ installed integers.0.7.0
∗ installed trace-tef.0.12
∗ installed dune-configurator.3.21.1
∗ installed containers.3.18
∗ installed base.v0.17.3
∗ installed stdio.v0.17.0
∗ installed ctypes.0.24.0
∗ installed flint.0.4.2
∗ installed ppxlib.0.37.0
∗ installed menhir.20250912
∗ 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_hash.v0.17.0
∗ installed ppx_assert.v0.17.0
∗ installed ppx_base.v0.17.0
∗ installed dolmen.0.10
∗ installed farith.0.1
∗ installed jst-config.v0.17.0
∗ installed dolmen_type.0.10
∗ installed time_now.v0.17.0
∗ installed dolmen_loop.0.10
∗ installed ppx_inline_test.v0.17.1
∗ installed colibri2.0.5
Done.
<><> mlcuddidl.3.0.8 installed successfully <><><><><><><><><><><><><><><><><><>
=> For supporting ocaml 5 some modules are removed compared to the release
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:15.59 ---> saved as "908104bbe91b80162f6d03cd42dc71dbda6d2cea30d1622ee1d7004bd4429074"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibri2.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
↻ colibri2 0.5 (pinned)
=== install 1 package
∗ 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
∗ installed colibri2.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:16.39 ---> saved as "b2a662784e520e535a91b4409a58cb2306a93fa553abade00fd9b9d46870af28"
/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 \"\\\"archlinux\\\"\"; 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"))
The following actions will be performed:
=== recompile 1 package
↻ colibri2 0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [colibri2: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibri2" "-j" "255" "--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.20 seconds.
- OK
Processing 2/4: [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
⊘ removed colibri2.0.5
∗ installed colibri2.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:17.17 ---> saved as "94bba6dda666133c48865843a4422674c21d244ef12272a3a0ae057f52582740"
Job succeeded
2026-03-12 11:17.50: Job succeeded