Build:
  1. 0
2026-03-12 11:12.27: New job: test colibrilib-why3.0.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
                              on macos-homebrew-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 macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn colibrilib-why3.0.5 0.5
RUN opam reinstall colibrilib-why3.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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'colibrilib-why3.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-why3.0.5) || true
RUN opam reinstall --with-test --verbose colibrilib-why3.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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'colibrilib-why3.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 "macos-homebrew-ocaml-4.14-colibrilib-why3.0.5-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:12.27: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn colibrilib-why3.0.5 0.5"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall colibrilib-why3.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 \"\\\"macos-homebrew\\\"\"; 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-why3.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-why3.0.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose colibrilib-why3.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 \"\\\"macos-homebrew\\\"\"; 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-why3.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.29: Waiting for worker…
2026-03-12 11:22.33: Got resource from pool OCluster
Building on i7-worker-03
All commits already cached
Updating files:  30% (5712/18436)
Updating files:  31% (5716/18436)
Updating files:  32% (5900/18436)
Updating files:  33% (6084/18436)
Updating files:  34% (6269/18436)
Updating files:  35% (6453/18436)
Updating files:  36% (6637/18436)
Updating files:  37% (6822/18436)
Updating files:  38% (7006/18436)
Updating files:  39% (7191/18436)
Updating files:  40% (7375/18436)
Updating files:  41% (7559/18436)
Updating files:  42% (7744/18436)
Updating files:  43% (7928/18436)
Updating files:  44% (8112/18436)
Updating files:  45% (8297/18436)
Updating files:  46% (8481/18436)
Updating files:  47% (8665/18436)
Updating files:  48% (8850/18436)
Updating files:  49% (9034/18436)
Updating files:  50% (9218/18436)
Updating files:  51% (9403/18436)
Updating files:  52% (9587/18436)
Updating files:  53% (9772/18436)
Updating files:  54% (9956/18436)
Updating files:  55% (10140/18436)
Updating files:  56% (10325/18436)
Updating files:  57% (10509/18436)
Updating files:  58% (10693/18436)
Updating files:  59% (10878/18436)
Updating files:  60% (11062/18436)
Updating files:  61% (11246/18436)
Updating files:  61% (11249/18436)
Updating files:  62% (11431/18436)
Updating files:  63% (11615/18436)
Updating files:  64% (11800/18436)
Updating files:  65% (11984/18436)
Updating files:  66% (12168/18436)
Updating files:  67% (12353/18436)
Updating files:  68% (12537/18436)
Updating files:  69% (12721/18436)
Updating files:  70% (12906/18436)
Updating files:  71% (13090/18436)
Updating files:  72% (13274/18436)
Updating files:  73% (13459/18436)
Updating files:  74% (13643/18436)
Updating files:  75% (13827/18436)
Updating files:  76% (14012/18436)
Updating files:  77% (14196/18436)
Updating files:  78% (14381/18436)
Updating files:  79% (14565/18436)
Updating files:  80% (14749/18436)
Updating files:  81% (14934/18436)
Updating files:  82% (15118/18436)
Updating files:  83% (15302/18436)
Updating files:  84% (15487/18436)
Updating files:  85% (15671/18436)
Updating files:  86% (15855/18436)
Updating files:  87% (16040/18436)
Updating files:  88% (16224/18436)
Updating files:  89% (16409/18436)
Updating files:  90% (16593/18436)
Updating files:  91% (16777/18436)
Updating files:  92% (16962/18436)
Updating files:  93% (17146/18436)
Updating files:  93% (17256/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 macos-homebrew-ocaml-4.14)
2026-03-12 11:22.39 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-12 11:22.39 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-03-12 11:22.39 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (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=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 11
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "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       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-12 11:22.39 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-03-12 11:22.40 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-03-12 11:22.41 ---> using "f1b0741a973a74730d65f6e50f2a975e7354230deeb1557f100d2f2e6d4a04c0" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:22.42 ---> using "639016d78a40705f3f7b0aff3f05e857db4b3ebe4db829a6840ecebe358227b2" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:e4f27cef5f72bf7a99c748c0650fe3718fe661a56960dedaeec9c2c98de1d3bc
- #=#=#                                                                          

                                                                           0.7%
#                                                                          1.5%
#                                                                          2.3%
##                                                                         3.2%
##                                                                         4.0%
###                                                                        4.9%
####                                                                       5.8%
####                                                                       6.6%
#####                                                                      7.4%
- 
#####                                                                      8.2%
######                                                                     9.2%
#######                                                                   10.0%
#######                                                                   10.8%
########                                                                  11.6%
#########                                                                 12.5%
#########                                                                 13.4%
##########                                                                14.2%
##########                                                                15.0%
###########                                                               15.9%
############                                                              16.7%
############                                                              17.5%
- 
#############                                                             18.3%
#############                                                             19.3%
##############                                                            20.1%
###############                                                           20.9%
###############                                                           21.7%
################                                                          22.7%
################                                                          23.5%
#################                                                         24.3%
##################                                                        25.1%
##################                                                        26.0%
###################                                                       26.8%
- 
###################                                                       27.6%
####################                                                      28.5%
#####################                                                     29.4%
#####################                                                     30.2%
######################                                                    31.0%
######################                                                    31.8%
#######################                                                   32.8%
########################                                                  33.6%
########################                                                  34.4%
#########################                                                 35.2%
##########################                                                36.1%
- 
##########################                                                37.0%
###########################                                               37.8%
###########################                                               38.7%
############################                                              39.5%
#############################                                             40.3%
#############################                                             41.3%
##############################                                            42.1%
##############################                                            42.9%
###############################                                           43.7%
################################                                          44.5%
################################                                          45.4%
- 
#################################                                         46.4%
#################################                                         47.2%
##################################                                        48.0%
###################################                                       48.8%
###################################                                       49.8%
####################################                                      50.6%
####################################                                      51.4%
#####################################                                     52.3%
######################################                                    53.1%
######################################                                    53.9%
#######################################                                   54.8%
- 
########################################                                  55.6%
########################################                                  56.4%
#########################################                                 57.3%
#########################################                                 58.1%
##########################################                                59.1%
###########################################                               59.9%
###########################################                               60.7%
############################################                              61.6%
############################################                              62.4%
#############################################                             63.3%
- 
##############################################                            64.1%
##############################################                            65.0%
###############################################                           65.8%
###############################################                           66.6%
################################################                          67.4%
#################################################                         68.2%
#################################################                         69.2%
##################################################                        70.0%
##################################################                        70.8%
###################################################                       71.6%
####################################################                      72.6%
- 
####################################################                      73.4%
#####################################################                     74.2%
#####################################################                     75.0%
######################################################                    75.9%
#######################################################                   76.7%
#######################################################                   77.5%
########################################################                  78.4%
#########################################################                 79.3%
#########################################################                 80.1%
##########################################################                80.9%
##########################################################                81.7%
###########################################################               82.5%
- 
############################################################              83.5%
############################################################              84.3%
#############################################################             85.1%
#############################################################             86.0%
##############################################################            86.9%
###############################################################           87.7%
###############################################################           88.5%
################################################################          89.4%
################################################################          90.2%
#################################################################         91.0%
##################################################################        92.0%
- 
##################################################################        92.8%
###################################################################       93.7%
####################################################################      94.5%
####################################################################      95.3%
#####################################################################     96.2%
#####################################################################     97.1%
######################################################################    97.9%
#######################################################################   98.7%
#######################################################################   99.7%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.1.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-03-12 11:22.42 ---> using "ef8aee620fa36dde1ebcaf793a4cdb7a5d875ae61f80a54bdcc31ea41788ed6b" from cache

/: (run (shell "opam pin add -k version -yn colibrilib-why3.0.5 0.5"))
colibrilib-why3 is now pinned to version 0.5
2026-03-12 11:22.42 ---> using "9e84bd2138ab30f612dcbc3e6730d9a14dd15e02925296845ae31b00a23de6f7" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall colibrilib-why3.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 \"\\\"macos-homebrew\\\"\"; 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-why3.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-why3.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 24 packages
  - install colibrilib-why3   0.5 (pinned)
  - install conf-gmp          5            [required by zarith]
  - install conf-pkg-config   4            [required by zarith]
  - install csexp             1.5.2        [required by dune-private-libs]
  - install dune              3.21.1       [required by colibrilib-why3]
  - install dune-private-libs 3.21.1       [required by dune-site]
  - install dune-site         3.21.1       [required by why3find]
  - install dyn               3.21.1       [required by dune-private-libs]
  - install fs-io             3.21.1       [required by stdune]
  - install menhir            20260209     [required by why3]
  - install menhirCST         20260209     [required by menhir]
  - install menhirGLR         20260209     [required by menhir]
  - install menhirLib         20260209     [required by menhir]
  - install menhirSdk         20260209     [required by menhir]
  - install ocamlfind         1.9.8        [required by why3]
  - install ordering          3.21.1       [required by dyn, stdune]
  - install pp                2.0.0        [required by dune-private-libs]
  - install stdune            3.21.1       [required by dune-private-libs]
  - install terminal_size     0.2.0        [required by why3find]
  - install top-closure       3.21.1       [required by stdune]
  - install why3              1.8.2        [required by why3find]
  - install why3find          1.3.0        [required by colibrilib-why3]
  - install yojson            3.0.0        [required by why3find]
  - install zarith            1.14         [required by why3]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew 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/local/bin/brew "install" "gmp" "pkgconf"
- ==> Fetching downloads for: gmp and pkgconf
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ==> Pouring gmp--6.3.0.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/pkgconf/2.5.1: 28 files, 383.2KB
- ==> Running `brew cleanup pkgconf`...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved colibrilib-why3.0.5  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved dune.3.21.1, dune-private-libs.3.21.1, dune-site.3.21.1, dyn.3.21.1, fs-io.3.21.1, ordering.3.21.1, stdune.3.21.1, top-closure.3.21.1  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved terminal_size.0.2.0  (https://github.com/cryptosense/terminal_size/releases/download/v0.2.0/terminal_size-0.2.0.tbz)
-> retrieved why3.1.8.2  (cached)
-> retrieved why3find.1.3.0  (https://git.frama-c.com/pub/why3find/-/archive/1.3.0/why3find-1.3.0.tar.gz)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.21.1
-> installed terminal_size.0.2.0
-> installed pp.2.0.0
-> installed menhirSdk.20260209
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirCST.20260209
-> installed csexp.1.5.2
-> installed top-closure.3.21.1
-> installed ordering.3.21.1
-> installed fs-io.3.21.1
-> installed yojson.3.0.0
-> installed dyn.3.21.1
-> installed menhir.20260209
-> installed stdune.3.21.1
-> installed dune-private-libs.3.21.1
-> installed dune-site.3.21.1
-> installed why3.1.8.2
-> installed why3find.1.3.0
-> installed colibrilib-why3.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:22.43 ---> using "cc46ebd368739ba1c5a4b3b95215c4c5bc1dece68c4c85c4d513b9100c9bc62b" from cache

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

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

#=== ERROR while compiling colibrilib-why3.0.5 ================================#
# context              2.5.0 | macos/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.2/.opam-switch/build/colibrilib-why3.0.5
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib-why3 -j 11 --promote-install-files=false @install @runtest
# exit-code            1
# env-file             ~/.opam/log/colibrilib-why3-24138-89891c.env
# output-file          ~/.opam/log/colibrilib-why3-24138-89891c.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
# (cd _build/default/common && /Users/mac1000/.opam/4.14.2/bin/why3find doc q.mlw bound.mlw union.mlw modulo.mlw)
# Generated /Users/mac1000/.opam/4.14.2/.opam-switch/build/colibrilib-why3.0.5/_build/default/common/html/index.html



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

/: (run (shell  "opam reinstall --with-test --verbose colibrilib-why3.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 \"\\\"macos-homebrew\\\"\"; 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-why3.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-why3 0.5 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [colibrilib-why3: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colibrilib-why3" "-j" "11" "--promote-install-files=false" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/colibrilib-why3.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
- (cd _build/default/common && /Users/mac1000/.opam/4.14.2/bin/why3find doc q.mlw bound.mlw union.mlw modulo.mlw)
- Generated /Users/mac1000/.opam/4.14.2/.opam-switch/build/colibrilib-why3.0.5/_build/default/common/html/index.html
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 11 --promote-install-files=false @install @runtest".

#=== ERROR while compiling colibrilib-why3.0.5 ================================#
# context              2.5.0 | macos/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.2/.opam-switch/build/colibrilib-why3.0.5
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p colibrilib-why3 -j 11 --promote-install-files=false @install @runtest
# exit-code            1
# env-file             ~/.opam/log/colibrilib-why3-24473-cf7eb0.env
# output-file          ~/.opam/log/colibrilib-why3-24473-cf7eb0.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
# (cd _build/default/common && /Users/mac1000/.opam/4.14.2/bin/why3find doc q.mlw bound.mlw union.mlw modulo.mlw)
# Generated /Users/mac1000/.opam/4.14.2/.opam-switch/build/colibrilib-why3.0.5/_build/default/common/html/index.html



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build colibrilib-why3 0.5
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose colibrilib-why3.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-why3.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 "\"macos-homebrew\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'colibrilib-why3.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:23.05: Job failed: Failed: Build failed
2026-03-12 11:23.05: Log analysis:
2026-03-12 11:23.05: >>> 
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 11 --promote-install-files=false @install @runtest".
 (score = 20)
2026-03-12 11:23.05: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:23.05: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:23.05: >>> 
[ERROR] The compilation of colibrilib-why3.0.5 failed at "dune build -p colibrilib-why3 -j 11 --promote-install-files=false @install @runtest".
 (score = 20)
2026-03-12 11:23.05: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:23.05: >>> 
# Error: Package colibri2 does not exist
 (score = 48)
2026-03-12 11:23.05: Package colibri2 does not exist