(for PR #29484)

2026-03-12 11:12.28: New job: test colibrics.0.5, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
                              on debian-13-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:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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-13\""; 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-13\""; 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.28: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-colibrics.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.28: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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-13\\\"\"; 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-13\\\"\"; 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.28: Waiting for resource in pool OCluster
2026-03-12 11:12.34: Waiting for worker…
2026-03-12 11:17.10: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  90% (16709/18436)
Updating files:  91% (16777/18436)
Updating files:  92% (16962/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.
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 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-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
d1a4c61b613c: Already exists
0195a6679dc6: Already exists
410dfa46d7be: Already exists
b7b221f39cbe: Already exists
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-12 11:18.22 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-03-12 11:18.22 ---> using "71c54fe77889e70df52e1de8b3d6fc74acda96a883ad760ac40b946ae5c6b3a1" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, 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:19.34 ---> saved as "12ebc69d55239d841f08ce6e3756fc8c4b2daae5f6b7e6487e141f9e4f895a1a"

/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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# 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:19.39 ---> saved as "5113fb9cc79095ce4dbda04010b525c008e7152a3e42e493b3faef0c95a0a76d"

/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:19.50 ---> saved as "1ea43d32abe33c3251bc75ba7854896fc11c9445beed271216ccc024c0735f17"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:20.04 ---> saved as "15c167e3827acc5d44f003db6f31f6d4d93eaf5f640336ddba87735a35887a53"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:20.25 ---> saved as "1a5669abbc11d0f620a3f2ff98a1a19c12459ba94e13004e536e1221ac8162bc"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [109 kB]
- Fetched 199 kB in 0s (1842 kB/s)
- Reading package lists...
- 
2026-03-12 11:20.28 ---> saved as "0603e80840381d4a57384a46df82b03b3f395dd303a4b34dcd8c76c0fc9301c3"

/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:20.29 ---> saved as "199ceb00ce656e0d38055295bfc030112eb80917218c75b6731326d18f6b6179"

/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-13\\\"\"; 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 cmdliner            2.1.0    [required by colibrics]
  - install conf-m4             1        [required by mlcuddidl]
  - install seq                 base     [required by dolmen]
  - install conf-gmp            5        [required by zarith, conf-mpfr]
  - install ocamlfind           1.9.8    [required by why3]
  - install ocamlbuild          0.16.1   [required by mlcuddidl, uucp]
  - install dune                3.21.1   [required by colibrics]
  - install conf-flint          3.0      [required by flint]
  - install conf-pkg-config     4        [required by flint]
  - install camlidl             1.13     [required by mlcuddidl]
  - install topkg               1.1.1    [required by uucp]
  - install yojson              3.0.0    [required by colibrics]
  - install stdlib-shims        0.3.0    [required by ppxlib, spelll, integers]
  - install sexplib0            v0.16.0  [required by base]
  - install re                  1.14.0   [required by colibri2, jingoo]
  - install qcheck-core         0.91     [required by colibri2]
  - install ppx_derivers        1.2.1    [required by ppx_deriving]
  - install pp_loc              2.1.0    [required by dolmen_loop]
  - install ocamlgraph          2.2.0    [required by colibri2, why3]
  - install ocaml-compiler-libs v0.12.4  [required by ppxlib]
  - install menhirSdk           20250912 [required by menhir]
  - install menhirLib           20250912 [required by menhir]
  - install menhirCST           20250912 [required by menhir]
  - install jane-street-headers v0.16.0  [required by time_now]
  - install gen                 1.1      [required by colibri2]
  - install either              1.0.0    [required by containers]
  - install dune-build-info     3.21.1   [required by colibri2]
  - install csexp               1.5.2    [required by dune-configurator]
  - install cppo                1.8.0    [required by ppx_deriving]
  - install zarith              1.14     [required by colibrics]
  - install conf-mpfr           3        [required by flint]
  - install mlcuddidl           3.0.8    [required by colibri2]
  - install uutf                1.0.4    [required by jingoo]
  - install uucp                17.0.0   [required by jingoo]
  - install mtime               2.1.0    [required by trace, trace-tef]
  - install hmap                0.8.1    [required by dolmen]
  - install fmt                 0.11.0   [required by dolmen]
  - install spelll              0.4      [required by dolmen_type]
  - install integers            0.7.0    [required by ctypes]
  - install ppxlib              0.35.0   [required by ppx_deriving_yojson]
  - install menhir              20250912 [required by jingoo, why3]
  - install dune-configurator   3.21.1   [required by containers, base, flint]
  - install colibrilib          0.5      [required by colibri2]
  - install trace               0.12     [required by colibri2]
  - install logs                0.10.0   [required by colibrics]
  - install ppx_deriving        6.0.3    [required by ppx_deriving_yojson, colibri2, jingoo, why3]
  - install dolmen              0.10     [required by colibrics]
  - install ctypes              0.24.0   [required by flint]
  - install containers          3.18     [required by colibri2]
  - install base                v0.16.4  [required by colibri2]
  - install trace-tef           0.12     [required by colibri2]
  - install ocplib-simplex      0.5.1    [required by colibri2]
  - install ppx_deriving_yojson 3.9.1    [required by colibrics]
  - install jingoo              1.5.2    [required by colibrics]
  - install dolmen_type         0.10     [required by colibrics]
  - install flint               0.4.2    [required by colibri2]
  - install stdio               v0.16.0  [required by ppx_optcomp]
  - install ppx_sexp_conv       v0.16.0  [required by why3]
  - install ppx_here            v0.16.0  [required by colibri2]
  - install ppx_globalize       v0.16.0  [required by ppx_base]
  - install ppx_enumerate       v0.16.0  [required by ppx_base]
  - install ppx_compare         v0.16.0  [required by ppx_hash]
  - install ppx_cold            v0.16.0  [required by ppx_base]
  - install dolmen_loop         0.10     [required by colibrics]
  - install ppx_optcomp         v0.16.0  [required by colibri2]
  - install why3                1.8.2    [required by colibrics]
  - install ppx_hash            v0.16.0  [required by colibri2]
  - install ppx_assert          v0.16.0  [required by jst-config]
  - install ppx_base            v0.16.0  [required by time_now]
  - install farith              0.1      [required by colibri2]
  - install jst-config          v0.16.0  [required by time_now]
  - install time_now            v0.16.0  [required by ppx_inline_test]
  - install ppx_inline_test     v0.16.1  [required by colibri2]
  - install colibri2            0.5      [required by colibrics]
  - install colibrics           0.5*
===== 75 to install =====

The following system packages will first need to be installed:
    libflint-dev libgmp-dev libmpfr-dev m4 pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libflint-dev" "libgmp-dev" "libmpfr-dev" "m4" "pkg-config"
- Selecting previously unselected package libflint19: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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-libflint19_3.1.3-2_amd64.deb ...
- Unpacking libflint19:amd64 (3.1.3-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../1-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../2-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libmpfr-dev:amd64.
- Preparing to unpack .../3-libmpfr-dev_4.2.2-1_amd64.deb ...
- Unpacking libmpfr-dev:amd64 (4.2.2-1) ...
- Selecting previously unselected package libflint-dev.
- Preparing to unpack .../4-libflint-dev_3.1.3-2_amd64.deb ...
- Unpacking libflint-dev (3.1.3-2) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../5-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../6-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libflint19:amd64 (3.1.3-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libmpfr-dev:amd64 (4.2.2-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libflint-dev (3.1.3-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (cached)
-> retrieved camlidl.1.13  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved colibri2.0.5  (cached)
-> retrieved colibrics.0.5  (cached)
-> installed camlidl.1.13
-> retrieved colibrilib.0.5  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-mpfr.3  (cached)
-> installed conf-gmp.5
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> installed conf-flint.3.0
-> installed conf-mpfr.3
-> retrieved containers.3.18  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> retrieved dolmen.0.10  (cached)
-> retrieved dolmen_loop.0.10  (cached)
-> retrieved dolmen_type.0.10  (cached)
-> retrieved dune.3.21.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved dune-build-info.3.21.1  (cached)
-> retrieved 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  (cached)
-> retrieved menhirCST.20250912  (cached)
-> retrieved menhirLib.20250912  (cached)
-> retrieved menhirSdk.20250912  (cached)
-> 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  (cached)
-> retrieved 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 fmt.0.11.0
-> installed uutf.1.0.4
-> installed logs.0.10.0
-> installed mlcuddidl.3.0.8
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed either.1.0.0
-> installed gen.1.1
-> installed jane-street-headers.v0.16.0
-> installed menhirCST.20250912
-> installed menhirSdk.20250912
-> installed ocplib-simplex.0.5.1
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed colibrilib.0.5
-> installed menhirLib.20250912
-> installed trace.0.12
-> installed ocaml-compiler-libs.v0.12.4
-> installed spelll.0.4
-> installed integers.0.7.0
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed trace-tef.0.12
-> installed dune-build-info.3.21.1
-> installed qcheck-core.0.91
-> installed ocamlgraph.2.2.0
-> installed dune-configurator.3.21.1
-> installed containers.3.18
-> installed ctypes.0.24.0
-> installed base.v0.16.4
-> 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_enumerate.v0.16.0
-> installed ppx_compare.v0.16.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 uucp.17.0.0
-> installed ppx_base.v0.16.0
-> installed farith.0.1
-> installed dolmen.0.10
-> installed jst-config.v0.16.0
-> installed jingoo.1.5.2
-> 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.
# Run eval $(opam env) to update the current shell environment
2026-03-12 11:23.24 ---> saved as "de7a6b6b5a4be27b57ed8717ac06af02ca22721e89f18c92d0bda30a88ff4ec1"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test colibrics.0.5) || true"))
The following actions will be performed:
  - recompile colibrics 0.5*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   colibrics.0.5
-> installed colibrics.0.5
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-12 11:23.39 ---> saved as "255f42e10a4eab61545ea68342ee6d913cb41127d96eef295187076c85d9a62e"

/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-13\\\"\"; 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 colibrics 0.5*

<><> 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.
# Run eval $(opam env) to update the current shell environment
2026-03-12 11:23.56 ---> saved as "d52f145243e0eec8e2b8629000a27f941600a48cc2f1faee764c6aefa4f95137"
Job succeeded
2026-03-12 11:24.05: Job succeeded