Build:
  1. 0
2026-03-26 15:23.48: New job: test current.0.7.4, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29606/head (4e07f997e5a403e3e284236003dd2dff6b1992f9)
                              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/29606/head" && git reset --hard 4e07f997
git fetch origin master
git merge --no-edit 46f289cd3749314bbebddeede62fc05f9858f680
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 current.0.7.4 0.7.4
RUN opam reinstall current.0.7.4; \
    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" != 'current.0.7.4' && 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 current.0.7.4) || true
RUN opam reinstall --with-test --verbose current.0.7.4; \
    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" != 'current.0.7.4' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-26 15:23.48: Using cache hint "macos-homebrew-ocaml-5.4-current.0.7.4-4e07f997e5a403e3e284236003dd2dff6b1992f9"
2026-03-26 15:23.48: 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 current.0.7.4 0.7.4"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall current.0.7.4;\
             \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\" != 'current.0.7.4' && 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 current.0.7.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose current.0.7.4;\
             \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\" != 'current.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-26 15:23.48: Waiting for resource in pool OCluster
2026-03-26 15:23.50: Waiting for worker…
2026-03-26 15:43.35: Got resource from pool OCluster
Building on i7-worker-03
All commits already cached
Updating files:  25% (4801/18552)
Updating files:  26% (4824/18552)
Updating files:  27% (5010/18552)
Updating files:  28% (5195/18552)
Updating files:  29% (5381/18552)
Updating files:  30% (5566/18552)
Updating files:  31% (5752/18552)
Updating files:  32% (5937/18552)
Updating files:  33% (6123/18552)
Updating files:  34% (6308/18552)
Updating files:  35% (6494/18552)
Updating files:  36% (6679/18552)
Updating files:  37% (6865/18552)
Updating files:  38% (7050/18552)
Updating files:  39% (7236/18552)
Updating files:  40% (7421/18552)
Updating files:  41% (7607/18552)
Updating files:  42% (7792/18552)
Updating files:  43% (7978/18552)
Updating files:  44% (8163/18552)
Updating files:  45% (8349/18552)
Updating files:  46% (8534/18552)
Updating files:  47% (8720/18552)
Updating files:  48% (8905/18552)
Updating files:  49% (9091/18552)
Updating files:  50% (9276/18552)
Updating files:  51% (9462/18552)
Updating files:  51% (9591/18552)
Updating files:  52% (9648/18552)
Updating files:  53% (9833/18552)
Updating files:  54% (10019/18552)
Updating files:  55% (10204/18552)
Updating files:  56% (10390/18552)
Updating files:  57% (10575/18552)
Updating files:  58% (10761/18552)
Updating files:  59% (10946/18552)
Updating files:  60% (11132/18552)
Updating files:  61% (11317/18552)
Updating files:  62% (11503/18552)
Updating files:  63% (11688/18552)
Updating files:  64% (11874/18552)
Updating files:  65% (12059/18552)
Updating files:  66% (12245/18552)
Updating files:  67% (12430/18552)
Updating files:  68% (12616/18552)
Updating files:  69% (12801/18552)
Updating files:  70% (12987/18552)
Updating files:  71% (13172/18552)
Updating files:  72% (13358/18552)
Updating files:  73% (13543/18552)
Updating files:  74% (13729/18552)
Updating files:  75% (13914/18552)
Updating files:  76% (14100/18552)
Updating files:  77% (14286/18552)
Updating files:  78% (14471/18552)
Updating files:  79% (14657/18552)
Updating files:  80% (14842/18552)
Updating files:  80% (14971/18552)
Updating files:  81% (15028/18552)
Updating files:  82% (15213/18552)
Updating files:  83% (15399/18552)
Updating files:  84% (15584/18552)
Updating files:  85% (15770/18552)
Updating files:  86% (15955/18552)
Updating files:  87% (16141/18552)
Updating files:  88% (16326/18552)
Updating files:  89% (16512/18552)
Updating files:  90% (16697/18552)
Updating files:  91% (16883/18552)
Updating files:  92% (17068/18552)
Updating files:  93% (17254/18552)
Updating files:  94% (17439/18552)
Updating files:  95% (17625/18552)
Updating files:  96% (17810/18552)
Updating files:  97% (17996/18552)
Updating files:  98% (18181/18552)
Updating files:  99% (18367/18552)
Updating files: 100% (18552/18552)
Updating files: 100% (18552/18552), done.
HEAD is now at 46f289cd37 Merge pull request #29563 from NathanReb/release-ppxlib-0.38.0
Updating 46f289cd37..4e07f997e5
Fast-forward
 packages/current/current.0.7.4/opam                |  94 ++++++++++++++++++
 packages/current_docker/current_docker.0.7.4/opam  |  83 ++++++++++++++++
 .../current_examples/current_examples.0.7.4/opam   |  98 +++++++++++++++++++
 packages/current_git/current_git.0.7.4/opam        |  88 +++++++++++++++++
 packages/current_github/current_github.0.7.4/opam  |  97 +++++++++++++++++++
 packages/current_gitlab/current_gitlab.0.7.4/opam  |  59 ++++++++++++
 packages/current_rpc/current_rpc.0.7.4/opam        |  84 +++++++++++++++++
 packages/current_slack/current_slack.0.7.4/opam    |  77 +++++++++++++++
 packages/current_ssh/current_ssh.0.7.4/opam        |  43 +++++++++
 packages/current_web/current_web.0.7.4/opam        | 105 +++++++++++++++++++++
 10 files changed, 828 insertions(+)
 create mode 100644 packages/current/current.0.7.4/opam
 create mode 100644 packages/current_docker/current_docker.0.7.4/opam
 create mode 100644 packages/current_examples/current_examples.0.7.4/opam
 create mode 100644 packages/current_git/current_git.0.7.4/opam
 create mode 100644 packages/current_github/current_github.0.7.4/opam
 create mode 100644 packages/current_gitlab/current_gitlab.0.7.4/opam
 create mode 100644 packages/current_rpc/current_rpc.0.7.4/opam
 create mode 100644 packages/current_slack/current_slack.0.7.4/opam
 create mode 100644 packages/current_ssh/current_ssh.0.7.4/opam
 create mode 100644 packages/current_web/current_web.0.7.4/opam

(from macos-homebrew-ocaml-5.4)
2026-03-26 15:43.41 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-26 15:43.42 ---> 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-03-26 15:43.42 ---> 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-03-26 15:43.42 ---> 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-03-26 15:43.43 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-03-26 15:43.45 ---> using "36150240a5457f8fdf28df333adc5e757c57742cc33dc0bc00a5231896963070" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:43.45 ---> using "566426defa0c561e1eb39690b4d7a683dfff12c09262c95f3431cf758749266d" from cache

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

                                                                           0.2%
                                                                           0.4%
                                                                           0.7%
- 
                                                                           0.8%
#                                                                          1.4%
#                                                                          1.8%
#                                                                          2.2%
#                                                                          2.5%
#                                                                          2.7%
##                                                                         2.9%
##                                                                         3.1%
- 
##                                                                         3.4%
##                                                                         3.5%
##                                                                         3.8%
##                                                                         4.1%
###                                                                        4.2%
###                                                                        4.5%
###                                                                        4.8%
###                                                                        4.9%
###                                                                        5.2%
###                                                                        5.4%
####                                                                       5.6%
- 
####                                                                       5.8%
####                                                                       6.1%
####                                                                       6.2%
####                                                                       6.5%
####                                                                       6.8%
####                                                                       6.9%
#####                                                                      7.2%
#####                                                                      7.5%
#####                                                                      7.6%
#####                                                                      7.9%
- 
#####                                                                      8.0%
#####                                                                      8.3%
######                                                                     8.4%
######                                                                     8.7%
######                                                                     8.9%
######                                                                     9.1%
######                                                                     9.4%
######                                                                     9.5%
#######                                                                    9.8%
#######                                                                   10.1%
#######                                                                   10.2%
- 
#######                                                                   10.5%
#######                                                                   10.6%
#######                                                                   10.9%
########                                                                  11.1%
########                                                                  11.3%
########                                                                  11.5%
########                                                                  11.8%
########                                                                  12.1%
########                                                                  12.2%
########                                                                  12.5%
- 
#########                                                                 12.7%
#########                                                                 12.9%
#########                                                                 13.1%
#########                                                                 13.4%
#########                                                                 13.5%
#########                                                                 13.8%
##########                                                                13.9%
##########                                                                14.2%
##########                                                                14.5%
##########                                                                14.6%
##########                                                                14.9%
- 
##########                                                                15.1%
###########                                                               15.3%
###########                                                               15.6%
###########                                                               15.8%
###########                                                               16.0%
###########                                                               16.2%
###########                                                               16.5%
###########                                                               16.6%
############                                                              16.9%
############                                                              17.0%
############                                                              17.3%
- 
############                                                              17.6%
############                                                              17.8%
############                                                              18.0%
#############                                                             18.2%
#############                                                             18.4%
#############                                                             18.6%
#############                                                             18.9%
#############                                                             19.0%
#############                                                             19.3%
##############                                                            19.5%
- 
####
- ##########          
-                    
-                                19.7%
##############                                                            20.0%
##############                                                            20.1%
##############                                                            20.4%
##############                                                            20.5%
##############                                                            20.8%
###############                                                           21.1%
###############                                                           21.2%
###############                                                           21.5%
###############                                                           21.7%
###############                                                           22.0%
- 
###############                                                           22.1%
################                                                          22.4%
################                                                          22.6%
################                                                          22.8%
################                                                          23.1%
################                                                          23.2%
################                                                          23.5%
#################                                                         23.7%
#################                                                         23.9%
#################                                                         24.1%
#################                                                         24.3%
- 
#################                                                         24.5%
#################                                                         24.7%
#################                                                         24.9%
##################                                                        25.2%
##################                                                        25.3%
##################                                                        25.6%
##################                                                        25.7%
##################                                                        26.0%
##################                                                        26.2%
###################                                                       26.4%
###################                                                       26.7%
- 
###################                                                       26.8%
###################                                                       27.1%
###################                                                       27.3%
###################                                                       27.6%
###################                                                       27.7%
####################                                                      28.0%
####################                                                      28.1%
####################                                                      28.4%
####################                                                      28.7%
####################                                                      28.8%
####################                                                      29.1%
- 
#####################                                                     29.2%
#####################                                                     29.5%
#####################                                                     29.8%
#####################                                                     29.9%
#####################                                                     30.2%
#####################                                                     30.4%
######################                                                    30.6%
######################                                                    30.8%
######################                                                    31.0%
######################                                                    31.2%
######################                                                    31.4%
- 
######################                                                    31.6%
######################                                                    31.9%
#######################                                                   32.1%
#######################                                                   32.3%
#######################                                                   32.5%
#######################                                                   32.8%
#######################                                                   32.9%
#######################                                                   33.2%
########################                                                  33.5%
########################                                                  33.6%
- 
########################                                                  33.9%
########################                                                  34.2%
########################                                                  34.3%
########################                                                  34.6%
########################                                                  34.7%
#########################                                                 35.0%
#########################                                                 35.2%
#########################                                                 35.4%
#########################                                                 35.6%
#########################                                                 35.9%
- 
#########################                                                 36.0%
##########################                                                36.3%
##########################                                                36.5%
##########################                                                36.7%
##########################                                                37.0%
##########################                                                37.1%
##########################                                                37.4%
###########################                                               37.5%
###########################                                               37.8%
###########################                                               38.1%
###########################                                               38.2%
- 
###########################                                               38.4%
###########################                                               38.7%
###########################                                               38.8%
############################                                              39.1%
############################                                              39.2%
############################                                              39.5%
############################                                              39.8%
############################                                              40.1%
############################                                              40.2%
#############################                                             40.5%
- 
#############################                                             40.6%
#############################                                             40.9%
#############################                                             41.0%
#############################                                             41.3%
#############################                                             41.5%
##############################                                            41.7%
##############################                                            41.9%
##############################                                            42.1%
##############################                                            42.3%
##############################                                            42.6%
##############################                                            42.8%
- 
##############################                                            43.0%
###############################                                           43.2%
###############################                                           43.4%
###############################                                           43.7%
###############################                                           43.9%
###############################                                           44.1%
###############################                                           44.3%
################################                                          44.5%
################################                                          44.7%
################################                                          44.9%
################################                                          45.1%
- 
################################                                          45.3%
################################                                          45.4%
################################                                          45.7%
################################                                          45.8%
#################################                                         45.9%
#################################                                         46.1%
#################################                                         46.3%
#################################                                         46.6%
#################################                                         46.9%
#################################                                         47.0%
##################################                                        47.3%
- 
##################################                                        47.4%
##################################                                        47.7%
##################################                                        48.0%
##################################                                        48.2%
##################################                                        48.3%
##################################                                        48.6%
###################################                                       48.9%
###################################                                       49.1%
###################################                                       49.4%
###################################                                       49.7%
####################################                                      50.1%
- 
####################################                                      50.4%
####################################                                      50.6%
####################################                                      50.9%
####################################                                      51.2%
#####################################                                     51.6%
#####################################                                     51.8%
#####################################                                     52.1%
#####################################                                     52.4%
#####################################                                     52.6%
######################################                                    52.9%
######################################                                    53.2%
- 
######################################                                    53.5%
######################################                                    53.9%
######################################                                    54.1%
#######################################                                   54.4%
#######################################                                   54.6%
#######################################                                   54.9%
#######################################                                   55.3%
########################################                                  55.6%
########################################                                  55.8%
########################################                                  56.1%
########################################                                  56.4%
- 
########################################                                  56.7%
#########################################                                 57.1%
#########################################                                 57.6%
#########################################                                 58.0%
##########################################                                58.4%
##########################################                                58.8%
##########################################                                59.3%
##########################################                                59.7%
###########################################                               60.1%
###########################################                               60.5%
- 
###########################################                               61.1%
############################################                              61.5%
############################################                              61.9%
############################################                              62.3%
#############################################                             62.7%
#############################################                             63.1%
#############################################                             63.5%
##############################################                            64.0%
##############################################                            64.4%
##############################################                            64.8%
###############################################                           65.3%
###############################################                           65.7%
- 
###############################################                           66.1%
###############################################                           66.5%
################################################                          67.0%
################################################                          67.5%
################################################                          67.9%
#################################################                         68.3%
#################################################                         68.7%
#################################################                         69.1%
##################################################                        69.6%
##################################################                        70.0%
##################################################                        70.4%
- 
###################################################                       70.9%
###################################################                       71.3%
###################################################                       71.7%
###################################################                       72.2%
####################################################                      72.6%
####################################################                      73.0%
####################################################                      73.4%
#####################################################                     74.0%
#####################################################                     74.8%
######################################################                    75.7%
- 
#######################################################                   76.6%
#######################################################                   77.4%
########################################################                  78.2%
########################################################                  79.0%
#########################################################                 80.0%
##########################################################                80.8%
##########################################################                81.6%
###########################################################               82.5%
############################################################              83.5%
############################################################              84.3%
#############################################################             85.1%
- 
#############################################################             86.0%
##############################################################            86.8%
###############################################################           87.6%
###############################################################           88.4%
################################################################          89.4%
#################################################################         90.3%
#################################################################         91.1%
##################################################################        91.9%
##################################################################        92.7%
###################################################################       93.6%
####################################################################      94.5%
- 
####################################################################      95.3%
#####################################################################     96.1%
#####################################################################     97.0%
######################################################################    97.9%
#######################################################################   98.7%
#######################################################################   99.7%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.1.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-03-26 15:43.46 ---> using "7d13a95971eb46bf6f886096759085b476612e26ba2e7f2afb0c1c9d7c4471f2" from cache

/: (run (shell "opam pin add -k version -yn current.0.7.4 0.7.4"))
current is now pinned to version 0.7.4
2026-03-26 15:43.46 ---> using "3f3d264904f9549f3422dec8b47d6ba873452b8c761dccab20c1f9ec5c65647e" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall current.0.7.4;\
               \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\" != 'current.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
current.0.7.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 44 packages
  - install asetmap             0.8.1          [required by prometheus]
  - install astring             0.8.5          [required by current]
  - install base-bytes          base           [required by ocplib-endian]
  - install bos                 0.2.1          [required by current]
  - install cmdliner            2.1.0          [required by current]
  - install conf-libev          4-13           [required by current]
  - install conf-pkg-config     4              [required by conf-sqlite3]
  - install conf-sqlite3        1              [required by sqlite3]
  - install cppo                1.8.0          [required by ppx_deriving]
  - install csexp               1.5.2          [required by dune-configurator]
  - install cstruct             6.2.0          [required by hex]
  - install current             0.7.4 (pinned)
  - install current_incr        0.6.1          [required by current]
  - install dune                3.22.0         [required by current]
  - install dune-compiledb      0.6.0          [required by sqlite3]
  - install dune-configurator   3.22.0         [required by sqlite3]
  - install duration            0.2.1          [required by current]
  - install ezjsonm             1.3.0          [required by dune-compiledb]
  - install fmt                 0.11.0         [required by current]
  - install fpath               0.7.3          [required by current]
  - install hex                 1.5.0          [required by ezjsonm]
  - install jsonm               1.0.2          [required by ezjsonm]
  - install logs                0.10.0         [required by current]
  - install lwt                 6.1.1          [required by current]
  - install lwt-dllist          1.1.0          [required by current]
  - install num                 1.6            [required by sexplib]
  - install ocaml-compiler-libs v0.17.0        [required by ppxlib]
  - install ocamlbuild          0.16.1         [required by astring, bos]
  - install ocamlfind           1.9.8          [required by bos, astring, ppx_deriving]
  - install ocplib-endian       1.2            [required by lwt]
  - install parsexp             v0.17.0        [required by sexplib]
  - install ppx_derivers        1.2.1          [required by ppx_deriving]
  - install ppx_deriving        6.1.1          [required by current]
  - install ppxlib              0.38.0         [required by ppx_deriving]
  - install prometheus          1.3            [required by current]
  - install re                  1.14.0         [required by current]
  - install result              1.5            [required by current]
  - install rresult             0.7.0          [required by bos]
  - install sexplib             v0.17.0        [required by dune-compiledb]
  - install sexplib0            v0.17.0        [required by ppxlib, dune-compiledb]
  - install sqlite3             5.4.0          [required by current]
  - install stdlib-shims        0.3.0          [required by ppxlib]
  - install topkg               1.1.1          [required by astring, bos]
  - install uutf                1.0.4          [required by ezjsonm]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/local/bin/brew "install" "libev" "pkgconf" "sqlite"
- ==> Fetching downloads for: libev, pkgconf and sqlite
- ✔︎ Bottle Manifest libev (4.33)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest sqlite (3.51.3)
- ✔︎ Bottle Manifest sqlite (3.51.3)
- ✔︎ Bottle Manifest readline (8.3.3)
- ✔︎ Bottle libev (4.33)
- ✔︎ Bottle pkgconf (2.5.1)
- ✔︎ Bottle readline (8.3.3)
- ✔︎ Bottle sqlite (3.51.3)
- ==> Pouring libev--4.33.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libev/4.33: 13 files, 495.8KB
- ==> Running `brew cleanup libev`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/pkgconf/2.5.1: 28 files, 383.2KB
- ==> Running `brew cleanup pkgconf`...
- ==> Installing sqlite dependency: readline
- ==> Pouring readline--8.3.3.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/readline/8.3.3: 56 files, 2.6MB
- ==> Pouring sqlite--3.51.3.sequoia.bottle.tar.gz
- ==> Caveats
- sqlite is keg-only, which means it was not symlinked into /usr/local,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
- 
- If you need to have sqlite first in your PATH, run:
-   echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.profile
- 
- For compilers to find sqlite you may need to set:
-   export LDFLAGS="-L/usr/local/opt/sqlite/lib"
-   export CPPFLAGS="-I/usr/local/opt/sqlite/include"
- 
- For pkgconf to find sqlite you may need to set:
-   export PKG_CONFIG_PATH="/usr/local/opt/sqlite/lib/pkgconfig"
- ==> Summary
- 🍺  /usr/local/Cellar/sqlite/3.51.3: 13 files, 5.2MB
- ==> Running `brew cleanup sqlite`...
- ==> Caveats
- ==> sqlite
- sqlite is keg-only, which means it was not symlinked into /usr/local,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
- 
- If you need to have sqlite first in your PATH, run:
-   echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.profile
- 
- For compilers to find sqlite you may need to set:
-   export LDFLAGS="-L/usr/local/opt/sqlite/lib"
-   export CPPFLAGS="-I/usr/local/opt/sqlite/include"
- 
- For pkgconf to find sqlite you may need to set:
-   export PKG_CONFIG_PATH="/usr/local/opt/sqlite/lib/pkgconfig"

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asetmap.0.8.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-libev.4-13  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-sqlite3.1
-> retrieved cstruct.6.2.0  (cached)
-> retrieved current.0.7.4  (cached)
-> retrieved current_incr.0.6.1  (cached)
-> installed conf-libev.4-13
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.1.1  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved prometheus.1.3  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved sqlite3.5.4.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed result.1.5
-> installed lwt-dllist.1.1.0
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed current_incr.0.6.1
-> installed cstruct.6.2.0
-> installed cppo.1.8.0
-> installed hex.1.5.0
-> installed ocplib-endian.1.2
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.22.0
-> installed parsexp.v0.17.0
-> installed sexplib.v0.17.0
-> installed dune-compiledb.0.6.0
-> installed sqlite3.5.4.0
-> installed lwt.6.1.1
-> installed prometheus.1.3
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed ppxlib.0.38.0
-> installed ppx_deriving.6.1.1
-> installed current.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:43.47 ---> using "61ac0ab9baf02d90f67d27743688032bb840980f61e2c37cea7db17c2306b663" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test current.0.7.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile current                 0.7.4 (pinned)
=== install 42 packages
  - install   alcotest                1.9.1          [required by current]
  - install   alcotest-lwt            1.9.1          [required by current]
  - install   angstrom                0.16.1         [required by uri]
  - install   asn1-combinators        0.3.2          [required by x509]
  - install   base                    v0.17.3        [required by ppx_sexp_conv]
  - install   base64                  3.5.2          [required by cohttp]
  - install   bigstringaf             0.10.0         [required by angstrom]
  - install   ca-certs                1.0.1          [required by conduit-lwt-unix]
  - install   cohttp                  6.2.1          [required by cohttp-lwt, cohttp-lwt-unix]
  - install   cohttp-lwt              6.2.1          [required by prometheus-app]
  - install   cohttp-lwt-unix         6.2.1          [required by prometheus-app]
  - install   conduit                 8.0.0          [required by conduit-lwt]
  - install   conduit-lwt             8.0.0          [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix        8.0.0          [required by cohttp-lwt-unix]
  - install   conf-gmp                5              [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec       4              [required by mirage-crypto-pk]
  - install   digestif                1.3.0          [required by ca-certs]
  - install   domain-name             0.5.0          [required by ipaddr]
  - install   eqaf                    0.10           [required by digestif, mirage-crypto]
  - install   gmap                    0.3.0          [required by x509]
  - install   http                    6.2.1          [required by cohttp-lwt, cohttp-lwt-unix]
  - install   ipaddr                  5.6.2          [required by cohttp-lwt]
  - install   ipaddr-sexp             5.6.2          [required by conduit-lwt-unix]
  - install   kdf                     1.0.0          [required by x509]
  - install   macaddr                 5.6.2          [required by ipaddr]
  - install   magic-mime              1.3.1          [required by cohttp-lwt-unix]
  - install   mirage-crypto           2.1.0          [required by ca-certs]
  - install   mirage-crypto-ec        2.1.0          [required by x509]
  - install   mirage-crypto-pk        2.1.0          [required by x509]
  - install   mirage-crypto-rng       2.1.0          [required by x509]
  - install   ocaml-syntax-shims      1.0.0          [required by alcotest]
  - install   ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install   ohex                    0.2.0          [required by ca-certs]
  - install   ppx_sexp_conv           v0.17.1        [required by cohttp-lwt, cohttp-lwt-unix]
  - install   ppxlib_jane             v0.17.4        [required by ppx_sexp_conv]
  - install   prometheus-app          1.3            [required by current]
  - install   ptime                   1.2.0          [required by ca-certs]
  - install   stringext               1.6.0          [required by cohttp]
  - install   uri                     4.4.0          [required by cohttp-lwt]
  - install   uri-sexp                4.4.0          [required by cohttp]
  - install   x509                    1.0.6          [required by ca-certs]
  - install   zarith                  1.14           [required by mirage-crypto-pk]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/local/bin/brew "install" "gmp"
- ==> Fetching downloads for: gmp
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle gmp (6.3.0)
- ==> Pouring gmp--6.3.0.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1  (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
-> retrieved angstrom.0.16.1  (https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz)
-> retrieved asn1-combinators.0.3.2  (https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v0.3.2/asn1-combinators-0.3.2.tbz)
-> retrieved base.v0.17.3  (https://github.com/janestreet/base/archive/refs/tags/v0.17.3.tar.gz)
-> retrieved base64.3.5.2  (https://github.com/mirage/ocaml-base64/releases/download/v3.5.2/base64-3.5.2.tbz)
-> retrieved bigstringaf.0.10.0  (https://github.com/inhabitedtype/bigstringaf/archive/0.10.0.tar.gz)
-> installed base64.3.5.2
-> retrieved ca-certs.1.0.1  (https://github.com/mirage/ca-certs/releases/download/v1.0.1/ca-certs-1.0.1.tbz)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (https://github.com/mirage/ocaml-cohttp/releases/download/v6.2.1/cohttp-6.2.1.tbz)
-> installed bigstringaf.0.10.0
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (https://github.com/mirage/ocaml-conduit/releases/download/v8.0.0/conduit-8.0.0.tbz)
-> retrieved conf-gmp.5  (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp/test.c.4)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4  (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp-powm-sec/test.c.3)
-> installed conf-gmp-powm-sec.4
-> installed http.6.2.1
-> retrieved current.0.7.4  (https://github.com/ocurrent/ocurrent/releases/download/v0.7.4/ocurrent-0.7.4.tbz)
-> retrieved digestif.1.3.0  (https://github.com/mirage/digestif/releases/download/v1.3.0/digestif-1.3.0.tbz)
-> retrieved domain-name.0.5.0  (https://github.com/hannesm/domain-name/releases/download/v0.5.0/domain-name-0.5.0.tbz)
-> retrieved eqaf.0.10  (https://github.com/mirage/eqaf/releases/download/v0.10/eqaf-0.10.tbz)
-> retrieved gmap.0.3.0  (https://github.com/hannesm/gmap/releases/download/0.3.0/gmap-0.3.0.tbz)
-> installed domain-name.0.5.0
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (https://github.com/mirage/ocaml-ipaddr/releases/download/v5.6.2/ipaddr-5.6.2.tbz)
-> installed gmap.0.3.0
-> retrieved kdf.1.0.0  (https://github.com/robur-coop/kdf/releases/download/v1.0.0/kdf-1.0.0.tbz)
-> installed eqaf.0.10
-> installed macaddr.5.6.2
-> retrieved magic-mime.1.3.1  (https://github.com/mirage/ocaml-magic-mime/releases/download/v1.3.1/magic-mime-1.3.1.tbz)
-> installed ipaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed digestif.1.3.0
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (https://github.com/mirage/mirage-crypto/releases/download/v2.1.0/mirage-crypto-2.1.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ohex.0.2.0  (https://github.com/ocaml/opam-source-archives/raw/main/ohex-0.2.0.tar.gz)
-> retrieved ppx_sexp_conv.v0.17.1  (https://github.com/janestreet/ppx_sexp_conv/archive/refs/tags/v0.17.1.tar.gz)
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> retrieved ppxlib_jane.v0.17.4  (https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.4.tar.gz)
-> retrieved prometheus-app.1.3  (https://github.com/mirage/prometheus/releases/download/v1.3/prometheus-1.3.tbz)
-> retrieved ptime.1.2.0  (https://erratique.ch/software/ptime/releases/ptime-1.2.0.tbz)
-> retrieved stringext.1.6.0  (https://github.com/rgrinberg/stringext/releases/download/1.6.0/stringext-1.6.0.tbz)
-> installed mirage-crypto.2.1.0
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz)
-> retrieved x509.1.0.6  (https://github.com/mirleft/ocaml-x509/releases/download/v1.0.6/x509-1.0.6.tbz)
-> installed angstrom.0.16.1
-> installed stringext.1.6.0
-> retrieved zarith.1.14  (https://github.com/ocaml/Zarith/archive/release-1.14.tar.gz)
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.2.1.0
-> installed alcotest.1.9.1
-> installed ppxlib_jane.v0.17.4
-> removed   current.0.7.4
-> installed ptime.1.2.0
-> installed alcotest-lwt.1.9.1
-> installed uri.4.4.0
-> installed asn1-combinators.0.3.2
-> installed zarith.1.14
-> installed mirage-crypto-ec.2.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed base.v0.17.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppx_sexp_conv.v0.17.1
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed conduit-lwt.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed cohttp-lwt-unix.6.2.1
-> installed prometheus-app.1.3
-> installed current.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:44.58 ---> saved as "cfc3adce75d1db04476a505001fde21bd36011a5cb4a469763b8b42282de936d"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [current.0.7.4: extract]
-> retrieved current.0.7.4  (cached)
Processing  2/4: [current: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/current.0.7.4)
- (cd _build/default/test && ./test.exe)
- Testing `test'.
- This run has ID `UT86Q2R9'.
- 
-   [OK]          pipelines            0   v1.
-   [OK]          pipelines            1   v1-cancel.
-   [OK]          pipelines            2   v2.
-   [OK]          pipelines            3   v3.
-   [OK]          pipelines            4   v4.
-   [OK]          pipelines            5   v5.
-   [OK]          pipelines            6   v5-nil.
-   [OK]          pipelines            7   option-some.
-   [OK]          pipelines            8   option-none.
-   [OK]          pipelines            9   state.
-   [OK]          pipelines           10   pair.
-   [OK]          pipelines           11   latch.
-   [OK]          pipelines           12   context.
-   [OK]          terms                0   all_labelled.
-   [OK]          terms                1   metadata.
-   [OK]          terms                2   observe.
-   [OK]          cache                0   basic.
-   [OK]          cache                1   expires.
-   [OK]          cache                2   autocancel.
-   [OK]          cache                3   output.
-   [OK]          cache                4   output_autocancel.
-   [OK]          cache                5   output_retry.
-   [OK]          cache                6   output_retry_new.
-   [OK]          cache                7   latched.
-   [OK]          cache                8   latched_autocancel.
-   [OK]          cache                9   clear_error.
-   [OK]          monitor              0   basic.
-   [OK]          job                  0   streams.
-   [OK]          job                  1   output.
-   [OK]          job                  2   pp_cmd.
-   [OK]          job                  3   cancel.
-   [OK]          job                  4   pool.
-   [OK]          job                  5   pool_cancel.
-   [OK]          job                  6   pool_priority.
-   [OK]          log_matcher          0   basic.
- 
- Full test results in `~/.opam/5.4.0/.opam-switch/build/current.0.7.4/_build/default/test/_build/_tests/test'.
- Test Successful in 0.255s. 35 tests run.
-> compiled  current.0.7.4
-> removed   current.0.7.4
-> installed current.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:45.10 ---> saved as "0a5920041033468fe1cfb2b262ce61c738b6b1e1c7626a8497243769da441fc6"
Job succeeded
2026-03-26 15:45.24: Job succeeded