(not at the head of any monitored branch or PR)
2026-05-24 01:17.54: New job: test irky.0.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29925/head (c23a6c28a605325486907f0572f9216e3f789898)
                              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/29925/head" && git reset --hard c23a6c28
git fetch origin master
git merge --no-edit 493123878a032e3f829b102f34e8690b3b2a4fd4
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 irky.0.1 0.1
RUN opam reinstall irky.0.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" != 'irky.0.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 irky.0.1) || true
RUN opam reinstall --with-test --verbose irky.0.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" != 'irky.0.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-05-24 01:17.54: Using cache hint "macos-homebrew-ocaml-5.4-irky.0.1-c23a6c28a605325486907f0572f9216e3f789898"
2026-05-24 01:17.54: 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 irky.0.1 0.1"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall irky.0.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\" != 'irky.0.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 irky.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose irky.0.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\" != 'irky.0.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-05-24 01:17.54: Waiting for resource in pool OCluster
2026-05-24 01:17.56: Waiting for worker…
2026-05-24 01:31.16: Got resource from pool OCluster
Building on i7-worker-02
All commits already cached
Updating files:  36% (6637/17957)
Updating files:  37% (6645/17957)
Updating files:  38% (6824/17957)
Updating files:  39% (7004/17957)
Updating files:  40% (7183/17957)
Updating files:  41% (7363/17957)
Updating files:  42% (7542/17957)
Updating files:  43% (7722/17957)
Updating files:  44% (7902/17957)
Updating files:  45% (8081/17957)
Updating files:  46% (8261/17957)
Updating files:  47% (8440/17957)
Updating files:  48% (8620/17957)
Updating files:  49% (8799/17957)
Updating files:  50% (8979/17957)
Updating files:  51% (9159/17957)
Updating files:  52% (9338/17957)
Updating files:  53% (9518/17957)
Updating files:  54% (9697/17957)
Updating files:  55% (9877/17957)
Updating files:  56% (10056/17957)
Updating files:  57% (10236/17957)
Updating files:  58% (10416/17957)
Updating files:  59% (10595/17957)
Updating files:  60% (10775/17957)
Updating files:  61% (10954/17957)
Updating files:  62% (11134/17957)
Updating files:  63% (11313/17957)
Updating files:  64% (11493/17957)
Updating files:  65% (11673/17957)
Updating files:  65% (11700/17957)
Updating files:  66% (11852/17957)
Updating files:  67% (12032/17957)
Updating files:  68% (12211/17957)
Updating files:  69% (12391/17957)
Updating files:  70% (12570/17957)
Updating files:  71% (12750/17957)
Updating files:  72% (12930/17957)
Updating files:  73% (13109/17957)
Updating files:  74% (13289/17957)
Updating files:  75% (13468/17957)
Updating files:  76% (13648/17957)
Updating files:  77% (13827/17957)
Updating files:  78% (14007/17957)
Updating files:  79% (14187/17957)
Updating files:  80% (14366/17957)
Updating files:  81% (14546/17957)
Updating files:  82% (14725/17957)
Updating files:  83% (14905/17957)
Updating files:  84% (15084/17957)
Updating files:  85% (15264/17957)
Updating files:  86% (15444/17957)
Updating files:  87% (15623/17957)
Updating files:  88% (15803/17957)
Updating files:  89% (15982/17957)
Updating files:  90% (16162/17957)
Updating files:  91% (16341/17957)
Updating files:  92% (16521/17957)
Updating files:  93% (16701/17957)
Updating files:  94% (16880/17957)
Updating files:  95% (17060/17957)
Updating files:  96% (17239/17957)
Updating files:  97% (17419/17957)
Updating files:  98% (17598/17957)
Updating files:  98% (17691/17957)
Updating files:  99% (17778/17957)
Updating files: 100% (17957/17957)
Updating files: 100% (17957/17957), done.
HEAD is now at 493123878a Merge pull request #29931 from chetmurthy/release-pa_ppx-package-suite-at-8.05.01
Updating 493123878a..c23a6c28a6
Fast-forward
 packages/irky-eio/irky-eio.0.1/opam | 41 +++++++++++++++++++++++++++++++++++++
 packages/irky/irky.0.1/opam         | 40 ++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)
 create mode 100644 packages/irky-eio/irky-eio.0.1/opam
 create mode 100644 packages/irky/irky.0.1/opam

(from macos-homebrew-ocaml-5.4)
2026-05-24 01:22.27 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-05-24 01:22.27 ---> 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-05-24 01:22.27 ---> 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-05-24 01:22.27 ---> 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-05-24 01:22.28 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-05-24 01:22.29 ---> using "8dea49649ecb86777460a880291a8eed9edd30993852c87fe359c09b14c3d7be" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
default (at file:///Users/mac1000/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)

default (at file:///Users/mac1000/opam-repository): 
    [INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-05-24 01:22.30 ---> using "9f073e9ac7da3cedea61bded68e32e5bbad501a1faea74f81dd64ac4361cac78" 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:9ceb962508dce8cc2468095292fbff2b69fd86e0b9ecca813bf8ead72d4effa1
- #=#=#                                                                          

                                                                           0.0%
                                                                           0.2%
                                                                           0.3%
                                                                           0.5%
- 
                                                                           0.9%
                                                                           1.3%
#                                                                          1.5%
#                                                                          1.7%
#                                                                          2.0%
#                                                                          2.1%
#                                                                          2.3%
#                                                                          2.5%
#                                                                          2.7%
##                                                                         2.8%
- 
##                                                                         3.0%
##                                                                         3.2%
##                                                                         3.4%
##                                                                         3.6%
##                                                                         3.7%
##                                                                         4.0%
##                                                                         4.1%
###                                                                        4.2%
###                                                                        4.5%
###                                                                        4.6%
###                                                                        4.8%
- 
###                                                                        5.0%
###                                                                        5.2%
###                                                                        5.3%
####                                                                       5.6%
####                                                                       5.7%
####                                                                       6.0%
####                                                                       6.1%
####                                                                       6.2%
####                                                                       6.5%
####                                                                       6.6%
- 
####                                                                       6.8%
#####                                                                      7.0%
#####                                                                      7.2%
#####                                                                      7.3%
#####                                                                      7.6%
#####                                                                      7.7%
#####                                                                      7.8%
#####                                                                      8.1%
#####                                                                      8.2%
######                                                                     8.5%
- 
######                                                                     8.8%
######                                                                     8.9%
######                                                                     9.2%
######                                                                     9.3%
######                                                                     9.6%
######                                                                     9.7%
#######                                                                   10.0%
#######                                                                   10.1%
#######                                                                   10.4%
#######                                                                   10.5%
#######                                                                   10.8%
- 
#######                                                                   10.9%
#######                                                                   11.0%
########                                                                  11.3%
########                                                                  11.4%
########                                                                  11.7%
########                                                                  11.8%
########                                                                  12.0%
########                                                                  12.2%
########                                                                  12.4%
########                                                                  12.5%
- 
#########                                                                 12.8%
#########                                                                 12.9%
#########                                                                 13.0%
#########                                                                 13.3%
#########                                                                 13.4%
#########                                                                 13.7%
#########                                                                 13.8%
##########                                                                14.0%
##########                                                                14.2%
##########                                                                14.4%
- 
##########                                                                14.6%
##########                                                                14.8%
##########                                                                14.9%
##########                                                                15.0%
###########                                                               15.3%
###########                                                               15.4%
###########                                                               15.7%
###########                                                               16.0%
###########                                                               16.1%
###########                                                               16.4%
- 
###########                                                               16.6%
############                                                              16.8%
############                                                              17.0%
############                                                              17.3%
############                                                              17.4%
############                                                              17.7%
############                                                              17.8%
############                                                              18.0%
#############                                                             18.2%
#############                                                             18.4%
- 
#############                                                             18.5%
#############                                                             18.6%
#############                                                             18.9%
#############                                                             19.0%
#############                                                             19.2%
#############                                                             19.4%
##############                                                            19.6%
##############                                                            19.7%
##############                                                            19.9%
##############                                                            20.1%
##############                                                            20.2%
- 
##############                                                            20.5%
##############                                                            20.6%
###############                                                           20.9%
###############                                                           21.0%
###############                                                           21.1%
###############                                                           21.4%
###############                                                           21.5%
###############                                                           21.7%
###############                                                           21.9%
###############                                                           22.1%
- 
###############                                                           22.2%
################                                                          22.5%
################                                                          22.6%
################                                                          22.7%
################                                                          22.9%
################                                                          23.1%
################                                                          23.3%
################                                                          23.4%
#################                                                         23.7%
#################                                                         23.8%
- 
#################                                                         23.9%
#################                                                         24.2%
#################                                                         24.3%
#################                                                         24.5%
#################                                                         24.7%
#################                                                         24.9%
##################                                                        25.0%
##################                                                        25.3%
##################                                                        25.4%
##################                                                        25.5%
##################                                                        25.8%
- 
##################                                                        25.9%
##################                                                        26.1%
##################                                                        26.3%
###################                                                       26.5%
###################                                                       26.7%
###################                                                       26.9%
###################                                                       27.0%
###################                                                       27.1%
###################                                                       27.4%
###################                                                       27.5%
- 
####################                                                      27.8%
####################                                                      27.9%
####################                                                      28.1%
####################                                                      28.3%
####################                                                      28.6%
####################                                                      28.7%
####################                                                      29.0%
#####################                                                     29.3%
#####################                                                     29.4%
#####################                                                     29.7%
- 
#####################                                                     29.9%
#####################                                                     30.1%
#####################                                                     30.3%
#####################                                                     30.5%
######################                                                    30.6%
######################                                                    30.9%
######################                                                    31.0%
######################                                                    31.1%
######################                                                    31.4%
######################                                                    31.5%
######################                                                    31.8%
- 
######################                                                    31.9%
#######################                                                   32.1%
#######################                                                   32.2%
#######################                                                   32.5%
#######################                                                   32.6%
#######################                                                   32.7%
#######################                                                   32.9%
#######################                                                   33.1%
#######################                                                   33.3%
########################                                                  33.4%
- 
########################                                                  33.7%
########################                                                  33.8%
########################                                                  33.9%
########################                                                  34.2%
########################                                                  34.5%
########################                                                  34.6%
#########################                                                 34.9%
#########################                                                 35.0%
#########################                                                 35.3%
#########################                                                 35.5%
#########################                                                 35.7%
- 
#########################                                                 35.9%
##########################                                                36.2%
##########################                                                36.3%
##########################                                                36.6%
##########################                                                36.7%
##########################                                                37.0%
##########################                                                37.2%
##########################                                                37.4%
###########################                                               37.6%
###########################                                               37.9%
- 
###########################                                               38.0%
###########################                                               38.3%
###########################                                               38.6%
###########################                                               38.8%
############################                                              39.0%
############################                                              39.2%
############################                                              39.4%
############################                                              39.6%
############################                                              39.9%
############################                                              40.2%
#############################                                             40.3%
- 
#############################                                             40.6%
#############################                                             40.8%
#############################                                             41.0%
#############################                                             41.2%
#############################                                             41.5%
#############################                                             41.6%
##############################                                            41.9%
##############################                                            42.2%
##############################                                            42.4%
##############################                                            42.6%
- 
##############################                                            42.8%
###############################                                           43.1%
###############################                                           43.2%
###############################                                           43.5%
###############################                                           43.8%
###############################                                           43.9%
###############################                                           44.2%
###############################                                           44.4%
################################                                          44.6%
################################                                          44.8%
- 
################################                                          45.1%
################################                                          45.2%
################################                                          45.5%
################################                                          45.8%
#################################                                         45.9%
#################################                                         46.2%
#################################                                         46.4%
#################################                                         46.6%
#################################                                         46.8%
#################################                                         47.1%
##################################                                        47.2%
- 
##################################                                        47.5%
##################################                                        47.8%
##################################                                        48.0%
##################################                                        48.2%
##################################                                        48.4%
###################################                                       48.7%
###################################                                       48.8%
###################################                                       49.1%
###################################                                       49.4%
###################################                                       49.5%
- 
###################################                                       49.8%
####################################                                      50.0%
####################################                                      50.2%
####################################                                      50.4%
####################################                                      50.7%
####################################                                      51.0%
####################################                                      51.1%
####################################                                      51.4%
#####################################                                     51.5%
#####################################                                     51.8%
#####################################                                     52.0%
- 
#####################################                                     52.3%
#####################################                                     52.4%
#####################################                                     52.7%
######################################                                    53.0%
######################################                                    53.1%
######################################                                    53.4%
######################################                                    53.6%
######################################                                    53.9%
######################################                                    54.0%
#######################################                                   54.3%
- 
#######################################                                   54.5%
#######################################                                   54.7%
#######################################                                   54.9%
#######################################                                   55.2%
#######################################                                   55.3%
########################################                                  55.6%
########################################                                  55.9%
########################################                                  56.0%
########################################                                  56.3%
########################################                                  56.5%
########################################                                  56.7%
- 
########################################                                  56.9%
#########################################                                 57.2%
#########################################                                 57.3%
#########################################                                 57.6%
#########################################                                 57.7%
#########################################                                 58.0%
#########################################                                 58.1%
##########################################                                58.4%
##########################################                                58.7%
##########################################                                58.8%
- 
##########################################                                59.1%
##########################################                                59.2%
##########################################                                59.5%
###########################################                               59.7%
###########################################                               59.9%
###########################################                               60.1%
###########################################                               60.4%
###########################################                               60.5%
###########################################                               60.8%
###########################################                               61.1%
############################################                              61.2%
- 
############################################                              61.5%
############################################                              61.7%
############################################                              61.9%
############################################                              62.1%
############################################                              62.3%
#############################################                             62.5%
#############################################                             62.8%
#############################################                             62.9%
#############################################                             63.2%
#############################################                             63.3%
#############################################                             63.6%
- 
#############################################                             63.9%
##############################################                            64.0%
##############################################                            64.3%
##############################################                            64.5%
##############################################                            64.8%
##############################################                            64.9%
##############################################                            65.2%
###############################################                           65.3%
###############################################                           65.6%
- 
###############################################                           65.9%
###############################################                           66.1%
###############################################                           66.3%
###############################################                           66.5%
###############################################                           66.7%
################################################                          66.9%
################################################                          67.2%
################################################                          67.5%
################################################                          67.6%
################################################                          67.9%
#################################################                         68.1%
- 
#################################################                         68.3%
#################################################                         68.5%
#################################################                         68.8%
#################################################                         68.9%
#################################################                         69.2%
##################################################                        69.5%
##################################################                        69.6%
##################################################                        69.9%
##################################################                        70.1%
##################################################                        70.4%
- 
##################################################                        70.5%
##################################################                        70.8%
###################################################                       71.0%
###################################################                       71.3%
###################################################                       71.4%
###################################################                       71.7%
###################################################                       71.8%
###################################################                       72.1%
####################################################                      72.4%
####################################################                      72.5%
####################################################                      72.8%
- 
####################################################                      73.0%
####################################################                      73.2%
####################################################                      73.4%
#####################################################                     73.7%
#####################################################                     74.0%
#####################################################                     74.1%
#####################################################                     74.4%
#####################################################                     74.6%
#####################################################                     74.8%
######################################################                    75.0%
- 
######################################################                    75.3%
######################################################                    75.6%
######################################################                    75.7%
######################################################                    76.0%
######################################################                    76.1%
######################################################                    76.4%
#######################################################                   76.6%
#######################################################                   76.8%
#######################################################                   77.0%
#######################################################                   77.3%
#######################################################                   77.4%
- 
#######################################################                   77.7%
########################################################                  78.0%
########################################################                  78.2%
########################################################                  78.4%
########################################################                  78.6%
########################################################                  78.8%
########################################################                  79.0%
#########################################################                 79.3%
#########################################################                 79.6%
#########################################################                 79.8%
- 
#########################################################                 80.0%
#########################################################                 80.2%
#########################################################                 80.4%
##########################################################                80.6%
##########################################################                80.9%
##########################################################                81.2%
##########################################################                81.3%
##########################################################                81.6%
##########################################################                81.8%
###########################################################               82.1%
###########################################################               82.2%
- 
###########################################################               82.5%
###########################################################               82.6%
###########################################################               82.9%
###########################################################               83.2%
###########################################################               83.3%
############################################################              83.6%
############################################################              83.8%
############################################################              84.0%
############################################################              84.2%
############################################################              84.5%
- 
#############################################################             84.8%
#############################################################             84.9%
#############################################################             85.2%
#############################################################             85.4%
#############################################################             85.6%
#############################################################             85.8%
#############################################################             86.1%
##############################################################            86.4%
##############################################################            86.5%
##############################################################            86.8%
##############################################################            86.9%
- 
##############################################################            87.2%
##############################################################            87.4%
###############################################################           87.7%
###############################################################           87.8%
###############################################################           88.1%
###############################################################           88.3%
###############################################################           88.5%
###############################################################           88.7%
################################################################          89.0%
- 
################################################################          89.1%
################################################################          89.4%
################################################################          89.7%
################################################################          89.8%
################################################################          90.1%
################################################################          90.2%
#################################################################         90.5%
#################################################################         90.7%
#################################################################         90.9%
#################################################################         91.1%
#################################################################         91.4%
- 
#################################################################         91.5%
##################################################################        91.8%
##################################################################        91.9%
##################################################################        92.2%
##################################################################        92.5%
##################################################################        92.6%
##################################################################        92.9%
##################################################################        93.0%
###################################################################       93.3%
###################################################################       93.5%
###################################################################       93.7%
- 
###################################################################       93.9%
###################################################################       94.1%
###################################################################       94.3%
####################################################################      94.6%
####################################################################      94.7%
####################################################################      95.0%
####################################################################      95.3%
####################################################################      95.4%
####################################################################      95.7%
#####################################################################     95.9%
- 
#####################################################################     96.2%
#####################################################################     96.3%
#####################################################################     96.6%
#####################################################################     96.9%
#####################################################################     97.0%
######################################################################    97.3%
######################################################################    97.5%
######################################################################    97.7%
######################################################################    97.9%
######################################################################    98.2%
######################################################################    98.3%
- 
######################################################################    98.6%
#######################################################################   98.9%
#######################################################################   99.0%
#######################################################################   99.3%
#######################################################################   99.5%
#######################################################################   99.8%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.5.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-05-24 01:22.30 ---> using "c394fac11e3364e762ff341832c327e00c9f9cd71fc8579d39d4530253bf50c5" from cache

/: (run (shell "opam pin add -k version -yn irky.0.1 0.1"))
irky is now pinned to version 0.1
2026-05-24 01:22.30 ---> using "a04de8ece81f6fd88b5eddcec2d19d4036e4f9d87488d47679848f661a192b2a" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall irky.0.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\" != 'irky.0.1' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
irky.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install base64     3.5.2        [required by irky]
  - install dune       3.23.1       [required by irky]
  - install iostream   0.3          [required by irky]
  - install irky       0.1 (pinned)
  - install logs       0.10.0       [required by irky]
  - install ocamlbuild 0.16.1       [required by logs]
  - install ocamlfind  1.9.8        [required by logs]
  - install topkg      1.1.1        [required by logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (cached)
-> retrieved dune.3.23.1  (cached)
-> retrieved iostream.0.3  (cached)
-> retrieved irky.0.1  (https://github.com/c-cube/irky/releases/download/v0.1/irky-0.1.tbz)
-> retrieved logs.0.10.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed dune.3.23.1
-> installed base64.3.5.2
-> installed iostream.0.3
-> installed irky.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 01:22.30 ---> using "9139cc11c868028d4492fa19a265b0745bf95fe8fe8a2fde0c8943dd0f43a960" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test irky.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile irky         0.1 (pinned)
=== install 3 packages
  - install   ounit2       2.2.7        [required by irky]
  - install   seq          base         [required by ounit2]
  - install   stdlib-shims 0.3.0        [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ounit2.2.2.7  (https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> removed   irky.0.1
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> installed irky.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 01:22.39 ---> saved as "06a132eb6377fc31d72397d7b6eaeb69433131920aa2b2c20390eef79182cb06"

/: (run (shell  "opam reinstall --with-test --verbose irky.0.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\" != 'irky.0.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 irky 0.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [irky: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irky" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/irky.0.1)
- (cd _build/default/test && ./test_unit_main.exe)
- ............
- Ran: 12 tests in: 0.17 seconds.
- OK
-> compiled  irky.0.1
-> removed   irky.0.1
-> installed irky.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 01:22.45 ---> saved as "581a3836e57ab8a368e2ce3d168451c6b339a0422ba5f158320393aca5babc20"
Job succeeded
2026-05-24 01:31.22: Job succeeded