(not at the head of any monitored branch or PR)
2026-01-23 15:48.20: New job: test caisar.5.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29111/head (6fb9bc721893564c7fcc5360575ff8ff9e76bc1c)
                              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/29111/head" && git reset --hard 6fb9bc72
git fetch origin master
git merge --no-edit 61857cf66b5b6176b95bb89d11e829662f66727d
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 caisar.5.0 5.0
RUN opam reinstall caisar.5.0; \
    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" != 'caisar.5.0' && 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 caisar.5.0) || true
RUN opam reinstall --with-test --verbose caisar.5.0; \
    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" != 'caisar.5.0' && 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-01-23 15:48.20: Using cache hint "macos-homebrew-ocaml-4.14-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:48.20: 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 caisar.5.0 5.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall caisar.5.0;\
             \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\" != 'caisar.5.0' && 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 caisar.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caisar.5.0;\
             \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\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-23 15:48.20: Waiting for resource in pool OCluster
2026-01-23 15:48.20: Waiting for worker…
2026-01-23 15:49.00: Got resource from pool OCluster
Building on i7-worker-03
Updating files:  29% (5612/19256)
Updating files:  30% (5777/19256)
Updating files:  31% (5970/19256)
Updating files:  32% (6162/19256)
Updating files:  33% (6355/19256)
Updating files:  34% (6548/19256)
Updating files:  35% (6740/19256)
Updating files:  36% (6933/19256)
Updating files:  37% (7125/19256)
Updating files:  38% (7318/19256)
Updating files:  39% (7510/19256)
Updating files:  40% (7703/19256)
Updating files:  41% (7895/19256)
Updating files:  42% (8088/19256)
Updating files:  43% (8281/19256)
Updating files:  44% (8473/19256)
Updating files:  45% (8666/19256)
Updating files:  46% (8858/19256)
Updating files:  47% (9051/19256)
Updating files:  48% (9243/19256)
Updating files:  49% (9436/19256)
Updating files:  50% (9628/19256)
Updating files:  51% (9821/19256)
Updating files:  51% (9881/19256)
Updating files:  52% (10014/19256)
Updating files:  53% (10206/19256)
Updating files:  54% (10399/19256)
Updating files:  55% (10591/19256)
Updating files:  56% (10784/19256)
Updating files:  57% (10976/19256)
Updating files:  58% (11169/19256)
Updating files:  59% (11362/19256)
Updating files:  60% (11554/19256)
Updating files:  61% (11747/19256)
Updating files:  62% (11939/19256)
Updating files:  63% (12132/19256)
Updating files:  64% (12324/19256)
Updating files:  65% (12517/19256)
Updating files:  66% (12709/19256)
Updating files:  67% (12902/19256)
Updating files:  68% (13095/19256)
Updating files:  69% (13287/19256)
Updating files:  70% (13480/19256)
Updating files:  71% (13672/19256)
Updating files:  72% (13865/19256)
Updating files:  73% (14057/19256)
Updating files:  74% (14250/19256)
Updating files:  75% (14442/19256)
Updating files:  76% (14635/19256)
Updating files:  77% (14828/19256)
Updating files:  78% (15020/19256)
Updating files:  79% (15213/19256)
Updating files:  80% (15405/19256)
Updating files:  80% (15456/19256)
Updating files:  81% (15598/19256)
Updating files:  82% (15790/19256)
Updating files:  83% (15983/19256)
Updating files:  84% (16176/19256)
Updating files:  85% (16368/19256)
Updating files:  86% (16561/19256)
Updating files:  87% (16753/19256)
Updating files:  88% (16946/19256)
Updating files:  89% (17138/19256)
Updating files:  90% (17331/19256)
Updating files:  91% (17523/19256)
Updating files:  92% (17716/19256)
Updating files:  93% (17909/19256)
Updating files:  94% (18101/19256)
Updating files:  95% (18294/19256)
Updating files:  96% (18486/19256)
Updating files:  97% (18679/19256)
Updating files:  98% (18871/19256)
Updating files:  99% (19064/19256)
Updating files: 100% (19256/19256)
Updating files: 100% (19256/19256), done.
HEAD is now at 54bbaa63c0 Merge commit '6fb9bc721893564c7fcc5360575ff8ff9e76bc1c'
HEAD is now at 61857cf66b Merge pull request #29222 from fpottier/master
Merge made by the 'ort' strategy.
 packages/caisar/caisar.5.0/opam | 66 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 packages/caisar/caisar.5.0/opam

(from macos-homebrew-ocaml-4.14)
2026-01-23 15:49.18 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-01-23 15:49.18 ---> 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-01-23 15:49.19 ---> 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-01-23 15:49.19 ---> 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-01-23 15:49.20 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-01-23 15:49.30 ---> saved as "d39f58981d076d3e1a05c4c859b9cc575a592f7c8f88c963694bb0b8d1c0231e"

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-01-23 15:49.52 ---> saved as "07aebf5cc7e50099981fe09b71e97b0828f0aa1a08ffddae288086dfb934e7bd"

/: (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:80c194381e990a4967a1ae44b8242b688e6a17ab590865a38671137677411469
- #=#=#                                                                          

                                                                           0.1%
                                                                           1.4%
#                                                                          2.3%
##                                                                         3.1%
##                                                                         4.0%
###                                                                        4.9%
####                                                                       5.7%
- 
####                                                                       6.6%
#####                                                                      7.4%
######                                                                     8.4%
######                                                                     9.2%
#######                                                                   10.0%
#######                                                                   10.8%
########                                                                  11.8%
#########                                                                 12.6%
#########                                                                 13.6%
##########                                                                14.4%
###########                                                               15.3%
- 
###########                                                               16.3%
############                                                              17.1%
#############                                                             18.1%
#############                                                             18.9%
##############                                                            19.7%
##############                                                            20.4%
###############                                                           21.2%
###############                                                           21.9%
################                                                          22.6%
################                                                          23.6%
#################                                                         24.3%
- 
#################                                                         24.7%
##################                                                        25.1%
##################                                                        25.5%
##################                                                        26.0%
###################                                                       26.5%
###################                                                       26.9%
###################                                                       27.3%
####################                                                      27.8%
####################                                                      28.2%
####################                                                      28.7%
- 
####################                                                      29.1%
#####################                                                     29.5%
#####################                                                     29.9%
#####################                                                     30.4%
######################                                                    30.8%
######################                                                    31.3%
######################                                                    31.7%
#######################                                                   32.1%
#######################                                                   32.5%
#######################                                                   32.9%
########################                                                  33.4%
- 
########################                                                  33.9%
########################                                                  34.3%
########################                                                  34.7%
#########################                                                 35.2%
#########################                                                 35.6%
#########################                                                 36.1%
##########################                                                36.5%
##########################                                                36.9%
##########################                                                37.3%
###########################                                               37.8%
###########################                                               38.2%
- 
###########################                                               38.7%
############################                                              39.2%
############################                                              39.6%
############################                                              40.0%
#############################                                             40.4%
#############################                                             40.9%
##############################                                            41.7%
##############################                                            42.5%
###############################                                           43.3%
###############################                                           44.3%
################################                                          44.8%
- 
################################                                          45.2%
################################                                          45.7%
#################################                                         46.2%
#################################                                         46.6%
#################################                                         47.0%
##################################                                        47.4%
##################################                                        48.0%
##################################                                        48.4%
###################################                                       48.9%
###################################                                       49.4%
###################################                                       49.8%
- 
####################################                                      50.2%
####################################                                      50.6%
####################################                                      51.0%
#####################################                                     51.4%
#####################################                                     51.8%
#####################################                                     52.2%
#####################################                                     52.5%
######################################                                    52.8%
######################################                                    53.1%
######################################                                    53.3%
- 
######################################                                    53.6%
######################################                                    53.9%
######################################                                    54.2%
#######################################                                   54.6%
#######################################                                   54.8%
#######################################                                   55.1%
#######################################                                   55.4%
########################################                                  55.7%
########################################                                  55.9%
########################################                                  56.2%
########################################                                  56.5%
- 
########################################                                  56.9%
#########################################                                 57.2%
#########################################                                 57.4%
#########################################                                 57.9%
#########################################                                 58.1%
##########################################                                58.4%
##########################################                                58.7%
##########################################                                59.0%
##########################################                                59.2%
##########################################                                59.5%
###########################################                               59.9%
- 
###########################################                               60.2%
###########################################                               60.5%
###########################################                               60.7%
###########################################                               61.0%
############################################                              61.3%
############################################                              61.7%
############################################                              62.0%
############################################                              62.2%
#############################################                             62.5%
#############################################                             62.8%
#############################################                             63.1%
- 
#############################################                             63.3%
#############################################                             63.6%
##############################################                            64.0%
##############################################                            64.3%
##############################################                            64.6%
##############################################                            64.9%
##############################################                            65.1%
###############################################                           65.4%
###############################################                           65.7%
###############################################                           66.1%
###############################################                           66.4%
- 
###############################################                           66.6%
################################################                          66.9%
################################################                          67.2%
################################################                          67.5%
################################################                          67.7%
#################################################                         68.1%
#################################################                         68.4%
#################################################                         68.7%
#################################################                         69.0%
#################################################                         69.4%
- 
##################################################                        69.8%
##################################################                        70.2%
##################################################                        70.6%
###################################################                       71.0%
###################################################                       71.4%
###################################################                       71.7%
###################################################                       72.0%
####################################################                      72.3%
####################################################                      72.5%
####################################################                      72.8%
####################################################                      73.2%
- 
####################################################                      73.5%
#####################################################                     73.8%
#####################################################                     74.0%
#####################################################                     74.3%
#####################################################                     74.7%
######################################################                    75.0%
######################################################                    75.3%
######################################################                    75.6%
######################################################                    75.8%
######################################################                    76.1%
#######################################################                   76.5%
- 
#######################################################                   76.8%
#######################################################                   77.1%
#######################################################                   77.3%
#######################################################                   77.6%
########################################################                  78.0%
########################################################                  78.3%
########################################################                  78.6%
########################################################                  78.8%
########################################################                  79.1%
#########################################################                 79.4%
- 
#########################################################                 79.8%
#########################################################                 80.1%
#########################################################                 80.4%
##########################################################                80.6%
##########################################################                80.9%
##########################################################                81.3%
##########################################################                81.6%
##########################################################                81.9%
###########################################################               82.1%
###########################################################               82.4%
###########################################################               82.7%
- 
###########################################################               83.1%
############################################################              83.4%
############################################################              83.6%
############################################################              83.9%
############################################################              84.2%
############################################################              84.5%
#############################################################             84.7%
#############################################################             85.0%
#############################################################             85.4%
#############################################################             86.0%
##############################################################            86.4%
- 
##############################################################            86.7%
##############################################################            86.9%
##############################################################            87.2%
##############################################################            87.5%
###############################################################           87.8%
###############################################################           88.2%
###############################################################           88.4%
###############################################################           88.7%
################################################################          89.0%
################################################################          89.3%
################################################################          89.5%
- 
################################################################          89.8%
################################################################          90.2%
#################################################################         90.5%
#################################################################         90.8%
#################################################################         91.0%
#################################################################         91.3%
#################################################################         91.6%
##################################################################        91.9%
##################################################################        92.1%
##################################################################        92.6%
- 
##################################################################        92.8%
###################################################################       93.1%
###################################################################       93.4%
###################################################################       93.8%
###################################################################       94.1%
###################################################################       94.3%
####################################################################      94.6%
####################################################################      94.9%
####################################################################      95.2%
####################################################################      95.6%
- 
#####################################################################     95.8%
#####################################################################     96.1%
#####################################################################     96.4%
#####################################################################     96.7%
#####################################################################     96.9%
#####################################################################     97.2%
######################################################################    97.5%
######################################################################    97.8%
######################################################################    98.0%
######################################################################    98.2%
######################################################################    98.5%
- 
#######################################################################   98.7%
#######################################################################   99.0%
#######################################################################   99.1%
#######################################################################   99.4%
#######################################################################   99.5%
#######################################################################   99.8%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.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-01-23 15:50.37 ---> saved as "503e3ecf1e2fa0e2ee4fea2edf471b43298f11d24128309a94789fd09ba7489c"

/: (run (shell "opam pin add -k version -yn caisar.5.0 5.0"))
caisar is now pinned to version 5.0
2026-01-23 15:50.39 ---> saved as "e82133405922941a76cae9e5477ceb756ff15298178bdb6eef089eb0762cbf2f"

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall caisar.5.0;\
               \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\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
caisar.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 75 packages
  - install astring                 0.8.5        [required by fpath]
  - install base                    v0.16.4      [required by caisar]
  - install base-bytes              base         [required by csv, ocplib-endian]
  - install base64                  3.5.2        [required by ocaml-protoc-plugin]
  - install bos                     0.2.1        [required by yaml]
  - install caisar                  5.0 (pinned)
  - install cmdliner                2.1.0        [required by caisar]
  - install conf-gmp                5            [required by zarith]
  - install conf-pkg-config         4            [required by ocaml-protoc-plugin]
  - install conf-protoc             4.4.0        [required by ocaml-protoc-plugin]
  - install cppo                    1.8.0        [required by ocplib-endian, ppx_deriving]
  - install csexp                   1.5.2        [required by dune-configurator, dune-private-libs]
  - install csv                     2.4          [required by caisar]
  - install ctypes                  0.24.0       [required by yaml]
  - install dune                    3.21.0       [required by caisar]
  - install dune-build-info         3.21.0       [required by omd]
  - install dune-configurator       3.21.0       [required by base]
  - install dune-private-libs       3.21.0       [required by dune-site]
  - install dune-site               3.21.0       [required by caisar]
  - install dyn                     3.21.0       [required by dune-private-libs]
  - install fmt                     0.11.0       [required by caisar]
  - install fpath                   0.7.3        [required by caisar]
  - install fs-io                   3.21.0       [required by stdune]
  - install integers                0.7.0        [required by ctypes]
  - install jane-street-headers     v0.16.0      [required by time_now]
  - install jst-config              v0.16.0      [required by time_now]
  - install logs                    0.10.0       [required by caisar]
  - install menhir                  20250912     [required by why3]
  - install menhirCST               20250912     [required by menhir]
  - install menhirLib               20250912     [required by caisar]
  - install menhirSdk               20250912     [required by menhir]
  - install ocaml-compiler-libs     v0.12.4      [required by ppxlib]
  - install ocaml-protoc-plugin     6.2.0        [required by caisar]
  - install ocamlbuild              0.16.1       [required by fpath, fmt, logs]
  - install ocamlfind               1.9.8        [required by ppx_deriving, fpath, fmt, etc.]
  - install ocamlgraph              2.2.0        [required by caisar]
  - install ocplib-endian           1.2          [required by caisar]
  - install omd                     2.0.0~alpha4 [required by ocaml-protoc-plugin]
  - install ordering                3.21.0       [required by dyn, stdune]
  - install pp                      2.0.0        [required by dune-private-libs]
  - install ppx_assert              v0.16.0      [required by jst-config]
  - install ppx_base                v0.16.0      [required by time_now]
  - install ppx_cold                v0.16.0      [required by ppx_base]
  - install ppx_compare             v0.16.0      [required by ppx_base]
  - install ppx_derivers            1.2.1        [required by ppx_deriving]
  - install ppx_deriving            6.0.3        [required by caisar]
  - install ppx_deriving_jsonschema 0.0.4        [required by caisar]
  - install ppx_deriving_yaml       0.4.0        [required by caisar]
  - install ppx_deriving_yojson     3.9.1        [required by caisar]
  - install ppx_enumerate           v0.16.0      [required by ppx_base]
  - install ppx_expect              v0.16.2      [required by ocaml-protoc-plugin]
  - install ppx_globalize           v0.16.0      [required by ppx_base]
  - install ppx_hash                v0.16.0      [required by ppx_base]
  - install ppx_here                v0.16.0      [required by ppx_expect]
  - install ppx_inline_test         v0.16.1      [required by caisar]
  - install ppx_optcomp             v0.16.0      [required by time_now]
  - install ppx_sexp_conv           v0.16.0      [required by why3]
  - install ppxlib                  0.35.0       [required by ppx_deriving_yaml, ppx_deriving, ppx_deriving_jsonschema, ppx_deriving_yojson]
  - install ptime                   1.2.0        [required by ocaml-protoc-plugin]
  - install re                      1.14.0       [required by caisar]
  - install rresult                 0.7.0        [required by bos]
  - install sexplib0                v0.16.0      [required by base]
  - install stdio                   v0.16.0      [required by caisar]
  - install stdlib-shims            0.3.0        [required by ppxlib, integers]
  - install stdune                  3.21.0       [required by dune-private-libs]
  - install time_now                v0.16.0      [required by ppx_inline_test]
  - install top-closure             3.21.0       [required by stdune]
  - install topkg                   1.1.1        [required by fpath, fmt, logs]
  - install uucp                    17.0.0       [required by omd]
  - install uunf                    17.0.0       [required by omd]
  - install uutf                    1.0.4        [required by omd]
  - install why3                    1.8.2        [required by caisar]
  - install yaml                    3.2.0        [required by caisar]
  - install yojson                  3.0.0        [required by caisar]
  - install zarith                  1.14         [required by caisar]

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

<><> 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" "protobuf"
- ==> Fetching downloads for: gmp, pkgconf and protobuf
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest protobuf (33.4)
- ✔︎ Bottle Manifest protobuf (33.4)
- ✔︎ Bottle Manifest abseil (20260107.0)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ✔︎ Bottle protobuf (33.4)
- ✔︎ Bottle abseil (20260107.0)
- ==> 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`...
- ==> Installing protobuf dependency: abseil
- ==> Pouring abseil--20260107.0.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/abseil/20260107.0: 806 files, 9.3MB
- ==> Pouring protobuf--33.4.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/protobuf/33.4: 369 files, 17.0MB
- ==> Running `brew cleanup protobuf`...
- ==> Caveats
- Emacs Lisp files have been installed to:
-   /usr/local/share/emacs/site-lisp/protobuf

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved caisar.5.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> retrieved csv.2.4  (cached)
-> installed conf-protoc.4.4.0
-> retrieved ctypes.0.24.0  (cached)
-> retrieved dune.3.21.0, dune-build-info.3.21.0, dune-configurator.3.21.0, dune-private-libs.3.21.0, dune-site.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-protoc-plugin.6.2.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved omd.2.0.0~alpha4  (cached)
-> retrieved pp.2.0.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_jsonschema.0.0.4  (cached)
-> retrieved ppx_deriving_yaml.0.4.0  (cached)
-> retrieved ppx_deriving_yojson.3.9.1  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_expect.v0.16.2  (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 ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.16.0  (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 uucp.17.0.0  (cached)
-> retrieved uunf.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved why3.1.8.2  (cached)
-> retrieved yaml.3.2.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed uunf.17.0.0
-> installed bos.0.2.1
-> installed dune.3.21.0
-> installed jane-street-headers.v0.16.0
-> installed csv.2.4
-> installed csexp.1.5.2
-> installed dune-build-info.3.21.0
-> installed fs-io.3.21.0
-> installed ocamlgraph.2.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed menhirCST.20250912
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> installed re.1.14.0
-> installed ordering.3.21.0
-> installed dune-configurator.3.21.0
-> installed ppx_derivers.1.2.1
-> installed pp.2.0.0
-> installed yojson.3.0.0
-> installed top-closure.3.21.0
-> installed integers.0.7.0
-> installed cppo.1.8.0
-> installed base64.3.5.2
-> installed ocplib-endian.1.2
-> installed dyn.3.21.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed stdune.3.21.0
-> installed ctypes.0.24.0
-> installed dune-private-libs.3.21.0
-> installed ppxlib.0.35.0
-> installed yaml.3.2.0
-> installed menhir.20250912
-> installed uucp.17.0.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed dune-site.3.21.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_optcomp.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_deriving_yaml.0.4.0
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving_yojson.3.9.1
-> installed omd.2.0.0~alpha4
-> installed ppx_assert.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed ocaml-protoc-plugin.6.2.0
-> installed why3.1.8.2
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:55.24 ---> saved as "78b65438d8881466c4f3254ca4144339555952a599d8a0adf7fb2db4c4ced3eb"

/: (run (network host)
        (shell "(opam reinstall --with-test caisar.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile caisar        5.0 (pinned)
=== install 3 packages
  - install   conf-jq       1            [required by caisar]
  - install   conf-python-3 9.0.0        [required by caisar]
  - install   conf-texlive  2            [required by caisar]

The following system packages will first need to be installed:
    jq python@3.9 texlive

<><> 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" "jq" "python@3.9" "texlive"
- ==> Fetching downloads for: jq, python@3.9 and texlive
- Warning: python@3.9 has been deprecated because it is deprecated upstream! It will be disabled on 2026-10-15.
- ✔︎ Bottle Manifest python@3.9 (3.9.25)
- ✔︎ Bottle Manifest jq (1.8.1)
- ✔︎ Bottle Manifest texlive (20250308_2)
- ✔︎ Bottle Manifest oniguruma (6.9.10)
- ✔︎ Bottle Manifest gdbm (1.26)
- ✔︎ Bottle Manifest mpdecimal (4.0.1)
- ✔︎ Bottle Manifest ca-certificates (2025-12-02)
- ✔︎ Bottle Manifest openssl@3 (3.6.0)
- ✔︎ Bottle Manifest readline (8.3.3)
- ✔︎ Bottle Manifest sqlite (3.51.2)
- ✔︎ Bottle Manifest xz (5.8.2)
- ✔︎ Bottle Manifest libpng (1.6.54)
- ✔︎ Bottle Manifest freetype (2.14.1_1)
- ✔︎ Bottle Manifest libunistring (1.4.1)
- ✔︎ Bottle Manifest gettext (0.26_1)
- ✔︎ Bottle Manifest fontconfig (2.17.1)
- ✔︎ Bottle Manifest pcre2 (10.47)
- ✔︎ Bottle Manifest glib (2.86.3)
- ✔︎ Bottle Manifest xorgproto (2025.1)
- ✔︎ Bottle Manifest libxau (1.0.12)
- ✔︎ Bottle Manifest libxdmcp (1.1.5)
- ✔︎ Bottle Manifest libxcb (1.17.0)
- ✔︎ Bottle Manifest libx11 (1.8.12)
- ✔︎ Bottle Manifest libxext (1.3.6)
- ✔︎ Bottle libxau (1.0.12)
- ✔︎ Bottle Manifest libxrender (0.9.12)
- ✔︎ Bottle Manifest lzo (2.10)
- ✔︎ Bottle libxdmcp (1.1.5)
- ✔︎ Bottle ca-certificates (2025-12-02)
- ✔︎ Bottle Manifest pixman (0.46.4)
- ✔︎ Bottle libxrender (0.9.12)
- ✔︎ Bottle libxext (1.3.6)
- ✔︎ Bottle mpdecimal (4.0.1)
- ✔︎ Bottle Manifest cairo (1.18.4)
- ✔︎ Bottle Manifest libffcall (2.5)
- ✔︎ Bottle Manifest libsigsegv (2.15)
- ✔︎ Bottle Manifest clisp (2.49.92_1)
- ✔︎ Bottle gdbm (1.26)
- ✔︎ Bottle lzo (2.10)
- ✔︎ Bottle Manifest jpeg-turbo (3.1.3)
- ✔︎ Bottle libsigsegv (2.15)
- ✔︎ Bottle Manifest brotli (1.2.0)
- ✔︎ Bottle Manifest giflib (5.2.2)
- ✔︎ Bottle fontconfig (2.17.1)
- ✔︎ Bottle jq (1.8.1)
- ✔︎ Bottle Manifest highway (1.3.0)
- ✔︎ Bottle libpng (1.6.54)
- ✔︎ Bottle libffcall (2.5)
- ✔︎ Bottle Manifest imath (3.2.2)
- ✔︎ Bottle Manifest lz4 (1.10.0)
- ✔︎ Bottle Manifest zstd (1.5.7)
- ✔︎ Bottle oniguruma (6.9.10)
- ✔︎ Bottle Manifest libtiff (4.7.1)
- ✔︎ Bottle giflib (5.2.2)
- ✔︎ Bottle Manifest little-cms2 (2.18)
- ✔︎ Bottle xorgproto (2025.1)
- ✔︎ Bottle Manifest libdeflate (1.25)
- ✔︎ Bottle readline (8.3.3)
- ✔︎ Bottle xz (5.8.2)
- ✔︎ Bottle Manifest openjph (0.26.0)
- ✔︎ Bottle lz4 (1.10.0)
- ✔︎ Bottle Manifest openexr (3.4.4_1)
- ✔︎ Bottle Manifest jpeg-xl (0.11.1_3)
- ✔︎ Bottle imath (3.2.2)
- ✔︎ Bottle Manifest libvmaf (3.0.0)
- ✔︎ Bottle libdeflate (1.25)
- ✔︎ Bottle Manifest aom (3.13.1)
- ✔︎ Bottle freetype (2.14.1_1)
- ✔︎ Bottle libxcb (1.17.0)
- ✔︎ Bottle Manifest dav1d (1.5.3)
- ✔︎ Bottle little-cms2 (2.18)
- ✔︎ Bottle openjph (0.26.0)
- ✔︎ Bottle Manifest webp (1.6.0)
- ✔︎ Bottle Manifest libavif (1.3.0)
- ✔︎ Bottle brotli (1.2.0)
- ✔︎ Bottle Manifest gd (2.3.3_6)
- ✔︎ Bottle Manifest jbig2dec (0.20)
- ✔︎ Bottle pixman (0.46.4)
- ✔︎ Bottle Manifest openjpeg (2.5.4)
- ✔︎ Bottle jbig2dec (0.20)
- ✔︎ Bottle Manifest leptonica (1.87.0)
- ✔︎ Bottle zstd (1.5.7)
- ✔︎ Bottle libavif (1.3.0)
- ✔︎ Bottle Manifest libb2 (0.98.1)
- ✔︎ Bottle gd (2.3.3_6)
- ✔︎ Bottle Manifest libarchive (3.8.5)
- ✔︎ Bottle Manifest libidn (1.43)
- ✔︎ Bottle jpeg-turbo (3.1.3)
- ✔︎ Bottle libb2 (0.98.1)
- ✔︎ Bottle Manifest graphite2 (1.3.14)
- ✔︎ Bottle Manifest icu4c@78 (78.2)
- ✔︎ Bottle graphite2 (1.3.14)
- ✔︎ Bottle Manifest harfbuzz (12.3.1)
- ✔︎ Bottle cairo (1.18.4)
- ✔︎ Bottle Manifest fribidi (1.0.16)
- ✔︎ Bottle dav1d (1.5.3)
- ✔︎ Bottle libidn (1.43)
- ✔︎ Bottle libunistring (1.4.1)
- ✔︎ Bottle Manifest pango (1.57.0_1)
- ✔︎ Bottle Manifest tesseract (5.5.2)
- ✔︎ Bottle openexr (3.4.4_1)
- ✔︎ Bottle Manifest ghostscript (10.06.0)
- ✔︎ Bottle Manifest libxft (2.3.9)
- ✔︎ Bottle fribidi (1.0.16)
- ✔︎ Bottle Manifest lua (5.4.8)
- ✔︎ Bottle libvmaf (3.0.0)
- ✔︎ Bottle Manifest luajit (2.1.1767980792)
- ✔︎ Bottle libxft (2.3.9)
- ✔︎ Bottle Manifest mpfr (4.2.2)
- ✔︎ Bottle webp (1.6.0)
- ✔︎ Bottle Manifest openjdk (25.0.2)
- ✔︎ Bottle highway (1.3.0)
- ✔︎ Bottle Manifest berkeley-db@5 (5.3.28_1)
- ✔︎ Bottle libx11 (1.8.12)
- ✔︎ Bottle Manifest perl (5.42.0)
- ✔︎ Bottle lua (5.4.8)
- ✔︎ Bottle Manifest potrace (1.16)
- ✔︎ Bottle pcre2 (10.47)
- ✔︎ Bottle libtiff (4.7.1)
- ✔︎ Bottle Manifest libde265 (1.0.16)
- ✔︎ Bottle Manifest shared-mime-info (2.4_1)
- ✔︎ Bottle sqlite (3.51.2)
- ✔︎ Bottle Manifest x265 (4.1)
- ✔︎ Bottle potrace (1.16)
- ✔︎ Bottle Manifest libheif (1.21.2)
- ✔︎ Bottle pango (1.57.0_1)
- ✔︎ Bottle Manifest m4 (1.4.20)
- ✔︎ Bottle libde265 (1.0.16)
- ✔︎ Bottle Manifest libtool (2.5.4)
- ✔︎ Bottle luajit (2.1.1767980792)
- ✔︎ Bottle m4 (1.4.20)
- ✔︎ Bottle libarchive (3.8.5)
- ✔︎ Bottle Manifest libzip (1.11.4)
- ✔︎ Bottle Manifest imagemagick (7.1.2-13)
- ✔︎ Bottle Manifest plotutils (2.6_1)
- ✔︎ Bottle mpfr (4.2.2)
- ✔︎ Bottle Manifest pstoedit (4.3)
- ✔︎ Bottle libzip (1.11.4)
- ✔︎ Bottle Manifest python@3.14 (3.14.2)
- ✔︎ Bottle openjpeg (2.5.4)
- ✔︎ Bottle shared-mime-info (2.4_1)
- ✔︎ Bottle leptonica (1.87.0)
- ✔︎ Bottle libtool (2.5.4)
- ✔︎ Bottle pstoedit (4.3)
- ✔︎ Bottle clisp (2.49.92_1)
- ✔︎ Bottle harfbuzz (12.3.1)
- ✔︎ Bottle libheif (1.21.2)
- ✔︎ Bottle plotutils (2.6_1)
- ✔︎ Bottle aom (3.13.1)
- ✔︎ Bottle glib (2.86.3)
- ✔︎ Bottle openssl@3 (3.6.0)
- ✔︎ Bottle gettext (0.26_1)
- ✔︎ Bottle x265 (4.1)
- ✔︎ Bottle imagemagick (7.1.2-13)
- ✔︎ Bottle python@3.9 (3.9.25)
- ✔︎ Bottle tesseract (5.5.2)
- ✔︎ Bottle jpeg-xl (0.11.1_3)
- ✔︎ Bottle perl (5.42.0)
- ✔︎ Bottle python@3.14 (3.14.2)
- ✔︎ Bottle berkeley-db@5 (5.3.28_1)
- ✔︎ Bottle icu4c@78 (78.2)
- ✔︎ Bottle ghostscript (10.06.0)
- ✔︎ Bottle openjdk (25.0.2)
2026-01-23 17:49.00: Cancelling: Timeout (120.0 minutes)
Job cancelled
2026-01-23 17:49.07: Timeout (120.0 minutes)