(for PR #29484)

2026-03-12 11:12.26: New job: test colibrilib.0.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
                              on fedora-42-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:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn colibrilib.0.5 0.5
RUN opam reinstall colibrilib.0.5; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'colibrilib.0.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test colibrilib.0.5) || true
RUN opam reinstall --with-test --verbose colibrilib.0.5; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'colibrilib.0.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-12 11:12.26: Using cache hint "ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da-colibrilib.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.26: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn colibrilib.0.5 0.5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall colibrilib.0.5;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'colibrilib.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test colibrilib.0.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose colibrilib.0.5;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'colibrilib.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-12 11:12.26: Waiting for resource in pool OCluster
2026-03-12 11:12.31: Waiting for worker…
2026-03-12 11:13.25: 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:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da)
Unable to find image 'ocaml/opam:fedora-42-ocaml-4.14@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da' locally
docker.io/ocaml/opam@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da: Pulling from ocaml/opam
bcbfb8588268: Pulling fs layer
a63ad0cf811e: Pulling fs layer
26762bf4e806: Pulling fs layer
14827f2f8794: Pulling fs layer
849012283632: Pulling fs layer
425fb6fec6ea: Pulling fs layer
a3a231378de2: Pulling fs layer
e4aa6ada67a1: Pulling fs layer
fa5dc5ca76a9: Pulling fs layer
a63ad0cf811e: Waiting
beb8f28f6403: Pulling fs layer
26762bf4e806: Waiting
14827f2f8794: Waiting
d9073b6f4f34: Pulling fs layer
849012283632: Waiting
425fb6fec6ea: Waiting
a3a231378de2: Waiting
cc61720b498b: Pulling fs layer
ec16e13560a9: Pulling fs layer
e4aa6ada67a1: Waiting
fa5dc5ca76a9: Waiting
c915edff33e9: Pulling fs layer
47777bb2b205: Pulling fs layer
fdfa6e41431a: Pulling fs layer
b8e7506942e5: Pulling fs layer
c815a02c550d: Pulling fs layer
0471d25f745f: Pulling fs layer
f847762d1393: Pulling fs layer
4f4fb700ef54: Pulling fs layer
02f11825812a: Pulling fs layer
5f52b149c240: Pulling fs layer
e26940ad43ab: Pulling fs layer
bcdaa287b766: Pulling fs layer
001da6cbc747: Pulling fs layer
beb8f28f6403: Waiting
d9073b6f4f34: Waiting
cc61720b498b: Waiting
0ade5152d5a1: Pulling fs layer
ec16e13560a9: Waiting
bcbfb8588268: Waiting
19cc0ca1cdac: Pulling fs layer
c915edff33e9: Waiting
a5bce2399eb8: Pulling fs layer
47777bb2b205: Waiting
b8e7506942e5: Waiting
e69f527a5db8: Pulling fs layer
f847762d1393: Waiting
1b3444ad203f: Pulling fs layer
c815a02c550d: Waiting
4f4fb700ef54: Waiting
52c403230724: Pulling fs layer
02f11825812a: Waiting
fdfa6e41431a: Waiting
3fa0159df738: Pulling fs layer
0471d25f745f: Waiting
bcdaa287b766: Waiting
20ee17bfd1e1: Pulling fs layer
5f52b149c240: Waiting
e26940ad43ab: Waiting
0ade5152d5a1: Waiting
de0a57e48266: Pulling fs layer
e69f527a5db8: Waiting
0e6a1b38bd96: Pulling fs layer
19cc0ca1cdac: Waiting
52c403230724: Waiting
001da6cbc747: Waiting
e867e2bef61d: Pulling fs layer
3fa0159df738: Waiting
a5d06b20b20b: Pulling fs layer
e867e2bef61d: Waiting
9036bb3a5517: Pulling fs layer
6727305d8458: Pulling fs layer
a5d06b20b20b: Waiting
9036bb3a5517: Waiting
995dda69cc16: Pulling fs layer
b74f58638dc8: Pulling fs layer
2775868513f5: Pulling fs layer
20ee17bfd1e1: Waiting
b74f58638dc8: Waiting
6727305d8458: Waiting
2775868513f5: Waiting
995dda69cc16: Waiting
a63ad0cf811e: Download complete
bcbfb8588268: Download complete
849012283632: Verifying Checksum
849012283632: Download complete
bcbfb8588268: Pull complete
425fb6fec6ea: Download complete
a63ad0cf811e: Pull complete
26762bf4e806: Verifying Checksum
26762bf4e806: Download complete
a3a231378de2: Download complete
e4aa6ada67a1: Verifying Checksum
e4aa6ada67a1: Download complete
fa5dc5ca76a9: Verifying Checksum
fa5dc5ca76a9: Download complete
beb8f28f6403: Verifying Checksum
beb8f28f6403: Download complete
d9073b6f4f34: Verifying Checksum
d9073b6f4f34: Download complete
cc61720b498b: Verifying Checksum
cc61720b498b: Download complete
c915edff33e9: Download complete
ec16e13560a9: Verifying Checksum
ec16e13560a9: Download complete
26762bf4e806: Pull complete
47777bb2b205: Verifying Checksum
47777bb2b205: Download complete
fdfa6e41431a: Verifying Checksum
fdfa6e41431a: Download complete
b8e7506942e5: Verifying Checksum
b8e7506942e5: Download complete
c815a02c550d: Verifying Checksum
c815a02c550d: Download complete
0471d25f745f: Download complete
f847762d1393: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
02f11825812a: Download complete
5f52b149c240: Verifying Checksum
5f52b149c240: Download complete
e26940ad43ab: Verifying Checksum
e26940ad43ab: Download complete
bcdaa287b766: Verifying Checksum
bcdaa287b766: Download complete
001da6cbc747: Download complete
0ade5152d5a1: Verifying Checksum
0ade5152d5a1: Download complete
19cc0ca1cdac: Download complete
14827f2f8794: Verifying Checksum
14827f2f8794: Download complete
a5bce2399eb8: Verifying Checksum
a5bce2399eb8: Download complete
52c403230724: Download complete
e69f527a5db8: Download complete
1b3444ad203f: Download complete
3fa0159df738: Verifying Checksum
3fa0159df738: Download complete
de0a57e48266: Download complete
e867e2bef61d: Download complete
a5d06b20b20b: Download complete
9036bb3a5517: Download complete
20ee17bfd1e1: Verifying Checksum
20ee17bfd1e1: Download complete
6727305d8458: Verifying Checksum
6727305d8458: Download complete
995dda69cc16: Download complete
b74f58638dc8: Verifying Checksum
b74f58638dc8: Download complete
2775868513f5: Verifying Checksum
2775868513f5: Download complete
14827f2f8794: Pull complete
849012283632: Pull complete
425fb6fec6ea: Pull complete
a3a231378de2: Pull complete
e4aa6ada67a1: Pull complete
fa5dc5ca76a9: Pull complete
beb8f28f6403: Pull complete
d9073b6f4f34: Pull complete
cc61720b498b: Pull complete
ec16e13560a9: Pull complete
c915edff33e9: Pull complete
47777bb2b205: Pull complete
fdfa6e41431a: Pull complete
b8e7506942e5: Pull complete
c815a02c550d: Pull complete
0471d25f745f: Pull complete
f847762d1393: Pull complete
4f4fb700ef54: Pull complete
02f11825812a: Pull complete
5f52b149c240: Pull complete
e26940ad43ab: Pull complete
bcdaa287b766: Pull complete
001da6cbc747: Pull complete
0ade5152d5a1: Pull complete
19cc0ca1cdac: Pull complete
a5bce2399eb8: Pull complete
e69f527a5db8: Pull complete
1b3444ad203f: Pull complete
52c403230724: Pull complete
3fa0159df738: Pull complete
0e6a1b38bd96: Verifying Checksum
0e6a1b38bd96: Download complete
20ee17bfd1e1: Pull complete
de0a57e48266: Pull complete
0e6a1b38bd96: Pull complete
e867e2bef61d: Pull complete
a5d06b20b20b: Pull complete
9036bb3a5517: Pull complete
6727305d8458: Pull complete
995dda69cc16: Pull complete
b74f58638dc8: Pull complete
2775868513f5: Pull complete
Digest: sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da
Status: Downloaded newer image for ocaml/opam@sha256:b6aa00a2654d3ee438c6ad8c0671b21737264aa421886a5b446bc09bf89143da
2026-03-12 11:15.34 ---> using "4f4aad99373b064eb667a9f696f7c6d39ac750bdfb8a8b7f98f15f1c5afd5dcd" 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.34 ---> using "20911cbf85592b0aa5ed4677b5b9647deace104570a70f76f53a37b2c5f407b7" 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:15.34 ---> using "79891501f4b82044246c3ac06abe2b77b5f7f723a65768644cbac1b80c9a4a6a" 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=fedora os-version=42
# 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       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.34 ---> using "86fdaa4d94cc0167852d981a6632d1a6a972fe820c609ef5da3f8897f3d62697" 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.34 ---> using "5ce81cfef8afd01e5edf9f9f60c77f2ae3ca7012d095529f484ea8d19002ab99" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:15.43 ---> saved as "47e9fbc461a366e86ba33c2259f485e087b5f071330f07a46cde71d1a5bd3833"

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 42 - x86_64 - Updates           100% |   9.6 KiB/s |  17.2 KiB |  00m02s
- Repositories loaded.
- Metadata cache created.
2026-03-12 11:16.09 ---> saved as "53963df74d6563a3df60f01697cd8790706419ee6dd06bf2827647c55383f980"

/home/opam: (run (shell "opam pin add -k version -yn colibrilib.0.5 0.5"))
colibrilib is now pinned to version 0.5
2026-03-12 11:16.10 ---> saved as "363de44f439d733f694320a9cb633b6b794ab87759978dc4a7e4e6f61a3893eb"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall colibrilib.0.5;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'colibrilib.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
colibrilib.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install colibrilib      0.5 (pinned)
  - install conf-gmp        5            [required by zarith]
  - install conf-pkg-config 4            [required by zarith]
  - install dune            3.21.1       [required by colibrilib]
  - install ocamlfind       1.9.8        [required by zarith]
  - install zarith          1.14         [required by colibrilib]

The following system packages will first need to be installed:
    gmp-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/sbin/sudo "yum" "install" "-y" "gmp-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package    Arch   Version        Repository      Size
- Installing:
-  gmp-devel x86_64 1:6.3.0-4.fc42 fedora     352.3 KiB
- Installing dependencies:
-  gmp-c++   x86_64 1:6.3.0-4.fc42 fedora      27.6 KiB
- 
- Transaction Summary:
-  Installing:         2 packages
- 
- Total size of inbound packages is 193 KiB. Need to download 193 KiB.
- After this operation, 380 KiB extra will be used (install 380 KiB, remove 0 B).
- [1/2] gmp-c++-1:6.3.0-4.fc42.x86_64     100% | 528.4 KiB/s |  18.5 KiB |  00m00s
- [2/2] gmp-devel-1:6.3.0-4.fc42.x86_64   100% |   4.4 MiB/s | 174.4 KiB |  00m00s
- --------------------------------------------------------------------------------
- [2/2] Total                             100% |   1.0 MiB/s | 192.9 KiB |  00m00s
- Running transaction
- [1/4] Verify package files              100% |   2.0 KiB/s |   2.0   B |  00m00s
- [2/4] Prepare transaction               100% |  48.0   B/s |   2.0   B |  00m00s
- [3/4] Installing gmp-c++-1:6.3.0-4.fc42 100% |  13.9 MiB/s |  28.5 KiB |  00m00s
- [4/4] Installing gmp-devel-1:6.3.0-4.fc 100% |   7.1 MiB/s | 354.1 KiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.3.0-4.fc42.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved colibrilib.0.5  (cached)
-> retrieved conf-gmp.5  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.21.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.21.1
-> installed colibrilib.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:16.41 ---> saved as "4741fa38855fd651bd9b32d1ad37cbabc0fb6bec45262d2deaae41dfb2542bf3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test colibrilib.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile colibrilib 0.5 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".

#=== ERROR while compiling colibrilib.0.5 =====================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://git.frama-c.com/api/v4/projects/879/packages/generic/colibri2/0.5/colibri2-0.5.tbz)
# path                 ~/.opam/4.14/.opam-switch/build/colibrilib.0.5
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest
# exit-code            1
# env-file             ~/.opam/log/colibrilib-7-cd54b5.env
# output-file          ~/.opam/log/colibrilib-7-cd54b5.out
### output ###
# File "colibri2/tests/cram/dune", line 2, characters 16-24:
# 2 |  (deps (package colibri2)))
#                     ^^^^^^^^
# Error: Package colibri2 does not exist
# File "colibri2/tests/dune", line 25, characters 21-29:
# 25 | (cram (deps (package colibri2)))
#                           ^^^^^^^^
# Error: Package colibri2 does not exist



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib 0.5
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:16.47 ---> saved as "65e27f1d6e8a134c83da74598c79bf762c190e92c119abbe4dc6718ad12df58c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose colibrilib.0.5;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'colibrilib.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile colibrilib 0.5 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [colibrilib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibrilib" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/colibrilib.0.5)
- File "colibri2/tests/cram/dune", line 2, characters 16-24:
- 2 |  (deps (package colibri2)))
-                     ^^^^^^^^
- Error: Package colibri2 does not exist
- File "colibri2/tests/dune", line 25, characters 21-29:
- 25 | (cram (deps (package colibri2)))
-                           ^^^^^^^^
- Error: Package colibri2 does not exist
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".

#=== ERROR while compiling colibrilib.0.5 =====================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://git.frama-c.com/api/v4/projects/879/packages/generic/colibri2/0.5/colibri2-0.5.tbz)
# path                 ~/.opam/4.14/.opam-switch/build/colibrilib.0.5
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest
# exit-code            1
# env-file             ~/.opam/log/colibrilib-8-9f33a4.env
# output-file          ~/.opam/log/colibrilib-8-9f33a4.out
### output ###
# File "colibri2/tests/cram/dune", line 2, characters 16-24:
# 2 |  (deps (package colibri2)))
#                     ^^^^^^^^
# Error: Package colibri2 does not exist
# File "colibri2/tests/dune", line 25, characters 21-29:
# 25 | (cram (deps (package colibri2)))
#                           ^^^^^^^^
# Error: Package colibri2 does not exist



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib 0.5
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose colibrilib.0.5' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose colibrilib.0.5;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'colibrilib.0.5' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-03-12 11:17.22: Job failed: Failed: Build failed
2026-03-12 11:17.22: Log analysis:
2026-03-12 11:17.22: >>> 
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".
 (score = 20)
2026-03-12 11:17.22: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:17.22: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:17.22: >>> 
[ERROR] The compilation of colibrilib.0.5 failed at "dune build -p colibrilib -j 255 --promote-install-files=false @install @runtest".
 (score = 20)
2026-03-12 11:17.22: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:17.22: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:17.22: Package colibri2 does not exist