(for PR #29484)
2026-03-12 11:12.27: New job: test colibrics.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
on archlinux-ocaml-4.14/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-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
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 "\"archlinux\""; 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 "\"archlinux\""; 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.27: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc-colibrics.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.27: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc)
(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 \"\\\"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\" != '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 \"\\\"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\" != '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.27: Waiting for resource in pool OCluster
2026-03-12 11:12.31: Waiting for worker…
2026-03-12 11:13.49: Got resource from pool OCluster
Building on phoebe
All commits already cached
Updating files: 92% (17054/18436)
Updating files: 93% (17146/18436)
Updating files: 94% (17330/18436)
Updating files: 95% (17515/18436)
Updating files: 96% (17699/18436)
Updating files: 97% (17883/18436)
Updating files: 98% (18068/18436)
Updating files: 99% (18252/18436)
Updating files: 100% (18436/18436)
Updating files: 100% (18436/18436), done.
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-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc)
2026-03-12 11:15.13 ---> using "defecf98fb6f641e065b799254b3c5c2968572b44e0295065c234fad52a6afe3" 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:15.13 ---> using "f751fdf01351e78d896c907353de30cfda207d18430617ae2b0053c521b16039" 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 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-12 11:15.13 ---> using "cf049c20f36a20b71fc8f8859551e5548a66e77585344418c35085917a36d17b" 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 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-12 11:15.13 ---> using "156cd3919581b4ed59e130881fe979b51263d70a65dd7375c417031f90284d42" 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:15.13 ---> using "16dbf86c224f68e5cc760fb73511cd0f76aa8cdceeb839da2f5152ab0f39180c" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:15.32 ---> saved as "2daa19c473415a7f201963a2cd1190b59c8af642680e28a1bd3fb69d38d0c7c0"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:15.56 ---> saved as "ccc51f5d23a469503540fc19e89d9fa9b17b891fbba6a6740216589731159ccb"
/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:15.56 ---> saved as "e3d5b72d207fa39e329f55e6b618ed5792f1d6f1e6bddbe4c9c0128c7f04b4ad"
/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:15.58 ---> saved as "200c157db09ab0cd14c1dfca813449c29ffadd147aaaeb91a51cf90b912a9054"
/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 \"\\\"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\" != '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 75 packages
∗ base v0.16.4 [required by colibri2]
∗ camlidl 1.13 [required by mlcuddidl]
∗ cmdliner 2.1.0 [required by colibrics]
∗ colibri2 0.5 [required by colibrics]
∗ colibrics 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 colibrics]
∗ dolmen_loop 0.10 [required by colibrics]
∗ dolmen_type 0.10 [required by colibrics]
∗ dune 3.21.1 [required by colibrics]
∗ 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.16.0 [required by time_now]
∗ jingoo 1.5.2 [required by colibrics]
∗ jst-config v0.16.0 [required by time_now]
∗ logs 0.10.0 [required by colibrics]
∗ menhir 20250912 [required by jingoo, why3]
∗ 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.12.4 [required by ppxlib]
∗ ocamlbuild 0.16.1 [required by mlcuddidl, uucp]
∗ ocamlfind 1.9.8 [required by why3]
∗ ocamlgraph 2.2.0 [required by colibri2, why3]
∗ ocplib-simplex 0.5.1 [required by colibri2]
∗ pp_loc 2.1.0 [required by dolmen_loop]
∗ ppx_assert v0.16.0 [required by jst-config]
∗ ppx_base v0.16.0 [required by time_now]
∗ ppx_cold v0.16.0 [required by ppx_base]
∗ ppx_compare v0.16.0 [required by ppx_hash]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.0.3 [required by ppx_deriving_yojson, colibri2, jingoo, why3]
∗ ppx_deriving_yojson 3.9.1 [required by colibrics]
∗ ppx_enumerate v0.16.0 [required by ppx_base]
∗ ppx_globalize v0.16.0 [required by ppx_base]
∗ ppx_hash v0.16.0 [required by colibri2]
∗ ppx_here v0.16.0 [required by colibri2]
∗ ppx_inline_test v0.16.1 [required by colibri2]
∗ ppx_optcomp v0.16.0 [required by colibri2]
∗ ppx_sexp_conv v0.16.0 [required by why3]
∗ ppxlib 0.35.0 [required by ppx_deriving_yojson]
∗ qcheck-core 0.91 [required by colibri2]
∗ re 1.14.0 [required by colibri2, jingoo]
∗ seq base [required by dolmen]
∗ sexplib0 v0.16.0 [required by base]
∗ spelll 0.4 [required by dolmen_type]
∗ stdio v0.16.0 [required by ppx_optcomp]
∗ stdlib-shims 0.3.0 [required by ppxlib, spelll, integers]
∗ time_now v0.16.0 [required by ppx_inline_test]
∗ topkg 1.1.1 [required by uucp]
∗ trace 0.12 [required by colibri2]
∗ trace-tef 0.12 [required by colibri2]
∗ uucp 17.0.0 [required by jingoo]
∗ uutf 1.0.4 [required by jingoo]
∗ why3 1.8.2 [required by colibrics]
∗ yojson 3.0.0 [required by colibrics]
∗ zarith 1.14 [required by colibrics]
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.16.4 (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)
∗ installed conf-pkg-config.4
∗ installed conf-m4.1
∗ installed camlidl.1.13
⬇ retrieved containers.3.18 (cached)
∗ installed conf-gmp.5
∗ installed conf-flint.3.0
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved csexp.1.5.2 (cached)
⬇ retrieved ctypes.0.24.0 (cached)
∗ installed conf-mpfr.3
⬇ 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)
⬇ retrieved jane-street-headers.v0.16.0 (cached)
⬇ retrieved jingoo.1.5.2 (cached)
⬇ retrieved jst-config.v0.16.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.12.4 (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.16.0 (cached)
⬇ retrieved ppx_base.v0.16.0 (cached)
⬇ retrieved ppx_cold.v0.16.0 (cached)
⬇ retrieved ppx_compare.v0.16.0 (cached)
⬇ retrieved ppx_derivers.1.2.1 (cached)
⬇ retrieved ppx_deriving.6.0.3 (cached)
⬇ retrieved ppx_deriving_yojson.3.9.1 (cached)
⬇ retrieved ppx_enumerate.v0.16.0 (cached)
⬇ retrieved ppx_globalize.v0.16.0 (cached)
⬇ retrieved ppx_hash.v0.16.0 (cached)
⬇ retrieved ppx_here.v0.16.0 (cached)
⬇ retrieved ppx_inline_test.v0.16.1 (cached)
⬇ retrieved ppx_optcomp.v0.16.0 (cached)
⬇ retrieved ppx_sexp_conv.v0.16.0 (cached)
⬇ retrieved ppxlib.0.35.0 (cached)
⬇ retrieved qcheck-core.0.91 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved seq.base (cached)
∗ installed seq.base
⬇ retrieved sexplib0.v0.16.0 (cached)
⬇ retrieved spelll.0.4 (cached)
⬇ retrieved stdio.v0.16.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved time_now.v0.16.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 mtime.2.1.0
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed logs.0.10.0
∗ installed dune.3.21.1
∗ installed mlcuddidl.3.0.8
∗ installed cppo.1.8.0
∗ installed csexp.1.5.2
∗ installed either.1.0.0
∗ installed jane-street-headers.v0.16.0
∗ installed menhirCST.20250912
∗ installed ppx_derivers.1.2.1
∗ installed gen.1.1
∗ installed menhirLib.20250912
∗ installed menhirSdk.20250912
∗ installed ocaml-compiler-libs.v0.12.4
∗ installed ocplib-simplex.0.5.1
∗ installed pp_loc.2.1.0
∗ installed sexplib0.v0.16.0
∗ installed stdlib-shims.0.3.0
∗ installed colibrilib.0.5
∗ installed dune-build-info.3.21.1
∗ installed trace.0.12
∗ installed yojson.3.0.0
∗ installed spelll.0.4
∗ installed re.1.14.0
∗ installed qcheck-core.0.91
∗ installed integers.0.7.0
∗ installed trace-tef.0.12
∗ installed ocamlgraph.2.2.0
∗ installed dune-configurator.3.21.1
∗ installed containers.3.18
∗ installed base.v0.16.4
∗ installed ctypes.0.24.0
∗ installed stdio.v0.16.0
∗ installed flint.0.4.2
∗ installed menhir.20250912
∗ installed ppxlib.0.35.0
∗ installed ppx_globalize.v0.16.0
∗ installed ppx_optcomp.v0.16.0
∗ installed ppx_cold.v0.16.0
∗ installed ppx_here.v0.16.0
∗ installed ppx_compare.v0.16.0
∗ installed ppx_enumerate.v0.16.0
∗ installed uucp.17.0.0
∗ installed ppx_sexp_conv.v0.16.0
∗ installed ppx_deriving.6.0.3
∗ installed ppx_hash.v0.16.0
∗ installed ppx_deriving_yojson.3.9.1
∗ installed ppx_assert.v0.16.0
∗ installed ppx_base.v0.16.0
∗ installed farith.0.1
∗ installed jingoo.1.5.2
∗ installed dolmen.0.10
∗ installed jst-config.v0.16.0
∗ installed time_now.v0.16.0
∗ installed dolmen_type.0.10
∗ installed ppx_inline_test.v0.16.1
∗ installed dolmen_loop.0.10
∗ installed colibri2.0.5
∗ installed why3.1.8.2
∗ installed colibrics.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:20.42 ---> saved as "afdf095613b5207ea0fb916dd5caf3e7601744dfef8bf5d03674f01ec1794b58"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colibrics.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
↻ 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:20.57 ---> saved as "772502b67775cc8c6e9f6b53b1b9545e35d301f73ad0c59f7126e4cb8f84fa76"
/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 \"\\\"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\" != '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
↻ 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" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.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/4.14/.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:21.11 ---> saved as "0f417cb111f22fa4e0dd88b3efb7512c09e6854a75919df13ee1bd810b08566d"
Job succeeded
2026-03-12 11:21.19: Job succeeded