Build:
  1. 0
2026-04-07 07:53.10: New job: test ez_cmdliner.0.5.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29657/head (ae86563219923edb840927a033550aeaa0a17cb6)
                              on macos-homebrew-ocaml-5.4/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/29657/head" && git reset --hard ae865632
git fetch origin master
git merge --no-edit 67472cd54293d750a62d6d4423024d55f77268b0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.4
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 ez_cmdliner.0.5.0 0.5.0
RUN opam reinstall ez_cmdliner.0.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" != 'ez_cmdliner.0.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 ez_cmdliner.0.5.0) || true
RUN opam reinstall --with-test --verbose ez_cmdliner.0.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" != 'ez_cmdliner.0.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-04-07 07:53.10: Using cache hint "macos-homebrew-ocaml-5.4-ez_cmdliner.0.5.0-ae86563219923edb840927a033550aeaa0a17cb6"
2026-04-07 07:53.10: Using OBuilder spec:
((from macos-homebrew-ocaml-5.4)
 (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 ez_cmdliner.0.5.0 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 ez_cmdliner.0.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\" != 'ez_cmdliner.0.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 ez_cmdliner.0.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ez_cmdliner.0.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\" != 'ez_cmdliner.0.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-04-07 07:53.10: Waiting for resource in pool OCluster
2026-04-07 07:53.10: Waiting for worker…
2026-04-07 07:56.07: Got resource from pool OCluster
Building on i7-worker-01
All commits already cached
Updating files:  35% (6622/18637)
Updating files:  36% (6710/18637)
Updating files:  37% (6896/18637)
Updating files:  38% (7083/18637)
Updating files:  39% (7269/18637)
Updating files:  40% (7455/18637)
Updating files:  41% (7642/18637)
Updating files:  42% (7828/18637)
Updating files:  43% (8014/18637)
Updating files:  44% (8201/18637)
Updating files:  45% (8387/18637)
Updating files:  46% (8574/18637)
Updating files:  47% (8760/18637)
Updating files:  48% (8946/18637)
Updating files:  49% (9133/18637)
Updating files:  50% (9319/18637)
Updating files:  51% (9505/18637)
Updating files:  52% (9692/18637)
Updating files:  53% (9878/18637)
Updating files:  54% (10064/18637)
Updating files:  55% (10251/18637)
Updating files:  56% (10437/18637)
Updating files:  57% (10624/18637)
Updating files:  58% (10810/18637)
Updating files:  59% (10996/18637)
Updating files:  59% (11101/18637)
Updating files:  60% (11183/18637)
Updating files:  61% (11369/18637)
Updating files:  62% (11555/18637)
Updating files:  63% (11742/18637)
Updating files:  64% (11928/18637)
Updating files:  65% (12115/18637)
Updating files:  66% (12301/18637)
Updating files:  67% (12487/18637)
Updating files:  68% (12674/18637)
Updating files:  69% (12860/18637)
Updating files:  70% (13046/18637)
Updating files:  71% (13233/18637)
Updating files:  72% (13419/18637)
Updating files:  73% (13606/18637)
Updating files:  74% (13792/18637)
Updating files:  75% (13978/18637)
Updating files:  76% (14165/18637)
Updating files:  77% (14351/18637)
Updating files:  78% (14537/18637)
Updating files:  79% (14724/18637)
Updating files:  80% (14910/18637)
Updating files:  81% (15096/18637)
Updating files:  82% (15283/18637)
Updating files:  83% (15469/18637)
Updating files:  84% (15656/18637)
Updating files:  85% (15842/18637)
Updating files:  86% (16028/18637)
Updating files:  87% (16215/18637)
Updating files:  88% (16401/18637)
Updating files:  88% (16465/18637)
Updating files:  89% (16587/18637)
Updating files:  90% (16774/18637)
Updating files:  91% (16960/18637)
Updating files:  92% (17147/18637)
Updating files:  93% (17333/18637)
Updating files:  94% (17519/18637)
Updating files:  95% (17706/18637)
Updating files:  96% (17892/18637)
Updating files:  97% (18078/18637)
Updating files:  98% (18265/18637)
Updating files:  99% (18451/18637)
Updating files: 100% (18637/18637)
Updating files: 100% (18637/18637), done.
HEAD is now at 67472cd542 Merge pull request #29652 from RyanGibb/master
Updating 67472cd542..ae86563219
Fast-forward
 packages/ez_cmdliner/ez_cmdliner.0.5.0/opam | 53 +++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 packages/ez_cmdliner/ez_cmdliner.0.5.0/opam

(from macos-homebrew-ocaml-5.4)
2026-04-07 07:56.12 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-04-07 07:56.12 ---> using "7aa34524ca0a69b4a488c30909f7495a04a243f9066091b1dfe73b446b0dfcd3" 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-04-07 07:56.13 ---> using "91dcaa513ca3161d91620d0583acdea5310cd52ccab1dfbdd183600da37afdb2" 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       5.4.0
# invariant            ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/5.4.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-04-07 07:56.13 ---> using "cea1bfc0b1cda73d964aa2fc69cc828a6e6d8edd86f991754707e8b004a3cb09" 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-04-07 07:56.13 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-04-07 07:56.16 ---> using "84ed15231b7cc4c5ee5f5d52c5924897c54b9806fab23e6a9e2d29cf105cb75e" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-04-07 07:56.16 ---> using "6bfdc15e5402f01a20e6cce82fcafc7c337fb03cfcdef4c575a6469eaf7bd8b9" 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:7c7830166a509857669c544dcba7a0d08ca656a3da073c68826ca0a5b1b56b12
- #=#=#                                                                          

                                                                           0.1%
                                                                           1.3%
#                                                                          2.3%
##                                                                         3.1%
##                                                                         3.9%
###                                                                        4.8%
####                                                                       5.6%
- 
####                                                                       6.3%
####                                                                       6.7%
#####                                                                      7.1%
#####                                                                      7.6%
#####                                                                      8.0%
######                                                                     8.4%
######                                                                     8.8%
######                                                                     9.2%
######                                                                     9.6%
#######                                                                   10.1%
#######                                                                   10.5%
- 
#######                                                                   10.9%
########                                                                  11.3%
########                                                                  11.8%
########                                                                  12.2%
#########                                                                 12.6%
#########                                                                 13.0%
#########                                                                 13.6%
##########                                                                14.0%
##########                                                                14.4%
##########                                                                14.8%
##########                                                                15.2%
- 
###########                                                               15.7%
###########                                                               16.1%
###########                                                               16.5%
############                                                              16.9%
############                                                              17.3%
############                                                              17.8%
#############                                                             18.2%
#############                                                             18.6%
#############                                                             19.0%
#############                                                             19.4%
- 
##############                                                            20.0%
##############                                                            20.4%
##############                                                            20.8%
###############                                                           21.2%
###############                                                           21.7%
###############                                                           22.1%
################                                                          22.5%
################                                                          22.9%
################                                                          23.3%
#################                                                         23.8%
#################                                                         24.2%
- 
#################                                                         24.6%
##################                                                        25.0%
##################                                                        25.4%
##################                                                        26.0%
##################                                                        26.4%
###################                                                       26.7%
###################                                                       27.1%
###################                                                       27.7%
####################                                                      28.1%
####################                                                      28.5%
####################                                                      28.9%
- 
#####################                                                     29.3%
#####################                                                     29.7%
#####################                                                     30.2%
######################                                                    30.6%
######################                                                    31.0%
######################                                                    31.4%
######################                                                    31.8%
#######################                                                   32.2%
#######################                                                   32.7%
#######################                                                   33.1%
########################                                                  33.5%
- 
########################                                                  33.9%
########################                                                  34.3%
#########################                                                 34.9%
#########################                                                 35.3%
#########################                                                 35.7%
#########################                                                 36.1%
##########################                                                36.5%
##########################                                                37.0%
##########################                                                37.4%
###########################                                               37.8%
###########################                                               38.3%
- 
###########################                                               38.7%
############################                                              39.1%
############################                                              39.5%
############################                                              39.9%
#############################                                             40.5%
#############################                                             40.9%
#############################                                             41.3%
##############################                                            41.8%
##############################                                            42.2%
##############################                                            42.6%
- 
##############################                                            43.0%
###############################                                           43.4%
###############################                                           43.8%
###############################                                           44.3%
################################                                          44.7%
################################                                          45.1%
################################                                          45.6%
#################################                                         46.0%
#################################                                         46.4%
#################################                                         46.8%
##################################                                        47.2%
- 
##################################                                        47.6%
##################################                                        48.2%
##################################                                        48.6%
###################################                                       49.1%
###################################                                       49.5%
###################################                                       49.9%
####################################                                      50.3%
####################################                                      50.7%
####################################                                      51.1%
#####################################                                     51.6%
#####################################                                     52.0%
- 
#####################################                                     52.4%
######################################                                    52.8%
######################################                                    53.2%
######################################                                    53.6%
######################################                                    54.2%
#######################################                                   54.6%
#######################################                                   55.0%
#######################################                                   55.4%
########################################                                  55.8%
########################################                                  56.3%
########################################                                  56.7%
- 
#########################################                                 57.1%
#########################################                                 57.5%
#########################################                                 57.9%
##########################################                                58.4%
##########################################                                58.8%
##########################################                                59.2%
##########################################                                59.6%
###########################################                               60.0%
###########################################                               60.4%
###########################################                               61.0%
############################################                              61.4%
- 
############################################                              61.9%
############################################                              62.3%
#############################################                             62.7%
#############################################                             63.1%
#############################################                             63.5%
##############################################                            64.0%
##############################################                            64.4%
##############################################                            64.8%
##############################################                            65.2%
###############################################                           65.6%
###############################################                           66.0%
- 
###############################################                           66.5%
################################################                          66.9%
################################################                          67.3%
################################################                          67.7%
#################################################                         68.1%
#################################################                         68.5%
#################################################                         68.9%
##################################################                        69.5%
##################################################                        69.9%
##################################################                        70.3%
##################################################                        70.7%
- 
###################################################                       71.2%
###################################################                       71.6%
###################################################                       72.0%
####################################################                      72.5%
####################################################                      72.9%
####################################################                      73.5%
#####################################################                     73.9%
#####################################################                     74.3%
#####################################################                     74.8%
######################################################                    75.2%
- 
######################################################                    75.6%
######################################################                    76.0%
######################################################                    76.4%
#######################################################                   76.8%
#######################################################                   77.2%
#######################################################                   77.7%
########################################################                  78.1%
########################################################                  78.5%
########################################################                  78.9%
#########################################################                 79.3%
#########################################################                 79.8%
- 
#########################################################                 80.2%
##########################################################                80.6%
##########################################################                81.0%
##########################################################                81.4%
##########################################################                81.8%
###########################################################               82.2%
###########################################################               82.8%
###########################################################               83.2%
############################################################              83.6%
############################################################              84.0%
############################################################              84.4%
- 
#############################################################             84.8%
#############################################################             85.3%
#############################################################             85.7%
#############################################################             86.1%
##############################################################            86.6%
##############################################################            87.0%
##############################################################            87.4%
###############################################################           88.0%
###############################################################           88.4%
################################################################          88.9%
- 
################################################################          89.3%
################################################################          89.7%
################################################################          90.1%
#################################################################         90.5%
#################################################################         91.0%
#################################################################         91.4%
##################################################################        91.8%
##################################################################        92.2%
##################################################################        92.6%
##################################################################        93.0%
###################################################################       93.6%
- 
###################################################################       94.0%
###################################################################       94.4%
####################################################################      94.8%
####################################################################      95.2%
####################################################################      95.7%
#####################################################################     96.1%
#####################################################################     96.5%
#####################################################################     96.9%
######################################################################    97.4%
######################################################################    97.8%
######################################################################    98.2%
- 
#######################################################################   98.6%
#######################################################################   99.0%
#######################################################################   99.4%
#######################################################################   99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.2_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-04-07 07:56.16 ---> using "4bcf755f718558dce31244103e7883443a479c294ac9657446cdefce01d2c211" from cache

/: (run (shell "opam pin add -k version -yn ez_cmdliner.0.5.0 0.5.0"))
ez_cmdliner is now pinned to version 0.5.0
2026-04-07 07:56.17 ---> using "6689f7e4986b8c61e98cb15001b6402b746725d0555f91e9c8d5a3e8e404f338" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall ez_cmdliner.0.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\" != 'ez_cmdliner.0.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"))
ez_cmdliner.0.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 5 packages
  - install cmdliner     2.1.0          [required by ez_cmdliner]
  - install dune         3.22.1         [required by ez_cmdliner]
  - install ez_cmdliner  0.5.0 (pinned)
  - install ez_subst     0.2.1          [required by ez_cmdliner]
  - install ocplib_stuff 0.4.0          [required by ez_cmdliner]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved dune.3.22.1  (cached)
-> retrieved ez_cmdliner.0.5.0  (https://github.com/OCamlPro/ez_cmdliner/releases/download/v0.5.0/ez_cmdliner-0.5.0.tbz)
-> retrieved ez_subst.0.2.1  (https://github.com/ocamlpro/ez_subst/archive/v0.2.1.tar.gz)
-> retrieved ocplib_stuff.0.4.0  (cached)
-> installed cmdliner.2.1.0
-> installed dune.3.22.1
-> installed ez_subst.0.2.1
-> installed ocplib_stuff.0.4.0
-> installed ez_cmdliner.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-07 07:56.17 ---> using "2ee629d827cef2f3ae2b1ac8956932bc4ea06a75e2b576e390868c58671273f5" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test ez_cmdliner.0.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ez_cmdliner             0.5.0 (pinned)
=== install 48 packages
  - install   astring                 0.8.5          [required by ocamlformat-lib]
  - install   base                    v0.17.3        [required by ppx_expect]
  - install   camlp-streams           5.0.1          [required by ocamlformat-lib]
  - install   csexp                   1.5.2          [required by ocamlformat]
  - install   dune-build-info         3.22.1         [required by ocamlformat-lib]
  - install   dune-configurator       3.22.1         [required by base]
  - install   either                  1.0.0          [required by ocamlformat-lib]
  - install   fix                     20250919       [required by ocamlformat-lib]
  - install   fpath                   0.7.3          [required by ocamlformat-lib]
  - install   jane-street-headers     v0.17.0        [required by time_now]
  - install   jst-config              v0.17.0        [required by time_now]
  - install   menhir                  20260209       [required by ocamlformat-lib]
  - install   menhirCST               20260209       [required by menhir]
  - install   menhirGLR               20260209       [required by menhir]
  - install   menhirLib               20260209       [required by ocamlformat-lib]
  - install   menhirSdk               20260209       [required by ocamlformat-lib]
  - install   ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install   ocaml-version           4.0.4          [required by ocamlformat-lib]
  - install   ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install   ocamlbuild              0.16.1         [required by fpath, astring, uuseg]
  - install   ocamlfind               1.9.8          [required by ocp-indent, astring, fpath, uuseg]
  - install   ocamlformat             0.29.0         [required by ez_cmdliner]
  - install   ocamlformat-lib         0.29.0         [required by ocamlformat]
  - install   ocp-indent              1.9.0          [required by ocamlformat-lib]
  - install   ppx_assert              v0.17.0        [required by jst-config]
  - install   ppx_base                v0.17.0        [required by time_now]
  - install   ppx_cold                v0.17.0        [required by ppx_base]
  - install   ppx_compare             v0.17.0        [required by ppx_base]
  - install   ppx_derivers            1.2.1          [required by ppxlib]
  - install   ppx_enumerate           v0.17.0        [required by ppx_base]
  - install   ppx_expect              v0.17.3        [required by ez_cmdliner]
  - install   ppx_globalize           v0.17.2        [required by ppx_base]
  - install   ppx_hash                v0.17.0        [required by ppx_base]
  - install   ppx_here                v0.17.0        [required by ppx_expect]
  - install   ppx_inline_test         v0.17.1        [required by ez_cmdliner]
  - install   ppx_optcomp             v0.17.1        [required by time_now]
  - install   ppx_sexp_conv           v0.17.1        [required by ppx_base]
  - install   ppxlib                  0.38.0         [required by ppx_expect]
  - install   ppxlib_jane             v0.17.4        [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   re                      1.14.0         [required by ocamlformat]
  - install   sexplib0                v0.17.0        [required by base, ppxlib]
  - install   stdio                   v0.17.0        [required by ppx_expect]
  - install   stdlib-shims            0.3.0          [required by ppxlib]
  - install   time_now                v0.17.0        [required by ppx_inline_test]
  - install   topkg                   1.1.1          [required by fpath, astring, uuseg]
  - install   uucp                    17.0.0         [required by uuseg]
  - install   uuseg                   17.0.0         [required by ocamlformat-lib]
  - install   uutf                    1.0.4          [required by ocamlformat-lib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved base.v0.17.3  (https://github.com/janestreet/base/archive/refs/tags/v0.17.3.tar.gz)
-> retrieved camlp-streams.5.0.1  (https://github.com/ocaml/camlp-streams/archive/v5.0.1.tar.gz)
-> retrieved csexp.1.5.2  (https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz)
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> retrieved dune-build-info.3.22.1, dune-configurator.3.22.1  (https://github.com/ocaml/dune/releases/download/3.22.1/dune-3.22.1.tbz)
-> installed dune-build-info.3.22.1
-> retrieved either.1.0.0  (https://github.com/mirage/either/releases/download/1.0.0/either-1.0.0.tbz)
-> installed either.1.0.0
-> retrieved fix.20250919  (https://gitlab.inria.fr/fpottier/fix/-/archive/20250919/archive.tar.gz)
-> retrieved fpath.0.7.3  (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
-> retrieved jane-street-headers.v0.17.0  (https://github.com/janestreet/jane-street-headers/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved jst-config.v0.17.0  (https://github.com/janestreet/jst-config/archive/refs/tags/v0.17.0.tar.gz)
-> installed jane-street-headers.v0.17.0
-> installed fix.20250919
-> installed dune-configurator.3.22.1
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://gitlab.inria.fr/fpottier/menhir/-/archive/20260209/archive.tar.gz)
-> retrieved ocaml-compiler-libs.v0.17.0  (https://github.com/janestreet/ocaml-compiler-libs/archive/refs/tags/v0.17.0.tar.gz)
-> installed menhirCST.20260209
-> retrieved ocaml-version.4.0.4  (https://github.com/ocurrent/ocaml-version/releases/download/v4.0.4/ocaml-version-4.0.4.tbz)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ocamlbuild.0.16.1  (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
-> installed ocaml-version.4.0.4
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> retrieved ocamlfind.1.9.8  (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed menhirSdk.20260209
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ocamlformat.0.29.0, ocamlformat-lib.0.29.0  (https://github.com/ocaml-ppx/ocamlformat/releases/download/0.29.0/ocamlformat-0.29.0.tbz)
-> retrieved ocp-indent.1.9.0  (https://github.com/OCamlPro/ocp-indent/releases/download/1.9.0/ocp-indent-1.9.0.tbz)
-> retrieved ppx_assert.v0.17.0  (https://github.com/janestreet/ppx_assert/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_base.v0.17.0  (https://github.com/janestreet/ppx_base/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_cold.v0.17.0  (https://github.com/janestreet/ppx_cold/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_compare.v0.17.0  (https://github.com/janestreet/ppx_compare/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_derivers.1.2.1  (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
-> retrieved ppx_enumerate.v0.17.0  (https://github.com/janestreet/ppx_enumerate/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_expect.v0.17.3  (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.17.3.tar.gz)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_globalize.v0.17.2  (https://github.com/janestreet/ppx_globalize/archive/refs/tags/v0.17.2.tar.gz)
-> retrieved ppx_hash.v0.17.0  (https://github.com/janestreet/ppx_hash/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_here.v0.17.0  (https://github.com/janestreet/ppx_here/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_inline_test.v0.17.1  (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppx_optcomp.v0.17.1  (https://github.com/janestreet/ppx_optcomp/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppx_sexp_conv.v0.17.1  (https://github.com/janestreet/ppx_sexp_conv/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppxlib.0.38.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.38.0/ppxlib-0.38.0.tbz)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> retrieved ppxlib_jane.v0.17.4  (https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.4.tar.gz)
-> retrieved re.1.14.0  (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved sexplib0.v0.17.0  (https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved stdio.v0.17.0  (https://github.com/janestreet/stdio/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> retrieved time_now.v0.17.0  (https://github.com/janestreet/time_now/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved topkg.1.1.1  (https://erratique.ch/software/topkg/releases/topkg-1.1.1.tbz)
-> installed stdlib-shims.0.3.0
-> installed menhir.20260209
-> retrieved uucp.17.0.0  (https://erratique.ch/software/uucp/releases/uucp-17.0.0.tbz)
-> installed sexplib0.v0.17.0
-> installed ocp-indent.1.9.0
-> retrieved uuseg.17.0.0  (https://erratique.ch/software/uuseg/releases/uuseg-17.0.0.tbz)
-> retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> removed   ez_cmdliner.0.5.0
-> installed re.1.14.0
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed base.v0.17.3
-> installed astring.0.8.5
-> installed stdio.v0.17.0
-> installed fpath.0.7.3
-> installed ppxlib.0.38.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed uucp.17.0.0
-> installed ppx_expect.v0.17.3
-> installed uuseg.17.0.0
-> installed ocamlformat-lib.0.29.0
-> installed ocamlformat.0.29.0
-> installed ez_cmdliner.0.5.0
Done.

<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/Users/mac1000/.opam/5.4.0/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/Users/mac1000/.opam/5.4.0/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-04-07 07:58.16 ---> saved as "b087546ae2eeb8d7533546c08190505b3182a3418f054078ab3bdcf97dd1b0fb"

/: (run (shell  "opam reinstall --with-test --verbose ez_cmdliner.0.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\" != 'ez_cmdliner.0.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"))
The following actions will be performed:
=== recompile 1 package
  - recompile ez_cmdliner 0.5.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ez_cmdliner: sh]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/before.sh build 'ez_cmdliner'" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ez_cmdliner.0.5.0)
Processing  2/4: [ez_cmdliner: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ez_cmdliner" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ez_cmdliner.0.5.0)
Processing  2/4: [ez_cmdliner: sh]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/after.sh build 'ez_cmdliner'" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ez_cmdliner.0.5.0)
-> compiled  ez_cmdliner.0.5.0
-> removed   ez_cmdliner.0.5.0
Processing  4/4: [ez_cmdliner: sh]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-c" "./scripts/before.sh install 'ez_cmdliner'" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ez_cmdliner.0.5.0)
-> installed ez_cmdliner.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-07 07:58.28 ---> saved as "c250221f86c40a2ada4527f8fb3218a217c8fbb6e3757a32a1dd94932d646986"
Job succeeded
2026-04-07 07:58.41: Job succeeded