(not at the head of any monitored branch or PR)
2026-04-09 11:57.58: New job: test caqti-driver-sqlite3.2.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29690/head (6b2464946e569e2d90f4b72ef1fe7f0196f077a4)
                              on macos-homebrew-ocaml-4.14/arm64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29690/head" && git reset --hard 6b246494
git fetch origin master
git merge --no-edit fde524a7a5fc26108522edaefc3bcf346adb744a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn caqti-driver-sqlite3.2.3.0 2.3.0
RUN opam reinstall caqti-driver-sqlite3.2.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caqti-driver-sqlite3.2.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test caqti-driver-sqlite3.2.3.0) || true
RUN opam reinstall --with-test --verbose caqti-driver-sqlite3.2.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caqti-driver-sqlite3.2.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-09 11:57.58: Using cache hint "macos-homebrew-ocaml-4.14-caqti-driver-sqlite3.2.3.0-6b2464946e569e2d90f4b72ef1fe7f0196f077a4"
2026-04-09 11:57.58: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn caqti-driver-sqlite3.2.3.0 2.3.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall caqti-driver-sqlite3.2.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caqti-driver-sqlite3.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test caqti-driver-sqlite3.2.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caqti-driver-sqlite3.2.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caqti-driver-sqlite3.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-09 11:57.58: Waiting for resource in pool OCluster
2026-04-09 11:58.02: Waiting for worker…
2026-04-09 12:33.18: Got resource from pool OCluster
Building on m1-worker-02
All commits already cached
Updating files:  61% (11546/18647)
Updating files:  62% (11562/18647)
Updating files:  63% (11748/18647)
Updating files:  64% (11935/18647)
Updating files:  65% (12121/18647)
Updating files:  66% (12308/18647)
Updating files:  67% (12494/18647)
Updating files:  68% (12680/18647)
Updating files:  69% (12867/18647)
Updating files:  70% (13053/18647)
Updating files:  71% (13240/18647)
Updating files:  72% (13426/18647)
Updating files:  73% (13613/18647)
Updating files:  74% (13799/18647)
Updating files:  75% (13986/18647)
Updating files:  76% (14172/18647)
Updating files:  77% (14359/18647)
Updating files:  78% (14545/18647)
Updating files:  79% (14732/18647)
Updating files:  80% (14918/18647)
Updating files:  81% (15105/18647)
Updating files:  82% (15291/18647)
Updating files:  83% (15478/18647)
Updating files:  84% (15664/18647)
Updating files:  85% (15850/18647)
Updating files:  86% (16037/18647)
Updating files:  87% (16223/18647)
Updating files:  88% (16410/18647)
Updating files:  89% (16596/18647)
Updating files:  90% (16783/18647)
Updating files:  91% (16969/18647)
Updating files:  92% (17156/18647)
Updating files:  93% (17342/18647)
Updating files:  94% (17529/18647)
Updating files:  95% (17715/18647)
Updating files:  96% (17902/18647)
Updating files:  97% (18088/18647)
Updating files:  98% (18275/18647)
Updating files:  99% (18461/18647)
Updating files: 100% (18647/18647)
Updating files: 100% (18647/18647), done.
HEAD is now at fde524a7a5 Merge pull request #29672 from dinosaure/release-jws-v0.0.2
Updating fde524a7a5..6b2464946e
Fast-forward
 packages/caqti-async/caqti-async.2.2.4/opam        |  2 +-
 .../caqti-driver-mariadb.2.3.0/opam                | 33 +++++++++++
 .../caqti-driver-pgx/caqti-driver-pgx.2.3.0/opam   | 33 +++++++++++
 .../caqti-driver-postgresql.2.3.0/opam             | 37 ++++++++++++
 .../caqti-driver-sqlite3.2.3.0/opam                | 33 +++++++++++
 packages/caqti-dynload/caqti-dynload.2.3.0/opam    | 41 +++++++++++++
 packages/caqti-eio/caqti-eio.2.2.4/opam            |  2 +-
 packages/caqti-lwt/caqti-lwt.2.3.0/opam            | 38 ++++++++++++
 packages/caqti-miou/caqti-miou.2.2.4/opam          |  2 +-
 packages/caqti-mirage/caqti-mirage.2.2.4/opam      |  6 +-
 packages/caqti-tls/caqti-tls.2.1.2/opam            |  2 +-
 packages/caqti/caqti.2.3.0/opam                    | 69 ++++++++++++++++++++++
 12 files changed, 291 insertions(+), 7 deletions(-)
 create mode 100644 packages/caqti-driver-mariadb/caqti-driver-mariadb.2.3.0/opam
 create mode 100644 packages/caqti-driver-pgx/caqti-driver-pgx.2.3.0/opam
 create mode 100644 packages/caqti-driver-postgresql/caqti-driver-postgresql.2.3.0/opam
 create mode 100644 packages/caqti-driver-sqlite3/caqti-driver-sqlite3.2.3.0/opam
 create mode 100644 packages/caqti-dynload/caqti-dynload.2.3.0/opam
 create mode 100644 packages/caqti-lwt/caqti-lwt.2.3.0/opam
 create mode 100644 packages/caqti/caqti.2.3.0/opam

(from macos-homebrew-ocaml-4.14)
2026-04-09 12:33.21 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-04-09 12:33.21 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-04-09 12:33.21 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=arm64 os=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 7
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-04-09 12:33.21 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-04-09 12:33.21 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-04-09 12:33.23 ---> using "1aa33d6ed80d27c5ad5de2c76081319d359dff796c085434f353033cf81e82d5" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-04-09 12:33.23 ---> using "2ff7988efd2c13adb1cbb21ea960650e072b3114562d15ce1afca530607698d1" from cache

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

                                                                           0.6%
#                                                                          1.4%
#                                                                          2.3%
##                                                                         3.0%
##                                                                         3.8%
###                                                                        4.6%
###                                                                        5.5%
- 
####                                                                       6.3%
#####                                                                      7.0%
#####                                                                      7.8%
######                                                                     8.6%
######                                                                     9.5%
#######                                                                   10.2%
#######                                                                   11.0%
########                                                                  11.9%
#########                                                                 12.5%
#########                                                                 13.2%
#########                                                                 13.8%
- 
##########                                                                14.1%
##########                                                                14.3%
##########                                                                14.7%
##########                                                                15.0%
##########                                                                15.2%
###########                                                               15.5%
###########                                                               15.8%
###########                                                               16.1%
###########                                                               16.3%
###########                                                               16.6%
- 
############                                                              16.9%
############                                                              17.1%
############                                                              17.4%
############                                                              17.7%
############                                                              17.9%
#############                                                             18.2%
#############                                                             18.6%
#############                                                             18.8%
#############                                                             19.1%
#############                                                             19.3%
##############                                                            19.7%
- 
##############                                                            20.1%
##############                                                            20.6%
###############                                                           21.0%
###############                                                           21.4%
###############                                                           21.8%
################                                                          22.3%
################                                                          22.7%
################                                                          23.0%
################                                                          23.4%
#################                                                         23.8%
#################                                                         24.3%
- 
#################                                                         24.7%
##################                                                        25.1%
##################                                                        25.5%
##################                                                        25.9%
##################                                                        26.3%
###################                                                       26.8%
###################                                                       27.1%
###################                                                       27.5%
####################                                                      27.9%
####################                                                      28.4%
####################                                                      28.8%
- 
#####################                                                     29.2%
#####################                                                     29.6%
#####################                                                     30.0%
#####################                                                     30.5%
######################                                                    30.9%
######################                                                    31.3%
######################                                                    31.6%
#######################                                                   32.0%
#######################                                                   32.5%
#######################                                                   32.9%
#######################                                                   33.3%
- 
########################                                                  34.1%
#########################                                                 34.9%
#########################                                                 35.6%
##########################                                                36.5%
##########################                                                37.3%
###########################                                               38.0%
###########################                                               38.8%
############################                                              39.7%
#############################                                             40.5%
#############################                                             41.3%
##############################                                            42.0%
- 
##############################                                            42.9%
###############################                                           43.7%
################################                                          44.6%
################################                                          45.4%
#################################                                         46.1%
#################################                                         46.9%
##################################                                        47.8%
##################################                                        48.5%
###################################                                       49.3%
####################################                                      50.2%
####################################                                      51.0%
- 
#####################################                                     51.8%
#####################################                                     52.5%
######################################                                    53.4%
#######################################                                   54.2%
#######################################                                   55.0%
########################################                                  55.7%
########################################                                  56.6%
#########################################                                 57.4%
#########################################                                 58.1%
##########################################                                58.9%
###########################################                               59.8%
###########################################                               60.6%
- 
############################################                              61.4%
############################################                              62.1%
#############################################                             63.0%
#############################################                             63.8%
##############################################                            64.6%
###############################################                           65.5%
###############################################                           66.2%
################################################                          67.0%
################################################                          67.8%
#################################################                         68.6%
#################################################                         69.4%
- 
##################################################                        70.2%
###################################################                       71.1%
###################################################                       71.9%
####################################################                      72.6%
####################################################                      73.5%
#####################################################                     74.3%
######################################################                    75.2%
######################################################                    76.0%
#######################################################                   76.7%
#######################################################                   77.1%
#######################################################                   77.6%
- 
########################################################                  78.0%
########################################################                  78.4%
########################################################                  78.8%
#########################################################                 79.3%
#########################################################                 80.0%
##########################################################                80.8%
##########################################################                81.7%
###########################################################               82.5%
###########################################################               83.0%
############################################################              83.9%
############################################################              84.5%
- 
#############################################################             85.1%
#############################################################             85.5%
#############################################################             85.8%
##############################################################            86.6%
###############################################################           87.5%
###############################################################           88.3%
################################################################          89.2%
################################################################          89.9%
#################################################################         90.3%
#################################################################         90.8%
#################################################################         91.6%
- 
##################################################################        92.4%
##################################################################        93.0%
###################################################################       93.4%
###################################################################       93.9%
###################################################################       94.3%
####################################################################      94.7%
####################################################################      95.3%
#####################################################################     96.1%
#####################################################################     96.9%
######################################################################    97.5%
######################################################################    98.2%
- 
#######################################################################   99.0%
#######################################################################   99.8%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.2_1.arm64_big_sur.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-04-09 12:33.23 ---> using "4ce352a8a21065c0d9032bdddce6067bca0462b6fd5dee899dc17cf136c8f72e" from cache

/: (run (shell "opam pin add -k version -yn caqti-driver-sqlite3.2.3.0 2.3.0"))
caqti-driver-sqlite3 is now pinned to version 2.3.0
2026-04-09 12:33.23 ---> using "07af3a88cef10052e326bd5f608a80bd7e2f91e062a000bbfc532e478d8effdb" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall caqti-driver-sqlite3.2.3.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'caqti-driver-sqlite3.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
caqti-driver-sqlite3.2.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 63 packages
  - install angstrom             0.16.1         [required by caqti]
  - install asn1-combinators     0.3.2          [required by x509]
  - install astring              0.8.5          [required by fpath]
  - install base64               3.5.2          [required by x509]
  - install bigstringaf          0.10.0         [required by caqti]
  - install caqti                2.3.0          [required by caqti-driver-sqlite3]
  - install caqti-driver-sqlite3 2.3.0 (pinned)
  - install conf-gmp             5              [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec    4              [required by mirage-crypto-pk]
  - install conf-pkg-config      4              [required by conf-sqlite3]
  - install conf-sqlite3         1              [required by sqlite3]
  - install csexp                1.5.2          [required by dune-private-libs]
  - install cstruct              6.2.0          [required by hex]
  - install digestif             1.3.0          [required by mirage-crypto-ec, kdf, mirage-crypto-pk]
  - install domain-name          0.5.0          [required by caqti]
  - install dune                 3.22.1         [required by caqti-driver-sqlite3]
  - install dune-compiledb       0.6.0          [required by sqlite3]
  - install dune-configurator    3.22.1         [required by sqlite3]
  - install dune-private-libs    3.22.1         [required by dune-site]
  - install dune-site            3.22.1         [required by caqti]
  - install duration             0.2.1          [required by mirage-crypto-rng]
  - install dyn                  3.22.1         [required by dune-private-libs]
  - install eqaf                 0.10           [required by mirage-crypto-ec, mirage-crypto-pk]
  - install ezjsonm              1.3.0          [required by dune-compiledb]
  - install fmt                  0.11.0         [required by logs, x509]
  - install fpath                0.7.3          [required by dune-compiledb]
  - install fs-io                3.22.1         [required by stdune]
  - install gmap                 0.3.0          [required by x509]
  - install hex                  1.5.0          [required by ezjsonm]
  - install ipaddr               5.6.2          [required by caqti]
  - install jsonm                1.0.2          [required by ezjsonm]
  - install kdf                  1.0.0          [required by x509]
  - install logs                 0.10.0         [required by caqti]
  - install lru                  0.3.1          [required by caqti]
  - install lwt-dllist           1.1.0          [required by caqti]
  - install macaddr              5.6.2          [required by ipaddr]
  - install mirage-crypto        2.1.0          [required by x509]
  - 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 mtime                2.1.0          [required by caqti]
  - install num                  1.6            [required by sexplib]
  - install ocaml-syntax-shims   1.0.0          [required by angstrom]
  - install ocamlbuild           0.16.1         [required by mtime, logs, ptime]
  - install ocamlfind            1.9.8          [required by mtime, logs, ptime]
  - install ohex                 0.2.0          [required by x509]
  - install ordering             3.22.1         [required by dyn, stdune]
  - install parsexp              v0.16.0        [required by sexplib]
  - install pp                   2.0.0          [required by dune-private-libs]
  - install psq                  0.2.1          [required by lru]
  - install ptime                1.2.0          [required by caqti]
  - install seq                  base           [required by psq]
  - install sexplib              v0.16.0        [required by dune-compiledb]
  - install sexplib0             v0.16.0        [required by dune-compiledb]
  - install sqlite3              5.4.0          [required by caqti-driver-sqlite3]
  - install stdune               3.22.1         [required by dune-private-libs]
  - install stringext            1.6.0          [required by uri]
  - install top-closure          3.22.1         [required by stdune]
  - install topkg                1.1.1          [required by mtime, logs, ptime]
  - install uri                  4.4.0          [required by caqti]
  - install uutf                 1.0.4          [required by ezjsonm]
  - install x509                 1.0.6          [required by caqti]
  - install zarith               1.14           [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    gmp 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

+ /opt/homebrew/bin/brew "install" "gmp" "pkgconf" "sqlite"
- ==> Fetching downloads for: gmp, pkgconf and sqlite
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ 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 gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ✔︎ Bottle readline (8.3.3)
- ✔︎ Bottle sqlite (3.51.3)
- ==> Pouring gmp--6.3.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/pkgconf/2.5.1: 28 files, 531.2KB
- ==> Running `brew cleanup pkgconf`...
- ==> Installing sqlite dependency: readline
- ==> Pouring readline--8.3.3.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/readline/8.3.3: 56 files, 2.7MB
- ==> Pouring sqlite--3.51.3.arm64_sequoia.bottle.tar.gz
- ==> Caveats
- sqlite is keg-only, which means it was not symlinked into /opt/homebrew,
- 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="/opt/homebrew/opt/sqlite/bin:$PATH"' >> ~/.profile
- 
- For compilers to find sqlite you may need to set:
-   export LDFLAGS="-L/opt/homebrew/opt/sqlite/lib"
-   export CPPFLAGS="-I/opt/homebrew/opt/sqlite/include"
- 
- For pkgconf to find sqlite you may need to set:
-   export PKG_CONFIG_PATH="/opt/homebrew/opt/sqlite/lib/pkgconfig"
- ==> Summary
- 🍺  /opt/homebrew/Cellar/sqlite/3.51.3: 13 files, 5.3MB
- ==> Running `brew cleanup sqlite`...
- ==> Caveats
- ==> sqlite
- sqlite is keg-only, which means it was not symlinked into /opt/homebrew,
- 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="/opt/homebrew/opt/sqlite/bin:$PATH"' >> ~/.profile
- 
- For compilers to find sqlite you may need to set:
-   export LDFLAGS="-L/opt/homebrew/opt/sqlite/lib"
-   export CPPFLAGS="-I/opt/homebrew/opt/sqlite/include"
- 
- For pkgconf to find sqlite you may need to set:
-   export PKG_CONFIG_PATH="/opt/homebrew/opt/sqlite/lib/pkgconfig"

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved caqti.2.3.0, caqti-driver-sqlite3.2.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-gmp.5
-> installed conf-sqlite3.1
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.22.1, dune-configurator.3.22.1, dune-private-libs.3.22.1, dune-site.3.22.1, dyn.3.22.1, fs-io.3.22.1, ordering.3.22.1, stdune.3.22.1, top-closure.3.22.1  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sqlite3.5.4.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed dune.3.22.1
-> installed base64.3.5.2
-> installed eqaf.0.10
-> installed duration.0.2.1
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed macaddr.5.6.2
-> installed hex.1.5.0
-> installed lwt-dllist.1.1.0
-> installed digestif.1.3.0
-> installed ohex.0.2.0
-> installed ipaddr.5.6.2
-> installed ocaml-syntax-shims.1.0.0
-> installed dune-configurator.3.22.1
-> installed gmap.0.3.0
-> installed fs-io.3.22.1
-> installed pp.2.0.0
-> installed mirage-crypto.2.1.0
-> installed bigstringaf.0.10.0
-> installed stringext.1.6.0
-> installed sexplib0.v0.16.0
-> installed psq.0.2.1
-> installed ordering.3.22.1
-> installed kdf.1.0.0
-> installed lru.0.3.1
-> installed parsexp.v0.16.0
-> installed ezjsonm.1.3.0
-> installed angstrom.0.16.1
-> installed mirage-crypto-rng.2.1.0
-> installed top-closure.3.22.1
-> installed mirage-crypto-pk.2.1.0
-> installed dyn.3.22.1
-> installed mirage-crypto-ec.2.1.0
-> installed uri.4.4.0
-> installed sexplib.v0.16.0
-> installed dune-compiledb.0.6.0
-> installed x509.1.0.6
-> installed sqlite3.5.4.0
-> installed stdune.3.22.1
-> installed dune-private-libs.3.22.1
-> installed dune-site.3.22.1
-> installed caqti.2.3.0
-> installed caqti-driver-sqlite3.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-09 12:33.23 ---> using "dd4e22561aa4763876863f501f61b781e7f05ff973261fb40db2e25a079f3940" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test caqti-driver-sqlite3.2.3.0) || true"))
The following actions will be performed:
=== remove 3 packages
  - remove    dune-compiledb       0.6.0              [conflicts with ezjsonm]
  - remove    parsexp              v0.16.0            [conflicts with sexplib0]
  - remove    sexplib              v0.16.0            [conflicts with sexplib0]
=== downgrade 1 package
  - downgrade sqlite3              5.4.0 to 5.3.1     [required by caqti-driver-sqlite3]
=== recompile 13 packages
  - recompile caqti                2.3.0              [uses logs]
  - recompile caqti-driver-sqlite3 2.3.0 (pinned)
  - recompile cstruct              6.2.0              [uses fmt]
  - recompile ezjsonm              1.3.0              [uses uutf]
  - recompile fmt                  0.11.0             [uses cmdliner]
  - recompile hex                  1.5.0              [uses cstruct]
  - recompile jsonm                1.0.2              [uses uutf]
  - recompile logs                 0.10.0             [uses cmdliner]
  - recompile mirage-crypto-ec     2.1.0              [uses mirage-crypto-rng]
  - recompile mirage-crypto-pk     2.1.0              [uses mirage-crypto-rng]
  - recompile mirage-crypto-rng    2.1.0              [uses logs]
  - recompile uutf                 1.0.4              [uses cmdliner]
  - recompile x509                 1.0.6              [uses fmt]
=== upgrade 1 package
  - upgrade   sexplib0             v0.16.0 to v0.17.0 [required by ezjsonm]
=== install 4 packages
  - install   alcotest             1.9.1              [required by caqti-driver-sqlite3]
  - install   cmdliner             2.1.0              [required by caqti-driver-sqlite3]
  - install   re                   1.14.0             [required by alcotest]
  - install   stdlib-shims         0.3.0              [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
-> retrieved caqti.2.3.0, caqti-driver-sqlite3.2.3.0  (https://github.com/paurkedal/ocaml-caqti/releases/download/v2.3.0/caqti-v2.3.0.tbz)
[ERROR] Failed to get sources of cmdliner.2.1.0: curl failed
-> retrieved cstruct.6.2.0  (https://github.com/mirage/ocaml-cstruct/releases/download/v6.2.0/cstruct-6.2.0.tbz)
-> retrieved ezjsonm.1.3.0  (https://github.com/mirage/ezjsonm/releases/download/v1.3.0/ezjsonm-1.3.0.tbz)
-> retrieved fmt.0.11.0  (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
-> retrieved hex.1.5.0  (https://github.com/mirage/ocaml-hex/releases/download/v1.5.0/hex-1.5.0.tbz)
-> retrieved jsonm.1.0.2  (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> retrieved logs.0.10.0  (https://erratique.ch/software/logs/releases/logs-0.10.0.tbz)
-> retrieved 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 re.1.14.0  (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved sexplib0.v0.17.0  (https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved sqlite3.5.3.1  (https://github.com/mmottl/sqlite3-ocaml/releases/download/5.3.1/sqlite3-5.3.1.tbz)
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> retrieved x509.1.0.6  (https://github.com/mirleft/ocaml-x509/releases/download/v1.0.6/x509-1.0.6.tbz)

#=== ERROR while fetching sources for cmdliner.2.1.0 ==========================#
OpamSolution.Fetch_fail("https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.0.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /private/var/folders/gk/c5n8_58s5q16jwww_7042pq00000z8/T/opam-29671-566a81/cmdliner-2.1.0.tbz.part -- https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.0.tbz\" exited with code 56)")


<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - fetch cmdliner 2.1.0
+- 
+- The following changes have been performed (the rest was aborted)
| - install re           1.14.0
| - install stdlib-shims 0.3.0
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /opt/homebrew/bin/opam switch import "/Users/mac1000/.opam/4.14.2/.opam-switch/backup/state-20260409123324.export"
2026-04-09 12:41.38 ---> saved as "7f48a4194deed6f355aa7ed69b4935bd39028c8ee0a858ed275a6b2d56f82dcf"

/: (run (shell  "opam reinstall --with-test --verbose caqti-driver-sqlite3.2.3.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'caqti-driver-sqlite3.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
The following actions will be performed:
=== remove 3 packages
  - remove    dune-compiledb       0.6.0              [conflicts with ezjsonm]
  - remove    parsexp              v0.16.0            [conflicts with sexplib0]
  - remove    sexplib              v0.16.0            [conflicts with sexplib0]
=== downgrade 1 package
  - downgrade sqlite3              5.4.0 to 5.3.1     [required by caqti-driver-sqlite3]
=== recompile 13 packages
  - recompile caqti                2.3.0              [uses logs]
  - recompile caqti-driver-sqlite3 2.3.0 (pinned)
  - recompile cstruct              6.2.0              [uses fmt]
  - recompile ezjsonm              1.3.0              [uses uutf]
  - recompile fmt                  0.11.0             [uses cmdliner]
  - recompile hex                  1.5.0              [uses cstruct]
  - recompile jsonm                1.0.2              [uses uutf]
  - recompile logs                 0.10.0             [uses cmdliner]
  - recompile mirage-crypto-ec     2.1.0              [uses mirage-crypto-rng]
  - recompile mirage-crypto-pk     2.1.0              [uses mirage-crypto-rng]
  - recompile mirage-crypto-rng    2.1.0              [uses logs]
  - recompile uutf                 1.0.4              [uses cmdliner]
  - recompile x509                 1.0.6              [uses fmt]
=== upgrade 1 package
  - upgrade   sexplib0             v0.16.0 to v0.17.0 [required by ezjsonm]
=== install 2 packages
  - install   alcotest             1.9.1              [required by caqti-driver-sqlite3]
  - install   cmdliner             2.1.0              [required by caqti-driver-sqlite3]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/66: [alcotest.1.9.1: extract]
-> retrieved alcotest.1.9.1  (cached)
Processing  2/66: [caqti.2.3.0: extract]
-> retrieved caqti.2.3.0, caqti-driver-sqlite3.2.3.0  (cached)
Processing  3/66: [cmdliner.2.1.0: http]
Processing  3/66: [cmdliner.2.1.0: extract]
-> retrieved cmdliner.2.1.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.0.tbz)
Processing  4/66: [cstruct.6.2.0: extract]
Processing  5/66: [cstruct.6.2.0: extract] [cmdliner: make all]
-> retrieved cstruct.6.2.0  (cached)
Processing  5/66: [cmdliner: make all]
Processing  6/66: [ezjsonm.1.3.0: extract] [cmdliner: make all]
-> retrieved ezjsonm.1.3.0  (cached)
Processing  6/66: [cmdliner: make all]
Processing  7/66: [fmt.0.11.0: extract] [cmdliner: make all]
-> retrieved fmt.0.11.0  (cached)
Processing  7/66: [cmdliner: make all]
Processing  8/66: [hex.1.5.0: extract] [cmdliner: make all]
-> retrieved hex.1.5.0  (cached)
Processing  8/66: [cmdliner: make all]
Processing  9/66: [jsonm.1.0.2: extract] [cmdliner: make all]
-> retrieved jsonm.1.0.2  (cached)
Processing  9/66: [cmdliner: make all]
Processing 10/66: [logs.0.10.0: extract] [cmdliner: make all]
-> retrieved logs.0.10.0  (cached)
Processing 10/66: [cmdliner: make all]
Processing 11/66: [mirage-crypto-ec.2.1.0 + 2 others: extract] [cmdliner: make all]
-> retrieved mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (cached)
Processing 11/66: [cmdliner: make all]
Processing 12/66: [sexplib0.v0.17.0: extract] [cmdliner: make all]
-> retrieved sexplib0.v0.17.0  (cached)
Processing 12/66: [cmdliner: make all]
Processing 13/66: [sqlite3.5.3.1: extract] [cmdliner: make all]
Processing 14/66: [sqlite3.5.3.1: extract] [cmdliner: make all] [sexplib0: dune build]
-> retrieved sqlite3.5.3.1  (cached)
Processing 14/66: [cmdliner: make all] [sexplib0: dune build]
Processing 15/66: [uutf.1.0.4: extract] [cmdliner: make all] [sexplib0: dune build]
Processing 16/66: [uutf.1.0.4: extract] [cmdliner: make all] [sexplib0: dune build] [sqlite3: dune build]
-> retrieved uutf.1.0.4  (cached)
Processing 16/66: [cmdliner: make all] [sexplib0: dune build] [sqlite3: dune build]
Processing 17/66: [x509.1.0.6: extract] [cmdliner: make all] [sexplib0: dune build] [sqlite3: dune build]
-> retrieved x509.1.0.6  (cached)
Processing 17/66: [cmdliner: make all] [sexplib0: dune build] [sqlite3: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sqlite3" "-j" "7" "@install" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/sqlite3.5.3.1)
-> compiled  sqlite3.5.3.1
Processing 17/66: [cmdliner: make all] [sexplib0: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sexplib0" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/sexplib0.v0.17.0)
-> compiled  sexplib0.v0.17.0
Processing 17/66: [cmdliner: make all]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "make" "all" "PREFIX=/Users/mac1000/.opam/4.14.2" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/cmdliner.2.1.0)
- ocaml build.ml cma
- ocaml build.ml cmxa
- ocaml build.ml natexe
- _build/src/tool/cmdliner generic-completion bash > _build/src/tool/bash-completion.sh
- _build/src/tool/cmdliner tool-completion bash cmdliner > _build/src/tool/bash-cmdliner.sh
- _build/src/tool/cmdliner generic-completion zsh > _build/src/tool/zsh-completion.sh
- _build/src/tool/cmdliner tool-completion zsh cmdliner > _build/src/tool/zsh-cmdliner.sh
- _build/src/tool/cmdliner generic-completion pwsh > _build/src/tool/pwsh-completion.ps1
- _build/src/tool/cmdliner tool-completion pwsh cmdliner > _build/src/tool/pwsh-cmdliner.ps1
- _build/src/tool/cmdliner install tool-manpages _build/src/tool/cmdliner _build/src/tool/man
- Creating directory _build/src/tool/man/man1
- Writing _build/src/tool/man/man1/cmdliner.1
- Writing _build/src/tool/man/man1/cmdliner-generic-completion.1
- Writing _build/src/tool/man/man1/cmdliner-install.1
- Writing _build/src/tool/man/man1/cmdliner-install-generic-completion.1
- Writing _build/src/tool/man/man1/cmdliner-install-tool-completion.1
- Writing _build/src/tool/man/man1/cmdliner-install-tool-manpages.1
- Writing _build/src/tool/man/man1/cmdliner-install-tool-support.1
- Writing _build/src/tool/man/man1/cmdliner-tool-commands.1
- Writing _build/src/tool/man/man1/cmdliner-tool-completion.1
- ocaml build.ml cmxs
-> compiled  cmdliner.2.1.0
-> removed   caqti-driver-sqlite3.2.3.0
-> removed   caqti.2.3.0
-> removed   sqlite3.5.4.0
-> removed   dune-compiledb.0.6.0
-> removed   ezjsonm.1.3.0
-> removed   hex.1.5.0
-> removed   cstruct.6.2.0
-> removed   jsonm.1.0.2
-> removed   sexplib.v0.16.0
-> removed   parsexp.v0.16.0
-> removed   sexplib0.v0.16.0
-> removed   uutf.1.0.4
-> removed   x509.1.0.6
-> removed   mirage-crypto-ec.2.1.0
-> removed   mirage-crypto-pk.2.1.0
-> removed   mirage-crypto-rng.2.1.0
-> removed   logs.0.10.0
-> removed   fmt.0.11.0
Processing 36/66: [cmdliner: make install]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" "BINDIR=/Users/mac1000/.opam/4.14.2/bin" "LIBDIR=/Users/mac1000/.opam/4.14.2/lib/cmdliner" "DOCDIR=/Users/mac1000/.opam/4.14.2/doc/cmdliner" "SHAREDIR=/Users/mac1000/.opam/4.14.2/share" "MANDIR=/Users/mac1000/.opam/4.14.2/man" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/cmdliner.2.1.0)
- install -d "/Users/mac1000/.opam/4.14.2/bin" "/Users/mac1000/.opam/4.14.2/lib/cmdliner"
- install -m 644 pkg/META _build/src/cmdliner.cmi "/Users/mac1000/.opam/4.14.2/lib/cmdliner"
- install -m 644 cmdliner.opam "/Users/mac1000/.opam/4.14.2/lib/cmdliner/opam"
- install -m 644 _build/src/cmdliner.mli _build/src/cmdliner_arg.mli _build/src/cmdliner_base.mli _build/src/cmdliner_cline.mli _build/src/cmdliner_cmd.mli _build/src/cmdliner_completion.mli _build/src/cmdliner_def.mli _build/src/cmdliner_docgen.mli _build/src/cmdliner_eval.mli _build/src/cmdliner_manpage.mli _build/src/cmdliner_msg.mli _build/src/cmdliner_term.mli _build/src/cmdliner_trie.mli _build/src/cmdliner.ml _build/src/cmdliner_arg.ml _build/src/cmdliner_base.ml _build/src/cmdliner_cline.ml _build/src/cmdliner_cmd.ml _build/src/cmdliner_completion.ml _build/src/cmdliner_def.ml _build/src/cmdliner_docgen.ml _build/src/cmdliner_eval.ml _build/src/cmdliner_manpage.ml _build/src/cmdliner_msg.ml _build/src/cmdliner_term.ml _build/src/cmdliner_trie.ml \
- 		 _build/src/cmdliner.cmti _build/src/cmdliner_arg.cmti _build/src/cmdliner_base.cmti _build/src/cmdliner_cline.cmti _build/src/cmdliner_cmd.cmti _build/src/cmdliner_completion.cmti _build/src/cmdliner_def.cmti _build/src/cmdliner_docgen.cmti _build/src/cmdliner_eval.cmti _build/src/cmdliner_manpage.cmti _build/src/cmdliner_msg.cmti _build/src/cmdliner_term.cmti _build/src/cmdliner_trie.cmti _build/src/cmdliner.cmt _build/src/cmdliner_arg.cmt _build/src/cmdliner_base.cmt _build/src/cmdliner_cline.cmt _build/src/cmdliner_cmd.cmt _build/src/cmdliner_completion.cmt _build/src/cmdliner_def.cmt _build/src/cmdliner_docgen.cmt _build/src/cmdliner_eval.cmt _build/src/cmdliner_manpage.cmt _build/src/cmdliner_msg.cmt _build/src/cmdliner_term.cmt _build/src/cmdliner_trie.cmt "/Users/mac1000/.opam/4.14.2/lib/cmdliner"
- install -m 644 _build/src/cmdliner.cma "/Users/mac1000/.opam/4.14.2/lib/cmdliner"
- install -m 644 _build/src/cmdliner.cmxa _build/src/cmdliner.a _build/src/cmdliner.cmx _build/src/cmdliner_arg.cmx _build/src/cmdliner_base.cmx _build/src/cmdliner_cline.cmx _build/src/cmdliner_cmd.cmx _build/src/cmdliner_completion.cmx _build/src/cmdliner_def.cmx _build/src/cmdliner_docgen.cmx _build/src/cmdliner_eval.cmx _build/src/cmdliner_manpage.cmx _build/src/cmdliner_msg.cmx _build/src/cmdliner_term.cmx _build/src/cmdliner_trie.cmx \
- 	  "/Users/mac1000/.opam/4.14.2/lib/cmdliner"
- install -m 755 "_build/src/tool/cmdliner" "/Users/mac1000/.opam/4.14.2/bin/cmdliner"
- install -d "/Users/mac1000/.opam/4.14.2/share/bash-completion/completions"
- install -m 644 _build/src/tool/bash-completion.sh \
- 	  "/Users/mac1000/.opam/4.14.2/share/bash-completion/completions/_cmdliner_generic"
- install -m 644 _build/src/tool/bash-cmdliner.sh "/Users/mac1000/.opam/4.14.2/share/bash-completion/completions/cmdliner"
- install -d "/Users/mac1000/.opam/4.14.2/share/zsh/site-functions"
- install -m 644 _build/src/tool/zsh-completion.sh \
- 	  "/Users/mac1000/.opam/4.14.2/share/zsh/site-functions/_cmdliner_generic"
- install -m 644 _build/src/tool/zsh-cmdliner.sh "/Users/mac1000/.opam/4.14.2/share/zsh/site-functions/_cmdliner"
- install -d "/Users/mac1000/.opam/4.14.2/share/powershell"
- install -m 644 _build/src/tool/pwsh-completion.ps1 \
- 	  "/Users/mac1000/.opam/4.14.2/share/powershell/cmdliner_generic_completion.ps1"
- install -m 644 _build/src/tool/pwsh-cmdliner.ps1 \
- 	   "/Users/mac1000/.opam/4.14.2/share/powershell/cmdliner_completion.ps1"
- install -m 644 _build/src/cmdliner.cmxs "/Users/mac1000/.opam/4.14.2/lib/cmdliner"
Processing 36/66: [cmdliner: make install-doc]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "install" "make" "install-doc" "LIBDIR=/Users/mac1000/.opam/4.14.2/lib/cmdliner" "DOCDIR=/Users/mac1000/.opam/4.14.2/doc/cmdliner" "SHAREDIR=/Users/mac1000/.opam/4.14.2/share" "MANDIR=/Users/mac1000/.opam/4.14.2/man" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/cmdliner.2.1.0)
- install -d "/Users/mac1000/.opam/4.14.2/man/man1"
- install -m 644 _build/src/tool/man/man1/cmdliner-generic-completion.1 _build/src/tool/man/man1/cmdliner-install-generic-completion.1 _build/src/tool/man/man1/cmdliner-install-tool-completion.1 _build/src/tool/man/man1/cmdliner-install-tool-manpages.1 _build/src/tool/man/man1/cmdliner-install-tool-support.1 _build/src/tool/man/man1/cmdliner-install.1 _build/src/tool/man/man1/cmdliner-tool-commands.1 _build/src/tool/man/man1/cmdliner-tool-completion.1 _build/src/tool/man/man1/cmdliner.1 "/Users/mac1000/.opam/4.14.2/man/man1"
- install -d "/Users/mac1000/.opam/4.14.2/doc/cmdliner/odoc-pages"
- install -m 644 CHANGES.md LICENSE.md README.md "/Users/mac1000/.opam/4.14.2/doc/cmdliner"
- install -m 644 doc/index.mld doc/cli.mld doc/examples.mld \
- 	   doc/tutorial.mld doc/cookbook.mld doc/tool_man.mld "/Users/mac1000/.opam/4.14.2/doc/cmdliner/odoc-pages"
-> installed cmdliner.2.1.0
Processing 37/66: [fmt: ocaml build]
Processing 38/66: [fmt: ocaml build] [uutf: ocaml build]
-> installed sexplib0.v0.17.0
Processing 39/66: [fmt: ocaml build] [uutf: ocaml build]
-> installed sqlite3.5.3.1
Processing 40/66: [fmt: ocaml build] [uutf: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "false" "--with-cmdliner" "true" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/uutf.1.0.4)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules src/uutf.ml > src/uutf.ml.depends
- + ocamlfind ocamldep -modules src/uutf.mli > src/uutf.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -o src/uutf.cmi src/uutf.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -o src/uutf.cmx src/uutf.ml
- + ocamlfind ocamlopt -a -I src src/uutf.cmx -o src/uutf.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -o src/uutf.cmo src/uutf.ml
- + ocamlfind ocamldep -package unix -package cmdliner -modules test/utftrip.ml > test/utftrip.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -package cmdliner -I test -I src -o test/utftrip.cmo test/utftrip.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -package cmdliner -I test -I src -o test/utftrip.cmx test/utftrip.ml
- + ocamlfind ocamlopt -shared -linkall -I src src/uutf.cmxa -o src/uutf.cmxs
- + ocamlfind ocamlc -a -I src src/uutf.cmo -o src/uutf.cma
- + ocamlfind ocamlopt -linkpkg -g -package unix -package cmdliner -I src -I test src/uutf.cmx test/utftrip.cmx -o test/utftrip.native
- # Parallel statistics: { count(total): 1(11), max: 3, min: 3, average(total): 3.000(1.182) }
-> compiled  uutf.1.0.4
Processing 40/66: [fmt: ocaml build]
-> installed uutf.1.0.4
Processing 41/66: [fmt: ocaml build]
Processing 42/66: [fmt: ocaml build] [jsonm: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "false" "--with-base-unix" "true" "--with-cmdliner" "true" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/fmt.0.11.0)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules src/fmt.ml > src/fmt.ml.depends
- + ocamlfind ocamldep -modules src/fmt.mli > src/fmt.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -o src/fmt.cmi src/fmt.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -o src/fmt.cmx src/fmt.ml
- + ocamlfind ocamlopt -a -I src src/fmt.cmx -o src/fmt.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -o src/fmt.cmo src/fmt.ml
- + ocamlfind ocamldep -package unix -modules src/tty/fmt_tty.ml > src/tty/fmt_tty.ml.depends
- + ocamlfind ocamldep -package unix -modules src/tty/fmt_tty.mli > src/tty/fmt_tty.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/tty -I src -o src/tty/fmt_tty.cmi src/tty/fmt_tty.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -I src/tty -I src -o src/tty/fmt_tty.cmx src/tty/fmt_tty.ml
- + ocamlfind ocamlopt -a -package unix -I src/tty src/tty/fmt_tty.cmx -o src/tty/fmt_tty.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -I src/tty -I src -o src/tty/fmt_tty.cmo src/tty/fmt_tty.ml
- + ocamlfind ocamldep -package cmdliner -modules src/cli/fmt_cli.ml > src/cli/fmt_cli.ml.depends
- + ocamlfind ocamldep -package cmdliner -modules src/cli/fmt_cli.mli > src/cli/fmt_cli.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package cmdliner -I src/cli -I src -o src/cli/fmt_cli.cmi src/cli/fmt_cli.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package cmdliner -I src/cli -I src -o src/cli/fmt_cli.cmx src/cli/fmt_cli.ml
- + ocamlfind ocamlopt -a -package cmdliner -I src/cli src/cli/fmt_cli.cmx -o src/cli/fmt_cli.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package cmdliner -I src/cli -I src -o src/cli/fmt_cli.cmo src/cli/fmt_cli.ml
- + ocamlfind ocamldep -package compiler-libs.toplevel -modules src/top/fmt_top.ml > src/top/fmt_top.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/fmt_top.cmo src/top/fmt_top.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/fmt_top.cmo src/top/fmt_top.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/fmt_top.cmx src/top/fmt_top.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/fmt_top.cmx src/top/fmt_top.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlopt -a -package compiler-libs.toplevel -I src/top src/top/fmt_top.cmx -o src/top/fmt_top.cmxa
- + ocamlfind ocamlopt -a -package compiler-libs.toplevel -I src/top src/top/fmt_top.cmx -o src/top/fmt_top.cmxa
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlopt -shared -linkall -I src src/fmt.cmxa -o src/fmt.cmxs
- + ocamlfind ocamlc -a -I src src/fmt.cmo -o src/fmt.cma
- + ocamlfind ocamlopt -shared -linkall -package unix -I src/tty src/tty/fmt_tty.cmxa -o src/tty/fmt_tty.cmxs
- + ocamlfind ocamlc -a -package unix -I src/tty src/tty/fmt_tty.cmo -o src/tty/fmt_tty.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -I src/cli src/cli/fmt_cli.cmxa -o src/cli/fmt_cli.cmxs
- + ocamlfind ocamlc -a -package cmdliner -I src/cli src/cli/fmt_cli.cmo -o src/cli/fmt_cli.cma
- + ocamlfind ocamlopt -shared -linkall -package compiler-libs.toplevel -I src/top src/top/fmt_top.cmxa -o src/top/fmt_top.cmxs
- + ocamlfind ocamlc -a -package compiler-libs.toplevel -I src/top src/top/fmt_top.cmo -o src/top/fmt_top.cma
- + ocamlfind ocamlc -a -package compiler-libs.toplevel -I src/top src/top/fmt_top.cmo -o src/top/fmt_top.cma
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlopt -shared -linkall -package compiler-libs.toplevel -I src/top src/top/fmt_top.cmxa -o src/top/fmt_top.cmxs
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- # Parallel statistics: { count(total): 1(24), max: 8, min: 8, average(total): 8.000(1.292) }
-> compiled  fmt.0.11.0
Processing 42/66: [jsonm: ocaml build]
-> installed fmt.0.11.0
Processing 43/66: [jsonm: ocaml build]
Processing 44/66: [alcotest: dune build] [jsonm: ocaml build]
Processing 45/66: [alcotest: dune build] [cstruct: dune build] [jsonm: ocaml build]
Processing 46/66: [alcotest: dune build] [cstruct: dune build] [jsonm: ocaml build] [logs: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cstruct" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/cstruct.6.2.0)
-> compiled  cstruct.6.2.0
Processing 46/66: [alcotest: dune build] [jsonm: ocaml build] [logs: ocaml build]
-> installed cstruct.6.2.0
Processing 47/66: [alcotest: dune build] [jsonm: ocaml build] [logs: ocaml build]
Processing 48/66: [alcotest: dune build] [hex: dune build] [jsonm: ocaml build] [logs: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "false" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/jsonm.1.0.2)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package uutf -modules src/jsonm.ml > src/jsonm.ml.depends
- + ocamlfind ocamldep -package uutf -modules src/jsonm.mli > src/jsonm.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package uutf -I src -I test -o src/jsonm.cmi src/jsonm.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package uutf -I src -I test -o src/jsonm.cmx src/jsonm.ml
- + ocamlfind ocamlopt -a -package uutf -I src src/jsonm.cmx -o src/jsonm.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package uutf -I src -I test -o src/jsonm.cmo src/jsonm.ml
- + ocamlfind ocamldep -package unix -package uutf -modules test/jsontrip.ml > test/jsontrip.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package unix -package uutf -I test -I src -o test/jsontrip.cmo test/jsontrip.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package unix -package uutf -I test -I src -o test/jsontrip.cmx test/jsontrip.ml
- + ocamlfind ocamlopt -shared -linkall -package uutf -I src src/jsonm.cmxa -o src/jsonm.cmxs
- + ocamlfind ocamlc -a -package uutf -I src src/jsonm.cmo -o src/jsonm.cma
- + ocamlfind ocamlopt -linkpkg -g -package unix -package uutf -I src -I test src/jsonm.cmx test/jsontrip.cmx -o test/jsontrip.native
- # Parallel statistics: { count(total): 1(11), max: 3, min: 3, average(total): 3.000(1.182) }
-> compiled  jsonm.1.0.2
Processing 48/66: [alcotest: dune build] [hex: dune build] [logs: ocaml build]
-> installed jsonm.1.0.2
Processing 49/66: [alcotest: dune build] [hex: dune build] [logs: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "hex" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/hex.1.5.0)
-> compiled  hex.1.5.0
Processing 49/66: [alcotest: dune build] [logs: ocaml build]
-> installed hex.1.5.0
Processing 50/66: [alcotest: dune build] [logs: ocaml build]
Processing 51/66: [alcotest: dune build] [ezjsonm: dune build] [logs: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ezjsonm" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ezjsonm.1.3.0)
-> compiled  ezjsonm.1.3.0
Processing 51/66: [alcotest: dune build] [logs: ocaml build]
-> installed ezjsonm.1.3.0
Processing 52/66: [alcotest: dune build] [logs: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "alcotest" "-j" "7" "@install" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/alcotest.1.9.1)
-> compiled  alcotest.1.9.1
Processing 52/66: [logs: ocaml build]
-> installed alcotest.1.9.1
Processing 53/66: [logs: ocaml build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "false" "--with-js_of_ocaml-compiler" "false" "--with-fmt" "true" "--with-cmdliner" "true" "--with-lwt" "false" "--with-base-threads" "true" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/logs.0.10.0)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules src/logs.ml > src/logs.ml.depends
- + ocamlfind ocamldep -modules src/logs.mli > src/logs.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -o src/logs.cmi src/logs.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -I src -o src/logs.cmx src/logs.ml
- + ocamlfind ocamlopt -a -I src src/logs.cmx -o src/logs.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -I src -o src/logs.cmo src/logs.ml
- + ocamlfind ocamldep -package fmt -modules src/fmt/logs_fmt.ml > src/fmt/logs_fmt.ml.depends
- + ocamlfind ocamldep -package fmt -modules src/fmt/logs_fmt.mli > src/fmt/logs_fmt.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package fmt -I src/fmt -I src -o src/fmt/logs_fmt.cmi src/fmt/logs_fmt.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package fmt -I src/fmt -I src -o src/fmt/logs_fmt.cmx src/fmt/logs_fmt.ml
- + ocamlfind ocamlopt -a -package fmt -I src/fmt src/fmt/logs_fmt.cmx -o src/fmt/logs_fmt.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package fmt -I src/fmt -I src -o src/fmt/logs_fmt.cmo src/fmt/logs_fmt.ml
- + ocamlfind ocamldep -package cmdliner -modules src/cli/logs_cli.ml > src/cli/logs_cli.ml.depends
- + ocamlfind ocamldep -package cmdliner -modules src/cli/logs_cli.mli > src/cli/logs_cli.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package cmdliner -I src/cli -I src -o src/cli/logs_cli.cmi src/cli/logs_cli.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package cmdliner -I src/cli -I src -o src/cli/logs_cli.cmx src/cli/logs_cli.ml
- + ocamlfind ocamlopt -a -package cmdliner -I src/cli src/cli/logs_cli.cmx -o src/cli/logs_cli.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package cmdliner -I src/cli -I src -o src/cli/logs_cli.cmo src/cli/logs_cli.ml
- + ocamlfind ocamldep -package compiler-libs.toplevel -modules src/top/logs_top.ml > src/top/logs_top.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/logs_top.cmo src/top/logs_top.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/logs_top.cmo src/top/logs_top.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/logs_top.cmx src/top/logs_top.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package compiler-libs.toplevel -I src/top -I src -o src/top/logs_top.cmx src/top/logs_top.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlopt -a -package compiler-libs.toplevel -I src/top src/top/logs_top.cmx -o src/top/logs_top.cmxa
- + ocamlfind ocamlopt -a -package compiler-libs.toplevel -I src/top src/top/logs_top.cmx -o src/top/logs_top.cmxa
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamldep -package threads -modules src/threaded/logs_threaded.ml > src/threaded/logs_threaded.ml.depends
- + ocamlfind ocamldep -package threads -modules src/threaded/logs_threaded.mli > src/threaded/logs_threaded.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -thread -package threads -I src/threaded -I src -o src/threaded/logs_threaded.cmi src/threaded/logs_threaded.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -thread -package threads -I src/threaded -I src -o src/threaded/logs_threaded.cmx src/threaded/logs_threaded.ml
- + ocamlfind ocamlopt -a -thread -package threads -I src/threaded src/threaded/logs_threaded.cmx -o src/threaded/logs_threaded.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -thread -package threads -I src/threaded -I src -o src/threaded/logs_threaded.cmo src/threaded/logs_threaded.ml
- + ocamlfind ocamlopt -shared -linkall -I src src/logs.cmxa -o src/logs.cmxs
- + ocamlfind ocamlc -a -I src src/logs.cmo -o src/logs.cma
- + ocamlfind ocamlopt -shared -linkall -package fmt -I src/fmt src/fmt/logs_fmt.cmxa -o src/fmt/logs_fmt.cmxs
- + ocamlfind ocamlc -a -package fmt -I src/fmt src/fmt/logs_fmt.cmo -o src/fmt/logs_fmt.cma
- + ocamlfind ocamlopt -shared -linkall -package cmdliner -I src/cli src/cli/logs_cli.cmxa -o src/cli/logs_cli.cmxs
- + ocamlfind ocamlc -a -package cmdliner -I src/cli src/cli/logs_cli.cmo -o src/cli/logs_cli.cma
- + ocamlfind ocamlopt -shared -linkall -package compiler-libs.toplevel -I src/top src/top/logs_top.cmxa -o src/top/logs_top.cmxs
- + ocamlfind ocamlc -a -package compiler-libs.toplevel -I src/top src/top/logs_top.cmo -o src/top/logs_top.cma
- + ocamlfind ocamlopt -shared -linkall -thread -package threads -I src/threaded src/threaded/logs_threaded.cmxa -o src/threaded/logs_threaded.cmxs
- + ocamlfind ocamlc -a -package compiler-libs.toplevel -I src/top src/top/logs_top.cmo -o src/top/logs_top.cma
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- + ocamlfind ocamlc -a -thread -package threads -I src/threaded src/threaded/logs_threaded.cmo -o src/threaded/logs_threaded.cma
- + ocamlfind ocamlopt -shared -linkall -package compiler-libs.toplevel -I src/top src/top/logs_top.cmxa -o src/top/logs_top.cmxs
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /Users/mac1000/.opam/4.14.2/lib/ocaml, /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- # Parallel statistics: { count(total): 1(30), max: 10, min: 10, average(total): 10.000(1.300) }
-> compiled  logs.0.10.0
-> installed logs.0.10.0
Processing 55/66: [mirage-crypto-rng: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-rng" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/mirage-crypto-rng.2.1.0)
-> compiled  mirage-crypto-rng.2.1.0
-> installed mirage-crypto-rng.2.1.0
Processing 57/66: [mirage-crypto-ec: dune build]
Processing 58/66: [mirage-crypto-ec: dune build] [mirage-crypto-pk: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-pk" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/mirage-crypto-pk.2.1.0)
-> compiled  mirage-crypto-pk.2.1.0
Processing 58/66: [mirage-crypto-ec: dune build]
-> installed mirage-crypto-pk.2.1.0
Processing 59/66: [mirage-crypto-ec: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-ec" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/mirage-crypto-ec.2.1.0)
-> compiled  mirage-crypto-ec.2.1.0
-> installed mirage-crypto-ec.2.1.0
Processing 61/66: [x509: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "x509" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/x509.1.0.6)
-> compiled  x509.1.0.6
-> installed x509.1.0.6
Processing 63/66: [caqti: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti" "-j" "7" "@install" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/caqti.2.3.0)
Processing 63/66: [caqti: dune install]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caqti" "--create-install-file" "caqti" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/caqti.2.3.0)
-> compiled  caqti.2.3.0
-> installed caqti.2.3.0
Processing 65/66: [caqti-driver-sqlite3: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-driver-sqlite3" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/caqti-driver-sqlite3.2.3.0)
Processing 65/66: [caqti-driver-sqlite3: dune runtest]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-driver-sqlite3" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/caqti-driver-sqlite3.2.3.0)
- (cd _build/default/caqti-driver-sqlite3/test && ./test_sqlite3.exe)
- Testing `test_sqlite3'.
- This run has ID `AMHX11BH'.
- 
-   [OK]          sqlite3          0   test_error.
-   [OK]          sqlite3          1   test_fun.
- 
- Full test results in `~/.opam/4.14.2/.opam-switch/build/caqti-driver-sqlite3.2.3.0/_build/default/caqti-driver-sqlite3/test/_build/_tests/test_sqlite3'.
- Test Successful in 0.021s. 2 tests run.
- (cd _build/default/testsuite && ./main_blocking.exe -U uris.conf)
- Testing `test_sql_blocking'.
- This run has ID `A9NKVE5F'.
- 
-   [OK]          sqlite3          0   post_connect.
-   [OK]          sqlite3          1   expand.
-   [OK]          sqlite3          2   params_and_quotes.
-   [OK]          sqlite3          3   expr_and_decode.
-   [OK]          sqlite3          4   enum.
-   [OK]          sqlite3          5   table.
-   [OK]          sqlite3          6   tuples.
-   [OK]          sqlite3          7   affected_count.
-   [OK]          sqlite3          8   stream.
-   [OK]          sqlite3          9   stream_both_ways.
-   [OK]          sqlite3         10   stream_binary.
-   [OK]          sqlite3         11   dynamic_release.
-   [OK]          sqlite3         12   nilrequest.
-   [OK]          sqlite3         13   multirequest.
-   [OK]          sqlite3         14   harness.
-   [SKIP]        sqlite3         15   NOT NULL constraint violation.
-   [SKIP]        sqlite3         16   UNIQUE constraint violation.
-   [SKIP]        sqlite3         17   FOREIGN KEY constraint violation.
-   [SKIP]        sqlite3         18   CHECK constraint violation.
-   [OK]          sqlite3         19   nonlinear.
-   [OK]          sqlite3         20   environment.
-   [OK]          sqlite3         21   raise in call.
-   [OK]          sqlite3         22   fail in call.
-   [OK]          sqlite3         23   statement timeout.
-   [OK]          sqlite3         24   drain.
-   [OK]          sqlite3         25   connect.
- 
- Full test results in `~/.opam/4.14.2/.opam-switch/build/caqti-driver-sqlite3.2.3.0/_build/default/testsuite/_build/_tests/test_sql_blocking'.
- Test Successful in 0.414s. 22 tests run.
-> compiled  caqti-driver-sqlite3.2.3.0
-> installed caqti-driver-sqlite3.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-09 12:41.57 ---> saved as "a62619d9abef4bea031b900894894f45879d86e91012892853672b276bf1285b"
Job succeeded
2026-04-09 12:42.02: Job succeeded