Build:
  1. 0
2026-01-24 20:29.33: New job: test print-table.0.1.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29276/head (61fdbbc4826f9bbfe70191b5a5a665f6593f50b9)
                              on macos-homebrew-ocaml-4.14/arm64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29276/head" && git reset --hard 61fdbbc4
git fetch origin master
git merge --no-edit 64cd1a4d8a05bc4bcc3bda0e3ce31640883df344
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 print-table.0.1.1 0.1.1
RUN opam reinstall print-table.0.1.1; \
    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" != 'print-table.0.1.1' && 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 print-table.0.1.1) || true
RUN opam reinstall --with-test --verbose print-table.0.1.1; \
    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" != 'print-table.0.1.1' && 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-24 20:29.33: Using cache hint "macos-homebrew-ocaml-4.14-print-table.0.1.1-61fdbbc4826f9bbfe70191b5a5a665f6593f50b9"
2026-01-24 20:29.33: 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 print-table.0.1.1 0.1.1"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall print-table.0.1.1;\
             \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\" != 'print-table.0.1.1' && 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 print-table.0.1.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose print-table.0.1.1;\
             \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\" != 'print-table.0.1.1' && 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-24 20:29.33: Waiting for resource in pool OCluster
2026-01-24 20:29.33: Waiting for worker…
2026-01-24 20:31.45: Got resource from pool OCluster
Building on m1-worker-03
All commits already cached
Updating files:  61% (11846/19266)
Updating files:  62% (11945/19266)
Updating files:  63% (12138/19266)
Updating files:  64% (12331/19266)
Updating files:  65% (12523/19266)
Updating files:  66% (12716/19266)
Updating files:  67% (12909/19266)
Updating files:  68% (13101/19266)
Updating files:  69% (13294/19266)
Updating files:  70% (13487/19266)
Updating files:  71% (13679/19266)
Updating files:  72% (13872/19266)
Updating files:  73% (14065/19266)
Updating files:  74% (14257/19266)
Updating files:  75% (14450/19266)
Updating files:  76% (14643/19266)
Updating files:  77% (14835/19266)
Updating files:  78% (15028/19266)
Updating files:  79% (15221/19266)
Updating files:  80% (15413/19266)
Updating files:  81% (15606/19266)
Updating files:  82% (15799/19266)
Updating files:  83% (15991/19266)
Updating files:  84% (16184/19266)
Updating files:  85% (16377/19266)
Updating files:  86% (16569/19266)
Updating files:  87% (16762/19266)
Updating files:  88% (16955/19266)
Updating files:  89% (17147/19266)
Updating files:  90% (17340/19266)
Updating files:  91% (17533/19266)
Updating files:  92% (17725/19266)
Updating files:  93% (17918/19266)
Updating files:  94% (18111/19266)
Updating files:  95% (18303/19266)
Updating files:  96% (18496/19266)
Updating files:  97% (18689/19266)
Updating files:  98% (18881/19266)
Updating files:  99% (19074/19266)
Updating files: 100% (19266/19266)
Updating files: 100% (19266/19266), done.
HEAD is now at 64cd1a4d8a Merge pull request #29273 from jberdine/release-csexp-query-0.1.0
Updating 64cd1a4d8a..61fdbbc482
Fast-forward
 packages/print-table/print-table.0.1.1/opam | 56 +++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)
 create mode 100644 packages/print-table/print-table.0.1.1/opam

(from macos-homebrew-ocaml-4.14)
2026-01-24 20:31.48 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-01-24 20:31.48 ---> 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-24 20:31.48 ---> 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=arm64 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                 7
# 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-24 20:31.49 ---> 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-24 20:31.49 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-01-24 20:31.50 ---> using "257c2d12becc0f2e725d3c2f9fa331e99948e4d41b40b611204602def39ddaea" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-01-24 20:31.50 ---> using "4340e87d303a947097fa2f1996848f8776291199093505d5743b5e018b0af828" from cache

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

                                                                           0.0%
                                                                           0.8%
#                                                                          1.5%
#                                                                          1.9%
#                                                                          2.3%
#                                                                          2.7%
##                                                                         3.2%
##                                                                         3.6%
- 
##                                                                         4.0%
###                                                                        4.4%
###                                                                        4.9%
###                                                                        5.3%
####                                                                       5.7%
####                                                                       6.1%
####                                                                       6.5%
#####                                                                      7.1%
#####                                                                      7.5%
#####                                                                      8.0%
- 
######                                                                     8.4%
######                                                                     8.8%
######                                                                     9.2%
######                                                                     9.6%
#######                                                                   10.1%
#######                                                                   10.6%
#######                                                                   11.0%
########                                                                  11.4%
########                                                                  11.8%
########                                                                  12.2%
#########                                                                 12.6%
- 
#########                                                                 13.1%
#########                                                                 13.6%
##########                                                                14.1%
##########                                                                14.5%
##########                                                                14.9%
###########                                                               15.3%
###########                                                               15.7%
###########                                                               16.1%
###########                                                               16.5%
############                                                              17.1%
############                                                              17.5%
- 
############                                                              17.9%
#############                                                             18.3%
#############                                                             18.7%
#############                                                             19.2%
##############                                                            19.6%
##############                                                            20.0%
##############                                                            20.4%
##############                                                            20.8%
###############                                                           21.2%
###############                                                           21.6%
###############                                                           22.0%
- 
################                                                          22.4%
################                                                          22.8%
################                                                          23.3%
#################                                                         23.7%
#################                                                         23.9%
#################                                                         24.3%
#################                                                         24.6%
#################                                                         24.9%
##################                                                        25.1%
##################                                                        25.4%
##################                                                        25.7%
- 
##################                                                        25.9%
##################                                                        26.1%
##################                                                        26.3%
###################                                                       26.6%
###################                                                       26.8%
###################                                                       27.0%
###################                                                       27.2%
###################                                                       27.4%
###################                                                       27.6%
####################                                                      27.8%
####################                                                      28.1%
- 
####################                                                      28.2%
####################                                                      28.5%
####################                                                      28.6%
####################                                                      28.9%
#####################                                                     29.2%
#####################                                                     29.3%
#####################                                                     29.6%
#####################                                                     29.7%
#####################                                                     30.0%
#####################                                                     30.3%
#####################                                                     30.4%
- 
######################                                                    30.7%
######################                                                    30.8%
######################                                                    31.1%
######################                                                    31.3%
######################                                                    31.5%
######################                                                    31.7%
######################                                                    31.9%
#######################                                                   32.1%
#######################                                                   32.4%
#######################                                                   32.5%
#######################                                                   32.8%
- 
#######################                                                   33.1%
#######################                                                   33.2%
########################                                                  33.5%
########################                                                  33.6%
########################                                                  33.9%
########################                                                  34.0%
########################                                                  34.3%
########################                                                  34.6%
########################                                                  34.7%
#########################                                                 35.0%
- 
#########################                                                 35.2%
#########################                                                 35.4%
#########################                                                 35.6%
#########################                                                 35.9%
#########################                                                 36.0%
##########################                                                36.3%
##########################                                                36.5%
##########################                                                36.7%
##########################                                                36.9%
##########################                                                37.1%
##########################                                                37.4%
- 
###########################                                               37.5%
###########################                                               37.8%
###########################                                               37.9%
###########################                                               38.2%
###########################                                               38.5%
###########################                                               38.6%
###########################                                               38.9%
############################                                              39.1%
############################                                              39.3%
############################                                              39.5%
- 
############################                                              39.7%
############################                                              40.0%
############################                                              40.2%
#############################                                             40.4%
#############################                                             40.6%
#############################                                             40.9%
#############################                                             41.2%
#############################                                             41.4%
##############################                                            41.8%
##############################                                            42.1%
##############################                                            42.4%
- 
##############################                                            42.8%
##############################                                            43.1%
###############################                                           43.5%
###############################                                           43.7%
###############################                                           44.0%
###############################                                           44.3%
################################                                          44.5%
################################                                          44.8%
################################                                          45.1%
################################                                          45.3%
################################                                          45.5%
################################                                          45.7%
- 
#################################                                         46.0%
#################################                                         46.1%
#################################                                         46.4%
#################################                                         46.7%
#################################                                         46.8%
#################################                                         47.1%
##################################                                        47.2%
##################################                                        47.5%
##################################                                        47.8%
##################################                                        47.9%
- 
##################################                                        48.2%
##################################                                        48.4%
##################################                                        48.6%
###################################                                       48.8%
###################################                                       49.0%
###################################                                       49.2%
###################################                                       49.5%
###################################                                       49.7%
###################################                                       49.9%
####################################                                      50.2%
####################################                                      50.5%
- 
####################################                                      50.6%
####################################                                      50.9%
####################################                                      51.0%
####################################                                      51.3%
#####################################                                     51.5%
#####################################                                     51.7%
#####################################                                     51.9%
#####################################                                     52.1%
#####################################                                     52.3%
#####################################                                     52.5%
#####################################                                     52.7%
- 
######################################                                    53.0%
######################################                                    53.2%
######################################                                    53.4%
######################################                                    53.7%
######################################                                    53.8%
######################################                                    54.1%
#######################################                                   54.2%
#######################################                                   54.5%
#######################################                                   54.8%
#######################################                                   54.9%
#######################################                                   55.2%
- 
#######################################                                   55.3%
########################################                                  55.6%
########################################                                  55.8%
########################################                                  56.1%
########################################                                  56.3%
########################################                                  56.5%
########################################                                  56.8%
########################################                                  56.9%
#########################################                                 57.2%
#########################################                                 57.5%
- 
#########################################                                 57.6%
#########################################                                 57.9%
#########################################                                 58.1%
#########################################                                 58.3%
##########################################                                58.5%
##########################################                                58.8%
##########################################                                58.9%
##########################################                                59.2%
##########################################                                59.3%
##########################################                                59.6%
- 
###########################################                               59.9%
###########################################                               60.0%
###########################################                               60.3%
###########################################                               60.6%
###########################################                               60.7%
###########################################                               61.0%
###########################################                               61.1%
############################################                              61.4%
############################################                              61.6%
############################################                              61.8%
############################################                              62.0%
- 
############################################                              62.3%
############################################                              62.4%
#############################################                             62.7%
#############################################                             63.0%
#############################################                             63.1%
#############################################                             63.4%
#############################################                             63.5%
#############################################                             63.8%
##############################################                            64.1%
##############################################                            64.2%
##############################################                            64.5%
- 
##############################################                            64.7%
##############################################                            64.9%
##############################################                            65.1%
###############################################                           65.4%
###############################################                           65.5%
###############################################                           65.8%
###############################################                           65.9%
###############################################                           66.2%
###############################################                           66.5%
###############################################                           66.6%
################################################                          66.9%
- 
################################################                          67.2%
################################################                          67.3%
################################################                          67.6%
################################################                          67.7%
################################################                          68.0%
#################################################                         68.1%
#################################################                         68.4%
#################################################                         68.6%
#################################################                         68.8%
#################################################                         69.0%
#################################################                         69.2%
- 
##################################################                        69.5%
##################################################                        69.7%
##################################################                        69.9%
##################################################                        70.1%
##################################################                        70.3%
##################################################                        70.5%
##################################################                        70.8%
###################################################                       70.9%
###################################################                       71.2%
###################################################                       71.3%
###################################################                       71.6%
- 
###################################################                       71.9%
###################################################                       72.0%
####################################################                      72.3%
####################################################                      72.4%
####################################################                      72.7%
####################################################                      73.0%
####################################################                      73.1%
####################################################                      73.4%
#####################################################                     73.6%
#####################################################                     73.9%
- 
#####################################################                     74.0%
#####################################################                     74.3%
#####################################################                     74.6%
#####################################################                     74.7%
#####################################################                     75.0%
######################################################                    75.1%
######################################################                    75.4%
######################################################                    75.5%
######################################################                    75.8%
######################################################                    76.1%
######################################################                    76.2%
- 
#######################################################                   76.5%
#######################################################                   76.7%
#######################################################                   76.9%
#######################################################                   77.0%
#######################################################                   77.3%
#######################################################                   77.5%
#######################################################                   77.7%
########################################################                  77.9%
########################################################                  78.1%
########################################################                  78.3%
########################################################                  78.6%
- 
########################################################                  78.7%
########################################################                  79.0%
########################################################                  79.1%
#########################################################                 79.4%
#########################################################                 79.7%
#########################################################                 79.8%
#########################################################                 80.1%
#########################################################                 80.4%
#########################################################                 80.5%
##########################################################                80.8%
##########################################################                81.0%
- 
##########################################################                81.2%
##########################################################                81.4%
##########################################################                81.7%
##########################################################                81.8%
###########################################################               82.1%
###########################################################               82.4%
###########################################################               82.5%
###########################################################               82.8%
###########################################################               83.1%
###########################################################               83.3%
############################################################              83.5%
- 
############################################################              83.7%
############################################################              83.9%
############################################################              84.1%
############################################################              84.4%
############################################################              84.7%
#############################################################             84.8%
#############################################################             85.1%
#############################################################             85.3%
#############################################################             85.6%
#############################################################             85.7%
- 
#############################################################             86.0%
##############################################################            86.3%
##############################################################            86.4%
##############################################################            86.7%
##############################################################            87.0%
##############################################################            87.1%
##############################################################            87.4%
###############################################################           87.6%
###############################################################           87.9%
###############################################################           88.0%
###############################################################           88.3%
- 
###############################################################           88.6%
###############################################################           88.7%
################################################################          89.0%
################################################################          89.3%
################################################################          89.4%
################################################################          89.7%
################################################################          89.9%
################################################################          90.1%
#################################################################         90.3%
#################################################################         90.5%
- 
#################################################################         90.7%
#################################################################         91.0%
#################################################################         91.3%
#################################################################         91.4%
##################################################################        91.7%
##################################################################        91.9%
##################################################################        92.1%
##################################################################        92.3%
##################################################################        92.5%
##################################################################        92.8%
##################################################################        93.0%
- 
###################################################################       93.2%
###################################################################       93.4%
###################################################################       93.7%
###################################################################       94.0%
###################################################################       94.1%
###################################################################       94.4%
####################################################################      94.5%
####################################################################      94.8%
####################################################################      95.0%
####################################################################      95.2%
- 
####################################################################      95.4%
####################################################################      95.6%
#####################################################################     95.9%
#####################################################################     96.1%
#####################################################################     96.3%
#####################################################################     96.5%
#####################################################################     96.8%
#####################################################################     97.1%
######################################################################    97.3%
######################################################################    97.6%
######################################################################    97.9%
- 
######################################################################    98.1%
######################################################################    98.4%
#######################################################################   98.7%
#######################################################################   99.1%
#######################################################################   99.5%
#######################################################################   99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.arm64_big_sur.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-24 20:31.50 ---> using "264c78de4f5cf83b1d8beb203e2a846ae6dab34b9f2069fb744e64df7d33f82e" from cache

/: (run (shell "opam pin add -k version -yn print-table.0.1.1 0.1.1"))
print-table is now pinned to version 0.1.1
2026-01-24 20:31.50 ---> using "ab95d4ff7171428343f151fd8698ff6f9f0209aeb68928ac0bccf228aeb2ea8b" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall print-table.0.1.1;\
               \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\" != 'print-table.0.1.1' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
print-table.0.1.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune        3.21.0         [required by print-table]
  - install print-table 0.1.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0  (cached)
-> retrieved print-table.0.1.1  (https://github.com/mbarbin/print-table/releases/download/0.1.1/print-table-0.1.1.tbz)
-> installed dune.3.21.0
-> installed print-table.0.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 20:31.50 ---> using "6ef9aa6f54e25f2cd53baa3a1adfd3d3204cfa6313299ee1e48ae6e284b03586" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   print-table.0.1.1
-> installed print-table.0.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 20:31.54 ---> saved as "eb979be6fd6faabdbb49cdc7750363e535f08207a846e81832d81416c4e9ff05"

/: (run (shell  "opam reinstall --with-test --verbose print-table.0.1.1;\
               \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\" != 'print-table.0.1.1' && 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 print-table 0.1.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [print-table: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "print-table" "-j" "7" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/print-table.0.1.1)
-> compiled  print-table.0.1.1
-> removed   print-table.0.1.1
-> installed print-table.0.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 20:31.57 ---> saved as "2a96a21bc3684540454a9d6102599841420d12a4c899313c384e4a623f422c1c"
Job succeeded
2026-01-24 20:32.06: Job succeeded