(not at the head of any monitored branch or PR)
2026-04-09 11:57.57: 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 centos-9-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 ocaml/opam:centos-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/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 --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 "\"centos-9\""; 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 "\"centos-9\""; 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.57: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac-caqti-driver-sqlite3.2.3.0-6b2464946e569e2d90f4b72ef1fe7f0196f077a4"
2026-04-09 11:57.57: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -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 --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 /home/opam/.opam/download-cache)))
      (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 \"\\\"centos-9\\\"\"; 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 \"\\\"centos-9\\\"\"; 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.57: Waiting for resource in pool OCluster
2026-04-09 12:02.18: Waiting for worker…
2026-04-09 12:05.00: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
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 ocaml/opam:centos-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac)
Unable to find image 'ocaml/opam:centos-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac' locally
docker.io/ocaml/opam@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac: Pulling from ocaml/opam
770dd3c6e92a: Pulling fs layer
2911f7a46957: Pulling fs layer
1ba9cdf1cfa2: Pulling fs layer
b8cab8220132: Pulling fs layer
0fc6a39ae9a6: Pulling fs layer
8e3c4b256b97: Pulling fs layer
0fc6a39ae9a6: Waiting
81d04adc2c14: Pulling fs layer
b8cab8220132: Waiting
8e3c4b256b97: Waiting
32c8500591a6: Pulling fs layer
81d04adc2c14: Waiting
32c8500591a6: Waiting
4742b13dfe20: Pulling fs layer
75e8da1c41c0: Pulling fs layer
4742b13dfe20: Waiting
4ab47d63416a: Pulling fs layer
75e8da1c41c0: Waiting
cfcf083e24eb: Pulling fs layer
11a895b5c6b8: Pulling fs layer
7315a5f1d521: Pulling fs layer
4ab47d63416a: Waiting
cfcf083e24eb: Waiting
11a895b5c6b8: Waiting
6d53afc9944a: Pulling fs layer
7315a5f1d521: Waiting
01a19d7847db: Pulling fs layer
6d53afc9944a: Waiting
468b202f5c51: Pulling fs layer
01a19d7847db: Waiting
9483876bca3a: Pulling fs layer
468b202f5c51: Waiting
d6107db0e83f: Pulling fs layer
9483876bca3a: Waiting
9c6e5669169a: Pulling fs layer
d6107db0e83f: Waiting
4df4284e66b0: Pulling fs layer
9c6e5669169a: Waiting
0edefb19f27d: Pulling fs layer
4f4fb700ef54: Pulling fs layer
4df4284e66b0: Waiting
0edefb19f27d: Waiting
2807c7feeb16: Pulling fs layer
4f4fb700ef54: Waiting
8680bb8a718a: Pulling fs layer
2807c7feeb16: Waiting
06751cba04f2: Pulling fs layer
13f5be086fed: Pulling fs layer
8680bb8a718a: Waiting
06751cba04f2: Waiting
957abdf3ad3f: Pulling fs layer
09d6d06570d8: Pulling fs layer
13f5be086fed: Waiting
957abdf3ad3f: Waiting
cc7c7e93d349: Pulling fs layer
09d6d06570d8: Waiting
9a2f817a1a31: Pulling fs layer
cc7c7e93d349: Waiting
edd80250b1b7: Pulling fs layer
9a2f817a1a31: Waiting
62d651938aec: Pulling fs layer
edd80250b1b7: Waiting
eb6ca9ab5ee4: Pulling fs layer
62d651938aec: Waiting
cf62d41b045f: Pulling fs layer
95cf778f2748: Pulling fs layer
eb6ca9ab5ee4: Waiting
cf62d41b045f: Waiting
980d060a5b06: Pulling fs layer
f2f419e9f123: Pulling fs layer
980d060a5b06: Waiting
95cf778f2748: Waiting
2862ab4a5d4a: Pulling fs layer
cd2c468df6a8: Pulling fs layer
f2f419e9f123: Waiting
2862ab4a5d4a: Waiting
2520e20ac8f9: Pulling fs layer
cd2c468df6a8: Waiting
f1d9d5f2e2da: Pulling fs layer
2520e20ac8f9: Waiting
d8b78ad9d0b8: Pulling fs layer
379f9f299735: Pulling fs layer
f1d9d5f2e2da: Waiting
d8b78ad9d0b8: Waiting
027816daaa8e: Pulling fs layer
7ce30737083b: Pulling fs layer
379f9f299735: Waiting
027816daaa8e: Waiting
7ce30737083b: Waiting
2911f7a46957: Verifying Checksum
2911f7a46957: Download complete
b8cab8220132: Verifying Checksum
b8cab8220132: Download complete
770dd3c6e92a: Verifying Checksum
770dd3c6e92a: Download complete
0fc6a39ae9a6: Verifying Checksum
0fc6a39ae9a6: Download complete
81d04adc2c14: Verifying Checksum
81d04adc2c14: Download complete
8e3c4b256b97: Download complete
1ba9cdf1cfa2: Verifying Checksum
32c8500591a6: Download complete
4742b13dfe20: Verifying Checksum
4742b13dfe20: Download complete
75e8da1c41c0: Verifying Checksum
75e8da1c41c0: Download complete
11a895b5c6b8: Verifying Checksum
11a895b5c6b8: Download complete
cfcf083e24eb: Verifying Checksum
cfcf083e24eb: Download complete
4ab47d63416a: Verifying Checksum
4ab47d63416a: Download complete
7315a5f1d521: Download complete
6d53afc9944a: Verifying Checksum
6d53afc9944a: Download complete
01a19d7847db: Verifying Checksum
01a19d7847db: Download complete
468b202f5c51: Verifying Checksum
468b202f5c51: Download complete
9483876bca3a: Verifying Checksum
9483876bca3a: Download complete
d6107db0e83f: Download complete
9c6e5669169a: Verifying Checksum
9c6e5669169a: Download complete
4df4284e66b0: Verifying Checksum
4df4284e66b0: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
0edefb19f27d: Verifying Checksum
0edefb19f27d: Download complete
2807c7feeb16: Verifying Checksum
2807c7feeb16: Download complete
8680bb8a718a: Verifying Checksum
8680bb8a718a: Download complete
06751cba04f2: Verifying Checksum
06751cba04f2: Download complete
957abdf3ad3f: Verifying Checksum
957abdf3ad3f: Download complete
09d6d06570d8: Verifying Checksum
09d6d06570d8: Download complete
13f5be086fed: Download complete
cc7c7e93d349: Verifying Checksum
cc7c7e93d349: Download complete
edd80250b1b7: Verifying Checksum
edd80250b1b7: Download complete
9a2f817a1a31: Verifying Checksum
9a2f817a1a31: Download complete
62d651938aec: Verifying Checksum
62d651938aec: Download complete
eb6ca9ab5ee4: Verifying Checksum
eb6ca9ab5ee4: Download complete
770dd3c6e92a: Pull complete
2911f7a46957: Pull complete
cf62d41b045f: Verifying Checksum
cf62d41b045f: Download complete
980d060a5b06: Verifying Checksum
980d060a5b06: Download complete
2862ab4a5d4a: Verifying Checksum
2862ab4a5d4a: Download complete
cd2c468df6a8: Download complete
1ba9cdf1cfa2: Pull complete
2520e20ac8f9: Verifying Checksum
2520e20ac8f9: Download complete
f2f419e9f123: Verifying Checksum
f2f419e9f123: Download complete
f1d9d5f2e2da: Verifying Checksum
f1d9d5f2e2da: Download complete
379f9f299735: Verifying Checksum
379f9f299735: Download complete
027816daaa8e: Verifying Checksum
027816daaa8e: Download complete
7ce30737083b: Verifying Checksum
7ce30737083b: Download complete
d8b78ad9d0b8: Verifying Checksum
d8b78ad9d0b8: Download complete
95cf778f2748: Verifying Checksum
95cf778f2748: Download complete
b8cab8220132: Pull complete
0fc6a39ae9a6: Pull complete
8e3c4b256b97: Pull complete
81d04adc2c14: Pull complete
32c8500591a6: Pull complete
4742b13dfe20: Pull complete
75e8da1c41c0: Pull complete
4ab47d63416a: Pull complete
cfcf083e24eb: Pull complete
11a895b5c6b8: Pull complete
7315a5f1d521: Pull complete
6d53afc9944a: Pull complete
01a19d7847db: Pull complete
468b202f5c51: Pull complete
9483876bca3a: Pull complete
d6107db0e83f: Pull complete
9c6e5669169a: Pull complete
4df4284e66b0: Pull complete
0edefb19f27d: Pull complete
4f4fb700ef54: Pull complete
2807c7feeb16: Pull complete
8680bb8a718a: Pull complete
06751cba04f2: Pull complete
13f5be086fed: Pull complete
957abdf3ad3f: Pull complete
09d6d06570d8: Pull complete
cc7c7e93d349: Pull complete
9a2f817a1a31: Pull complete
edd80250b1b7: Pull complete
62d651938aec: Pull complete
eb6ca9ab5ee4: Pull complete
cf62d41b045f: Pull complete
95cf778f2748: Pull complete
980d060a5b06: Pull complete
f2f419e9f123: Pull complete
2862ab4a5d4a: Pull complete
cd2c468df6a8: Pull complete
2520e20ac8f9: Pull complete
f1d9d5f2e2da: Pull complete
d8b78ad9d0b8: Pull complete
379f9f299735: Pull complete
027816daaa8e: Pull complete
7ce30737083b: Pull complete
Digest: sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac
Status: Downloaded newer image for ocaml/opam@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac
2026-04-09 12:07.26 ---> saved as "5a483e8f384c1537bd6414fb1d6ecd3225b81ddae6fbf219b83d309e284e23ed"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-09 12:07.26 ---> saved as "cc866741f68ba0820027f959034bbac9d8ed1b253b6a4b890ea810e0febc9293"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from 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 /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-09 12:07.52 ---> saved as "1abe7714bd7ebb3bddf5c6252090e0b09511e9f875ff9d165571f697a60e2a4b"

/home/opam: (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=linux os-distribution=centos os-version=9
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-09 12:07.52 ---> saved as "1ebab396bbda61aacd87e5f6925a5a09c28010175ae84fbb33f76e9b036f5623"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-09 12:07.59 ---> saved as "ffe25c3850d1bb9516372defcb6239181e7b51ce707e83406dcc6ff2a0e9b32b"

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-09 12:08.12 ---> saved as "8c573199b03e974ac99f24e07d37b8ec4fca3fca136197963cb1c58a68766fb7"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-09 12:08.31 ---> saved as "e44aa3e93803d6fa27836b93fa1ad16b47efa02e211ba6e37f318e574e428f82"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS                        101 kB/s |  14 kB     00:00    
- CentOS Stream 9 - BaseOS                         10 MB/s | 8.9 MB     00:00    
- CentOS Stream 9 - AppStream                     108 kB/s |  14 kB     00:00    
- CentOS Stream 9 - AppStream                      12 MB/s |  27 MB     00:02    
- CentOS Stream 9 - CRB                            79 kB/s |  14 kB     00:00    
- CentOS Stream 9 - CRB                           4.7 MB/s | 8.0 MB     00:01    
- CentOS Stream 9 - Extras packages                91 kB/s |  16 kB     00:00    
- Metadata cache created.
2026-04-09 12:08.50 ---> saved as "6fffcc07c98c1a88fc15a1fb7f9f722231599711eb37b3ea459fe600ec4adf5c"

/home/opam: (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:08.51 ---> saved as "c0e8a4728225963681030d9110482e5fd3ce3270d176092f079a1e5d48bf0024"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (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 \"\\\"centos-9\\\"\"; 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.17.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.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 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-devel sqlite-devel

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

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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/bin/sudo "yum" "install" "-y" "gmp-devel" "sqlite-devel"
- Last metadata expiration check: 0:00:06 ago on Thu Apr  9 12:08:49 2026.
- Dependencies resolved.
- ================================================================================
-  Package             Architecture  Version               Repository        Size
- ================================================================================
- Installing:
-  gmp-devel           x86_64        1:6.2.0-13.el9        appstream        174 k
-  sqlite-devel        x86_64        3.34.1-9.el9          appstream        133 k
- Installing dependencies:
-  gmp-c++             x86_64        1:6.2.0-13.el9        appstream         19 k
-  sqlite              x86_64        3.34.1-9.el9          appstream        758 k
- 
- Transaction Summary
- ================================================================================
- Install  4 Packages
- 
- Total download size: 1.1 M
- Installed size: 2.5 M
- Downloading Packages:
- (1/4): gmp-c++-6.2.0-13.el9.x86_64.rpm          705 kB/s |  19 kB     00:00    
- (2/4): gmp-devel-6.2.0-13.el9.x86_64.rpm        439 kB/s | 174 kB     00:00    
- (3/4): sqlite-devel-3.34.1-9.el9.x86_64.rpm     359 kB/s | 133 kB     00:00    
- (4/4): sqlite-3.34.1-9.el9.x86_64.rpm           1.7 MB/s | 758 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           1.5 MB/s | 1.1 MB     00:00     
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1
-  
-   Installing       : sqlite-3.34.1-9.el9.x86_64                             1/4 
-   Installing       : gmp-c++-1:6.2.0-13.el9.x86_64                          2/4 
-   Installing       : gmp-devel-1:6.2.0-13.el9.x86_64                        3/4 
-   Installing       : sqlite-devel-3.34.1-9.el9.x86_64                       4/4 
-   Running scriptlet: sqlite-devel-3.34.1-9.el9.x86_64                       4/4 
-   Verifying        : gmp-c++-1:6.2.0-13.el9.x86_64                          1/4 
-   Verifying        : gmp-devel-1:6.2.0-13.el9.x86_64                        2/4 
-   Verifying        : sqlite-3.34.1-9.el9.x86_64                             3/4 
-   Verifying        : sqlite-devel-3.34.1-9.el9.x86_64                       4/4 
- 
- Installed:
-   gmp-c++-1:6.2.0-13.el9.x86_64         gmp-devel-1:6.2.0-13.el9.x86_64         
-   sqlite-3.34.1-9.el9.x86_64            sqlite-devel-3.34.1-9.el9.x86_64        
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "sqlite-devel"
- gmp-devel-6.2.0-13.el9.x86_64
- sqlite-devel-3.34.1-9.el9.x86_64

<><> 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)
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed conf-sqlite3.1
-> 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.17.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.17.0  (cached)
-> retrieved sexplib0.v0.17.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 fmt.0.11.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed dune.3.22.1
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed fs-io.3.22.1
-> installed gmap.0.3.0
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed ordering.3.22.1
-> installed pp.2.0.0
-> installed psq.0.2.1
-> installed sexplib0.v0.17.0
-> installed stringext.1.6.0
-> installed top-closure.3.22.1
-> installed hex.1.5.0
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed lru.0.3.1
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.22.1
-> installed dyn.3.22.1
-> installed parsexp.v0.17.0
-> installed bigstringaf.0.10.0
-> installed mirage-crypto.2.1.0
-> installed angstrom.0.16.1
-> installed kdf.1.0.0
-> installed sexplib.v0.17.0
-> installed mirage-crypto-rng.2.1.0
-> installed dune-compiledb.0.6.0
-> installed mirage-crypto-pk.2.1.0
-> installed uri.4.4.0
-> installed sqlite3.5.4.0
-> installed stdune.3.22.1
-> installed dune-private-libs.3.22.1
-> installed mirage-crypto-ec.2.1.0
-> installed dune-site.3.22.1
-> installed x509.1.0.6
-> 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:10.23 ---> saved as "15c3379e029892a7a535d066b3b606acdaf750bee5a4796e8e0e148328204126"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caqti-driver-sqlite3.2.3.0) || true"))
The following actions will be performed:
=== recompile 15 packages
  - recompile caqti                2.3.0          [uses logs]
  - recompile caqti-driver-sqlite3 2.3.0 (pinned)
  - recompile cstruct              6.2.0          [uses fmt]
  - recompile dune-compiledb       0.6.0          [uses ezjsonm]
  - 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 sqlite3              5.4.0          [uses dune-compiledb]
  - recompile uutf                 1.0.4          [uses cmdliner]
  - recompile x509                 1.0.6          [uses fmt]
=== 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://opam.ocaml.org/cache)
-> 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)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved dune-compiledb.0.6.0  (https://opam.ocaml.org/cache)
-> retrieved ezjsonm.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved hex.1.5.0  (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved sqlite3.5.4.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed re.1.14.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   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
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed alcotest.1.9.1
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed ezjsonm.1.3.0
-> installed mirage-crypto-rng.2.1.0
-> installed dune-compiledb.0.6.0
-> installed mirage-crypto-pk.2.1.0
-> installed sqlite3.5.4.0
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> 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:10.50 ---> saved as "074cef2e6bca5921a0abd787ac75ed568228e9d17feb0c943abbf26b129365e4"

/home/opam: (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 \"\\\"centos-9\\\"\"; 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:
=== recompile 1 package
  - recompile caqti-driver-sqlite3 2.3.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [caqti-driver-sqlite3: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-driver-sqlite3" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-driver-sqlite3.2.3.0)
Processing  2/4: [caqti-driver-sqlite3: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-driver-sqlite3" "-j" "71" (CWD=/home/opam/.opam/5.4/.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 `ZCQSEP71'.
- 
-   [OK]          sqlite3          0   test_error.
-   [OK]          sqlite3          1   test_fun.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/caqti-driver-sqlite3.2.3.0/_build/default/caqti-driver-sqlite3/test/_build/_tests/test_sqlite3'.
- Test Successful in 0.001s. 2 tests run.
- (cd _build/default/testsuite && ./main_blocking.exe -U uris.conf)
- Testing `test_sql_blocking'.
- This run has ID `BFRZ93XV'.
- 
-   [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/5.4/.opam-switch/build/caqti-driver-sqlite3.2.3.0/_build/default/testsuite/_build/_tests/test_sql_blocking'.
- Test Successful in 1.153s. 22 tests run.
-> compiled  caqti-driver-sqlite3.2.3.0
-> removed   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:10.57 ---> saved as "1d035e57d649cba7f121f5baadc294b0cdd4ce1820e8c2eb5aa67bffccf85bd2"
Job succeeded
2026-04-09 12:11.02: Job succeeded