(not at the head of any monitored branch or PR)
2026-04-09 11:57.58: New job: test caqti-lwt.2.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29690/head (6b2464946e569e2d90f4b72ef1fe7f0196f077a4)
                              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/29690/head" && git reset --hard 6b246494
git fetch origin master
git merge --no-edit fde524a7a5fc26108522edaefc3bcf346adb744a
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 caqti-lwt.2.3.0 2.3.0
RUN opam reinstall caqti-lwt.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-lwt.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-lwt.2.3.0) || true
RUN opam reinstall --with-test --verbose caqti-lwt.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-lwt.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-5.4-caqti-lwt.2.3.0-6b2464946e569e2d90f4b72ef1fe7f0196f077a4"
2026-04-09 11:57.58: 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 caqti-lwt.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-lwt.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-lwt.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-lwt.2.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caqti-lwt.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-lwt.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:03.35: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files:  22% (4214/18647)
Updating files:  23% (4289/18647)
Updating files:  24% (4476/18647)
Updating files:  25% (4662/18647)
Updating files:  26% (4849/18647)
Updating files:  27% (5035/18647)
Updating files:  28% (5222/18647)
Updating files:  29% (5408/18647)
Updating files:  30% (5595/18647)
Updating files:  31% (5781/18647)
Updating files:  32% (5968/18647)
Updating files:  33% (6154/18647)
Updating files:  34% (6340/18647)
Updating files:  35% (6527/18647)
Updating files:  36% (6713/18647)
Updating files:  37% (6900/18647)
Updating files:  38% (7086/18647)
Updating files:  39% (7273/18647)
Updating files:  40% (7459/18647)
Updating files:  41% (7646/18647)
Updating files:  42% (7832/18647)
Updating files:  43% (8019/18647)
Updating files:  44% (8205/18647)
Updating files:  45% (8392/18647)
Updating files:  45% (8428/18647)
Updating files:  46% (8578/18647)
Updating files:  47% (8765/18647)
Updating files:  48% (8951/18647)
Updating files:  49% (9138/18647)
Updating files:  50% (9324/18647)
Updating files:  51% (9510/18647)
Updating files:  52% (9697/18647)
Updating files:  53% (9883/18647)
Updating files:  54% (10070/18647)
Updating files:  55% (10256/18647)
Updating files:  56% (10443/18647)
Updating files:  57% (10629/18647)
Updating files:  58% (10816/18647)
Updating files:  59% (11002/18647)
Updating files:  60% (11189/18647)
Updating files:  61% (11375/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:  72% (13466/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:  97% (18117/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-5.4)
2026-04-09 12:09.24 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

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

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

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

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

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

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

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

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

/: (copy (src .) (dst opam-repository/))
2026-04-09 12:09.28 ---> using "9ed4807a8fd3dcb830677844bc22422c6d4eb10d43f466876095399fd33942db" from cache

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

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

                                                                           0.1%
                                                                           0.3%
                                                                           0.8%
#                                                                          1.6%
#                                                                          1.9%
#                                                                          2.2%
#                                                                          2.5%
- 
##                                                                         3.0%
##                                                                         3.3%
##                                                                         3.5%
##                                                                         3.9%
###                                                                        4.3%
###                                                                        4.7%
###                                                                        5.1%
###                                                                        5.5%
####                                                                       5.9%
####                                                                       6.5%
####                                                                       6.8%
- 
#####                                                                      7.4%
#####                                                                      7.8%
#####                                                                      8.2%
######                                                                     8.6%
######                                                                     8.8%
######                                                                     9.1%
######                                                                     9.4%
######                                                                     9.6%
#######                                                                   10.0%
#######                                                                   10.3%
- 
#######                                                                   10.6%
#######                                                                   10.8%
#######                                                                   11.1%
########                                                                  11.4%
########                                                                  11.7%
########                                                                  12.0%
########                                                                  12.2%
#########                                                                 12.5%
#########                                                                 12.8%
#########                                                                 13.2%
#########                                                                 13.4%
- 
#########                                                                 13.7%
##########                                                                14.0%
##########                                                                14.2%
##########                                                                14.5%
##########                                                                14.8%
##########                                                                15.0%
###########                                                               15.3%
###########                                                               15.7%
###########                                                               16.0%
###########                                                               16.2%
- 
###########                                                               16.5%
############                                                              16.9%
############                                                              17.1%
############                                                              17.4%
############                                                              17.7%
############                                                              17.9%
#############                                                             18.2%
#############                                                             18.5%
#############                                                             18.8%
#############                                                             19.0%
#############                                                             19.3%
- 
##############                                                            19.7%
##############                                                            20.0%
##############                                                            20.1%
##############                                                            20.4%
##############                                                            20.5%
##############                                                            20.8%
###############                                                           20.9%
###############                                                           21.1%
###############                                                           21.4%
###############                                                           21.5%
###############                                                           21.8%
- 
###############                                                           22.1%
###############                                                           22.2%
################                                                          22.5%
################                                                          22.6%
################                                                          22.9%
################                                                          23.1%
################                                                          23.4%
################                                                          23.5%
#################                                                         23.8%
#################                                                         23.9%
#################                                                         24.2%
- 
#################                                                         24.4%
#################                                                         24.6%
#################                                                         24.8%
##################                                                        25.1%
##################                                                        25.2%
##################                                                        25.5%
##################                                                        25.8%
##################                                                        25.9%
##################                                                        26.2%
###################                                                       26.4%
- 
###################                                                       26.6%
###################                                                       26.8%
###################                                                       27.1%
###################                                                       27.2%
###################                                                       27.5%
###################                                                       27.7%
####################                                                      28.0%
####################                                                      28.1%
####################                                                      28.4%
####################                                                      28.7%
####################                                                      28.8%
- 
####################                                                      29.1%
#####################                                                     29.2%
#####################                                                     29.5%
#####################                                                     29.7%
#####################                                                     29.8%
#####################                                                     30.1%
#####################                                                     30.4%
#####################                                                     30.5%
######################                                                    30.8%
######################                                                    30.9%
- 
######################                                                    31.2%
######################                                                    31.4%
######################                                                    31.6%
######################                                                    31.8%
#######################                                                   32.1%
#######################                                                   32.4%
#######################                                                   32.5%
#######################                                                   32.7%
#######################                                                   33.0%
#######################                                                   33.3%
########################                                                  33.4%
- 
########################                                                  33.7%
########################                                                  33.8%
########################                                                  34.1%
########################                                                  34.4%
########################                                                  34.5%
#########################                                                 34.8%
#########################                                                 35.0%
#########################                                                 35.2%
#########################                                                 35.4%
#########################                                                 35.6%
#########################                                                 35.8%
- 
#########################                                                 36.1%
##########################                                                36.2%
##########################                                                36.5%
##########################                                                36.6%
##########################                                                36.9%
##########################                                                37.0%
##########################                                                37.3%
###########################                                               37.6%
###########################                                               37.7%
###########################                                               38.0%
###########################                                               38.1%
- 
###########################                                               38.4%
###########################                                               38.6%
###########################                                               38.8%
############################                                              39.0%
############################                                              39.2%
############################                                              39.4%
############################                                              39.6%
############################                                              39.9%
############################                                              40.0%
#############################                                             40.3%
#############################                                             40.6%
- 
#############################                                             40.7%
#############################                                             41.0%
#############################                                             41.1%
#############################                                             41.4%
#############################                                             41.6%
##############################                                            41.8%
##############################                                            42.0%
##############################                                            42.3%
##############################                                            42.4%
##############################                                            42.7%
- 
##############################                                            42.8%
###############################                                           43.1%
###############################                                           43.4%
###############################                                           43.5%
###############################                                           43.8%
###############################                                           44.0%
###############################                                           44.1%
###############################                                           44.4%
################################                                          44.7%
################################                                          44.8%
################################                                          45.1%
- 
################################                                          45.2%
################################                                          45.5%
################################                                          45.7%
#################################                                         45.9%
#################################                                         46.1%
#################################                                         46.3%
#################################                                         46.5%
#################################                                         46.8%
#################################                                         46.9%
#################################                                         47.2%
##################################                                        47.5%
- 
##################################                                        47.6%
##################################                                        47.9%
##################################                                        48.1%
##################################                                        48.3%
##################################                                        48.5%
###################################                                       48.7%
###################################                                       49.0%
###################################                                       49.1%
###################################                                       49.4%
###################################                                       49.7%
- 
###################################                                       49.8%
####################################                                      50.1%
####################################                                      50.2%
####################################                                      50.5%
####################################                                      50.7%
####################################                                      50.9%
####################################                                      51.1%
#####################################                                     51.4%
#####################################                                     51.5%
#####################################                                     51.8%
- 
#####################################                                     51.9%
#####################################                                     52.2%
#####################################                                     52.3%
#####################################                                     52.6%
######################################                                    52.9%
######################################                                    53.0%
######################################                                    53.3%
######################################                                    53.5%
######################################                                    53.7%
######################################                                    53.9%
- 
#######################################                                   54.2%
#######################################                                   54.3%
#######################################                                   54.6%
#######################################                                   54.7%
#######################################                                   55.0%
#######################################                                   55.2%
#######################################                                   55.5%
########################################                                  55.6%
########################################                                  55.9%
########################################                                  56.2%
########################################                                  56.3%
- 
########################################                                  56.6%
########################################                                  56.8%
#########################################                                 57.0%
#########################################                                 57.2%
#########################################                                 57.5%
#########################################                                 57.6%
#########################################                                 57.9%
#########################################                                 58.2%
#########################################                                 58.3%
##########################################                                58.6%
- 
##########################################                                58.8%
##########################################                                59.0%
##########################################                                59.2%
##########################################                                59.4%
##########################################                                59.6%
###########################################                               59.8%
###########################################                               60.1%
###########################################                               60.2%
###########################################                               60.5%
###########################################                               60.6%
###########################################                               60.9%
- 
############################################                              61.2%
############################################                              61.3%
############################################                              61.6%
############################################                              61.7%
############################################                              62.0%
############################################                              62.1%
############################################                              62.4%
#############################################                             62.6%
#############################################                             62.8%
#############################################                             63.0%
#############################################                             63.2%
- 
#############################################                             63.4%
#############################################                             63.7%
#############################################                             63.8%
##############################################                            64.1%
##############################################                            64.4%
##############################################                            64.6%
##############################################                            64.7%
##############################################                            65.0%
##############################################                            65.1%
###############################################                           65.4%
###############################################                           65.7%
- 
###############################################                           65.8%
###############################################                           66.1%
###############################################                           66.2%
###############################################                           66.5%
###############################################                           66.6%
################################################                          66.9%
################################################                          67.1%
################################################                          67.3%
################################################                          67.5%
################################################                          67.7%
################################################                          67.9%
- 
#################################################                         68.2%
#################################################                         68.3%
#################################################                         68.6%
#################################################                         68.9%
#################################################                         69.0%
#################################################                         69.3%
#################################################                         69.4%
##################################################                        69.7%
##################################################                        69.9%
##################################################                        70.1%
##################################################                        70.3%
- 
##################################################                        70.4%
##################################################                        70.7%
###################################################                       70.9%
###################################################                       71.1%
###################################################                       71.3%
###################################################                       71.6%
###################################################                       71.7%
###################################################                       72.0%
####################################################                      72.3%
####################################################                      72.4%
- 
####################################################                      72.7%
####################################################                      72.8%
####################################################                      73.1%
####################################################                      73.3%
####################################################                      73.5%
#####################################################                     73.7%
#####################################################                     74.0%
#####################################################                     74.1%
#####################################################                     74.4%
#####################################################                     74.7%
- 
#####################################################                     74.8%
######################################################                    75.1%
######################################################                    75.2%
######################################################                    75.5%
######################################################                    75.7%
######################################################                    76.0%
######################################################                    76.1%
######################################################                    76.4%
#######################################################                   76.5%
#######################################################                   76.8%
#######################################################                   77.0%
- 
#######################################################                   77.2%
#######################################################                   77.4%
#######################################################                   77.6%
########################################################                  77.8%
########################################################                  78.1%
########################################################                  78.2%
########################################################                  78.5%
########################################################                  78.8%
########################################################                  78.9%
########################################################                  79.2%
#########################################################                 79.4%
- 
#########################################################                 79.6%
#########################################################                 79.8%
#########################################################                 80.0%
#########################################################                 80.2%
#########################################################                 80.4%
##########################################################                80.6%
##########################################################                80.8%
##########################################################                81.1%
##########################################################                81.2%
##########################################################                81.5%
##########################################################                81.8%
- 
##########################################################                81.9%
###########################################################               82.2%
###########################################################               82.3%
###########################################################               82.6%
###########################################################               82.8%
###########################################################               83.0%
###########################################################               83.2%
############################################################              83.5%
############################################################              83.6%
############################################################              83.9%
- 
############################################################              84.2%
############################################################              84.3%
############################################################              84.6%
#############################################################             84.8%
#############################################################             85.1%
#############################################################             85.2%
#############################################################             85.5%
#############################################################             85.7%
#############################################################             85.9%
##############################################################            86.1%
##############################################################            86.3%
- 
##############################################################            86.5%
##############################################################            86.8%
##############################################################            87.0%
##############################################################            87.2%
##############################################################            87.4%
###############################################################           87.6%
###############################################################           87.9%
###############################################################           88.0%
###############################################################           88.3%
###############################################################           88.4%
###############################################################           88.7%
- 
################################################################          88.9%
################################################################          89.1%
################################################################          89.3%
################################################################          89.5%
################################################################          89.7%
################################################################          89.9%
################################################################          90.1%
#################################################################         90.4%
#################################################################         90.5%
#################################################################         90.8%
- 
#################################################################         91.1%
#################################################################         91.2%
#################################################################         91.5%
##################################################################        91.7%
##################################################################        91.8%
##################################################################        92.1%
##################################################################        92.4%
##################################################################        92.5%
##################################################################        92.8%
##################################################################        93.0%
###################################################################       93.2%
- 
###################################################################       93.4%
###################################################################       93.6%
###################################################################       93.8%
###################################################################       94.0%
###################################################################       94.2%
####################################################################      94.5%
####################################################################      94.8%
####################################################################      94.9%
####################################################################      95.2%
####################################################################      95.3%
####################################################################      95.6%
- 
####################################################################      95.8%
#####################################################################     96.0%
#####################################################################     96.2%
#####################################################################     96.5%
#####################################################################     96.6%
#####################################################################     96.9%
#####################################################################     97.1%
######################################################################    97.3%
######################################################################    97.5%
######################################################################    97.8%
- 
######################################################################    98.0%
######################################################################    98.4%
#######################################################################   98.7%
#######################################################################   99.0%
#######################################################################   99.2%
#######################################################################   99.5%
#######################################################################   99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.2_1.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-04-09 12:09.29 ---> using "9d87a4a3cc86ed3150838a0841464a837a37673928d27243d577f925dcefaabe" from cache

/: (run (shell "opam pin add -k version -yn caqti-lwt.2.3.0 2.3.0"))
caqti-lwt is now pinned to version 2.3.0
2026-04-09 12:09.29 ---> using "37541cee66fcc8c61fafce5fa7becbf62fada798d4f44ba133f439335423944a" 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-lwt.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-lwt.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-lwt.2.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 53 packages
  - install angstrom           0.16.1         [required by caqti]
  - install asn1-combinators   0.3.2          [required by x509]
  - install base-bytes         base           [required by ocplib-endian]
  - install base64             3.5.2          [required by x509]
  - install bigstringaf        0.10.0         [required by caqti]
  - install caqti              2.3.0          [required by caqti-lwt]
  - install caqti-lwt          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 zarith]
  - install cppo               1.8.0          [required by lwt]
  - install csexp              1.5.2          [required by dune-private-libs]
  - install digestif           1.3.0          [required by mirage-crypto-ec, kdf, mirage-crypto-pk]
  - install domain-name        0.5.0          [required by caqti-lwt]
  - install dune               3.22.1         [required by caqti-lwt]
  - install dune-configurator  3.22.1         [required by lwt, bigstringaf, mirage-crypto-ec]
  - 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 fmt                0.11.0         [required by logs, x509]
  - install fs-io              3.22.1         [required by stdune]
  - install gmap               0.3.0          [required by x509]
  - install ipaddr             5.6.2          [required by caqti-lwt]
  - install kdf                1.0.0          [required by x509]
  - install logs               0.10.0         [required by caqti-lwt]
  - install lru                0.3.1          [required by caqti]
  - install lwt                5.9.2          [required by caqti-lwt]
  - 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-lwt]
  - 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 ocplib-endian      1.2            [required by lwt]
  - install ohex               0.2.0          [required by x509]
  - install ordering           3.22.1         [required by dyn, stdune]
  - 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 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 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

<><> 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" "pkgconf"
- ==> Fetching downloads for: gmp and pkgconf
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ==> 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`).
- ==> Pouring pkgconf--2.5.1.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/pkgconf/2.5.1: 28 files, 383.2KB
- ==> Running `brew cleanup pkgconf`...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved caqti.2.3.0, caqti-lwt.2.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> 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 duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.5.9.2  (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 ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.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 stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed dune.3.22.1
-> installed eqaf.0.10
-> installed duration.0.2.1
-> installed domain-name.0.5.0
-> installed csexp.1.5.2
-> installed ohex.0.2.0
-> installed ordering.3.22.1
-> installed digestif.1.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed macaddr.5.6.2
-> installed stringext.1.6.0
-> installed psq.0.2.1
-> installed pp.2.0.0
-> installed lru.0.3.1
-> installed ipaddr.5.6.2
-> installed top-closure.3.22.1
-> installed dune-configurator.3.22.1
-> installed lwt-dllist.1.1.0
-> installed gmap.0.3.0
-> installed fs-io.3.22.1
-> installed cppo.1.8.0
-> installed base64.3.5.2
-> installed asn1-combinators.0.3.2
-> installed bigstringaf.0.10.0
-> installed ocplib-endian.1.2
-> installed dyn.3.22.1
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.1.0
-> installed kdf.1.0.0
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed stdune.3.22.1
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.1.0
-> installed dune-private-libs.3.22.1
-> installed mirage-crypto-pk.2.1.0
-> installed dune-site.3.22.1
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed caqti.2.3.0
-> installed caqti-lwt.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-09 12:09.30 ---> using "d46bf9f7aad18df6094e6dcc2891f365d612ba0406d60241d2e6e806e36953e0" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test caqti-lwt.2.3.0) || true"))
The following actions will be performed:
=== recompile 8 packages
  - recompile caqti                2.3.0          [uses logs]
  - recompile caqti-lwt            2.3.0 (pinned)
  - recompile fmt                  0.11.0         [uses cmdliner]
  - 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 x509                 1.0.6          [uses fmt]
=== install 20 packages
  - install   alcotest             1.9.1          [required by caqti-lwt]
  - install   alcotest-lwt         1.9.1          [required by caqti-lwt]
  - install   astring              0.8.5          [required by alcotest]
  - install   caqti-driver-sqlite3 2.3.0          [required by caqti-lwt]
  - install   cmdliner             2.1.0          [required by caqti-lwt]
  - install   conf-sqlite3         1              [required by sqlite3]
  - install   cstruct              6.2.0          [required by hex]
  - install   dune-compiledb       0.6.0          [required by sqlite3]
  - install   ezjsonm              1.3.0          [required by dune-compiledb]
  - install   fpath                0.7.3          [required by dune-compiledb]
  - install   hex                  1.5.0          [required by ezjsonm]
  - install   jsonm                1.0.2          [required by ezjsonm]
  - install   num                  1.6            [required by sexplib]
  - install   parsexp              v0.17.0        [required by sexplib]
  - install   re                   1.14.0         [required by alcotest]
  - install   sexplib              v0.17.0        [required by dune-compiledb]
  - install   sexplib0             v0.17.0        [required by dune-compiledb]
  - install   sqlite3              5.4.0          [required by caqti-driver-sqlite3]
  - install   stdlib-shims         0.3.0          [required by alcotest]
  - install   uutf                 1.0.4          [required by alcotest]

The following system packages will first need to be installed:
    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" "sqlite"
- ==> Fetching downloads for: sqlite
- ✔︎ Bottle Manifest sqlite (3.51.3)
- ✔︎ Bottle Manifest readline (8.3.3)
- ✔︎ Bottle readline (8.3.3)
- ✔︎ Bottle sqlite (3.51.3)
- ==> 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`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> 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 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 astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved caqti.2.3.0, caqti-driver-sqlite3.2.3.0, caqti-lwt.2.3.0  (https://github.com/paurkedal/ocaml-caqti/releases/download/v2.3.0/caqti-v2.3.0.tbz)
-> retrieved cmdliner.2.1.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.0.tbz)
-> installed conf-sqlite3.1
-> retrieved cstruct.6.2.0  (https://github.com/mirage/ocaml-cstruct/releases/download/v6.2.0/cstruct-6.2.0.tbz)
-> retrieved dune-compiledb.0.6.0  (https://github.com/edwintorok/dune-compiledb/releases/download/0.6.0/dune-compiledb-0.6.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 fpath.0.7.3  (https://erratique.ch/software/fpath/releases/fpath-0.7.3.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)
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed cmdliner.2.1.0
[ERROR] Failed to get sources of logs.0.10.0: curl failed
-> 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 num.1.6  (https://github.com/ocaml/num/archive/refs/tags/v1.6.tar.gz)
-> retrieved parsexp.v0.17.0  (https://github.com/janestreet/parsexp/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved re.1.14.0  (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved sexplib.v0.17.0  (https://github.com/janestreet/sexplib/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved sexplib0.v0.17.0  (https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved sqlite3.5.4.0  (https://github.com/mmottl/sqlite3-ocaml/releases/download/5.4.0/sqlite3-5.4.0.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)
-> retrieved x509.1.0.6  (https://github.com/mirleft/ocaml-x509/releases/download/v1.0.6/x509-1.0.6.tbz)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> removed   caqti-lwt.2.3.0
-> removed   caqti.2.3.0
-> 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
-> installed fmt.0.11.0
-> installed num.1.6
-> installed uutf.1.0.4
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed jsonm.1.0.2
-> installed parsexp.v0.17.0
-> installed alcotest.1.9.1
-> installed ezjsonm.1.3.0
-> installed sexplib.v0.17.0
-> installed dune-compiledb.0.6.0
-> installed sqlite3.5.4.0

#=== ERROR while fetching sources for logs.0.10.0 =============================#
OpamSolution.Fetch_fail("https://erratique.ch/software/logs/releases/logs-0.10.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/rs/xhy4snfd01gfz9kqbdfx0px80000z8/T/opam-50209-13a898/logs-0.10.0.tbz.part -- https://erratique.ch/software/logs/releases/logs-0.10.0.tbz\" exited with code 56)")

[WARNING] The sources of the following couldn't be obtained, they may be uncleanly removed:
            - logs.0.10.0



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - fetch logs 0.10.0
+- 
+- The following changes have been performed (the rest was aborted)
| - remove    caqti             2.3.0
| - remove    caqti-lwt         2.3.0
| - remove    logs              0.10.0
| - remove    mirage-crypto-ec  2.1.0
| - remove    mirage-crypto-pk  2.1.0
| - remove    mirage-crypto-rng 2.1.0
| - remove    x509              1.0.6
| - recompile fmt               0.11.0
| - install   alcotest          1.9.1
| - install   astring           0.8.5
| - install   cmdliner          2.1.0
| - install   conf-sqlite3      1
| - install   cstruct           6.2.0
| - install   dune-compiledb    0.6.0
| - install   ezjsonm           1.3.0
| - install   fpath             0.7.3
| - install   hex               1.5.0
| - install   jsonm             1.0.2
| - install   num               1.6
| - install   parsexp           v0.17.0
| - install   re                1.14.0
| - install   sexplib           v0.17.0
| - install   sexplib0          v0.17.0
| - install   sqlite3           5.4.0
| - install   stdlib-shims      0.3.0
| - install   uutf              1.0.4
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/local/bin/opam switch import "/Users/mac1000/.opam/5.4.0/.opam-switch/backup/state-20260409120931.export"
Or you can retry to install your package selection with:
    /usr/local/bin/opam install --restore
2026-04-09 12:12.04 ---> saved as "ef79e5505f4ad9ba2ee9ece1a4d7015430ae49b4957f490b8c1ce4a964db30d4"

/: (run (shell  "opam reinstall --with-test --verbose caqti-lwt.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-lwt.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-lwt.2.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install alcotest-lwt         1.9.1          [required by caqti-lwt]
  - install caqti                2.3.0          [required by caqti-lwt]
  - install caqti-driver-sqlite3 2.3.0          [required by caqti-lwt]
  - install caqti-lwt            2.3.0 (pinned)
  - install logs                 0.10.0         [required by caqti-lwt]
  - 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 x509                 1.0.6          [required by caqti]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/23: [alcotest-lwt.1.9.1: extract]
-> retrieved alcotest-lwt.1.9.1  (cached)
Processing  2/23: [caqti.2.3.0, caqti-driver-sqlite3.2.3.0: extract]
-> retrieved caqti.2.3.0, caqti-driver-sqlite3.2.3.0, caqti-lwt.2.3.0  (cached)
Processing  3/23: [logs.0.10.0: http]
Processing  3/23: [logs.0.10.0: extract]
-> retrieved logs.0.10.0  (https://erratique.ch/software/logs/releases/logs-0.10.0.tbz)
Processing  4/23: [mirage-crypto-ec.2.1.0 + 2 others: extract]
Processing  5/23: [mirage-crypto-ec.2.1.0 + 2 others: extract] [logs: ocaml build]
-> retrieved mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (cached)
Processing  5/23: [logs: ocaml build]
Processing  6/23: [x509.1.0.6: extract] [logs: ocaml build]
-> retrieved x509.1.0.6  (cached)
Processing  6/23: [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" "true" "--with-base-threads" "true" (CWD=/Users/mac1000/.opam/5.4.0/.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 lwt -modules src/lwt/logs_lwt.ml > src/lwt/logs_lwt.ml.depends
- + ocamlfind ocamldep -package lwt -modules src/lwt/logs_lwt.mli > src/lwt/logs_lwt.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package lwt -I src/lwt -I src -o src/lwt/logs_lwt.cmi src/lwt/logs_lwt.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -package lwt -I src/lwt -I src -o src/lwt/logs_lwt.cmx src/lwt/logs_lwt.ml
- + ocamlfind ocamlopt -a -package lwt -I src/lwt src/lwt/logs_lwt.cmx -o src/lwt/logs_lwt.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -package lwt -I src/lwt -I src -o src/lwt/logs_lwt.cmo src/lwt/logs_lwt.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 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 -a -package compiler-libs.toplevel -I src/top src/top/logs_top.cmx -o src/top/logs_top.cmxa
- + 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 lwt -I src/lwt src/lwt/logs_lwt.cmxa -o src/lwt/logs_lwt.cmxs
- + ocamlfind ocamlc -a -package lwt -I src/lwt src/lwt/logs_lwt.cmo -o src/lwt/logs_lwt.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 -thread -package threads -I src/threaded src/threaded/logs_threaded.cmo -o src/threaded/logs_threaded.cma
- # Parallel statistics: { count(total): 1(36), max: 12, min: 12, average(total): 12.000(1.306) }
-> compiled  logs.0.10.0
-> installed logs.0.10.0
Processing  8/23: [alcotest-lwt: dune build]
Processing  9/23: [alcotest-lwt: dune build] [mirage-crypto-rng: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "alcotest-lwt" "-j" "11" "@install" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/alcotest-lwt.1.9.1)
-> compiled  alcotest-lwt.1.9.1
Processing  9/23: [mirage-crypto-rng: dune build]
-> installed alcotest-lwt.1.9.1
Processing 10/23: [mirage-crypto-rng: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-rng" "-j" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/mirage-crypto-rng.2.1.0)
-> compiled  mirage-crypto-rng.2.1.0
-> installed mirage-crypto-rng.2.1.0
Processing 12/23: [mirage-crypto-ec: dune build]
Processing 13/23: [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" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/mirage-crypto-pk.2.1.0)
-> compiled  mirage-crypto-pk.2.1.0
Processing 13/23: [mirage-crypto-ec: dune build]
-> installed mirage-crypto-pk.2.1.0
Processing 14/23: [mirage-crypto-ec: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-ec" "-j" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/mirage-crypto-ec.2.1.0)
-> compiled  mirage-crypto-ec.2.1.0
-> installed mirage-crypto-ec.2.1.0
Processing 16/23: [x509: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "x509" "-j" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/x509.1.0.6)
-> compiled  x509.1.0.6
-> installed x509.1.0.6
Processing 18/23: [caqti: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti" "-j" "11" "@install" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/caqti.2.3.0)
Processing 18/23: [caqti: dune install]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caqti" "--create-install-file" "caqti" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/caqti.2.3.0)
-> compiled  caqti.2.3.0
-> installed caqti.2.3.0
Processing 20/23: [caqti-driver-sqlite3: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-driver-sqlite3" "-j" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/caqti-driver-sqlite3.2.3.0)
-> compiled  caqti-driver-sqlite3.2.3.0
-> installed caqti-driver-sqlite3.2.3.0
Processing 22/23: [caqti-lwt: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-lwt" "-j" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/caqti-lwt.2.3.0)
Processing 22/23: [caqti-lwt: dune runtest]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-lwt" "-j" "11" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/caqti-lwt.2.3.0)
- (cd _build/default/examples && ./bikereg.exe -U ../testsuite/uris.conf)
- BIKE-0003 is owned by Trillian.
- BIKE-0042 is not registered.
- Stolen:	BIKE-0000 2026-04-09T12:12:27-00:00 Arthur Dent
- 	BIKE-0004 2026-04-09T12:12:27-00:00 Marvin
- (cd _build/default/caqti-lwt/test-unix && ./main.exe)
- Testing `caqti-lwt'.
- This run has ID `K77L8IUW'.
- 
-   [OK]          pool-lwt          0   basic usage.
-   [OK]          pool-lwt          1   timed cleanup.
- 
- Full test results in `~/.opam/5.4.0/.opam-switch/build/caqti-lwt.2.3.0/_build/default/caqti-lwt/test-unix/_build/_tests/caqti-lwt'.
- Test Successful in 0.702s. 2 tests run.
- (cd _build/default/testsuite && ./main_lwt_unix.exe)
- Testing `test_sql_lwt_unix'.
- This run has ID `M34Z6SR9'.
- 
-   [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   parallel.
-   [OK]          sqlite3         20   nonlinear.
-   [OK]          sqlite3         21   environment.
-   [OK]          sqlite3         22   raise in call.
-   [OK]          sqlite3         23   fail in call.
-   [OK]          sqlite3         24   statement timeout.
-   [OK]          sqlite3         25   drain.
-   [OK]          sqlite3         26   connect.
- 
- Full test results in `~/.opam/5.4.0/.opam-switch/build/caqti-lwt.2.3.0/_build/default/testsuite/_build/_tests/test_sql_lwt_unix'.
- Test Successful in 14.783s. 23 tests run.
-> compiled  caqti-lwt.2.3.0
-> installed caqti-lwt.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-09 12:12.44 ---> saved as "10fae1e818af548e1287cdaf49e1c78408b1e839e45b91c9b2fa79c1c338fe4a"
Job succeeded
2026-04-09 12:12.57: Job succeeded