(not at the head of any monitored branch or PR)
2026-03-10 08:59.54: New job: test caqti-lwt.1.9.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on centos-9-ocaml-4.14/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/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-4.14@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372
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-lwt.1.9.0 1.9.0
RUN opam reinstall caqti-lwt.1.9.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-lwt.1.9.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.1.9.0) || true
RUN opam reinstall --with-test --verbose caqti-lwt.1.9.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-lwt.1.9.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-03-10 08:59.54: Using cache hint "ocaml/opam:centos-9-ocaml-4.14@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372-caqti-lwt.1.9.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.54: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372)
 (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-lwt.1.9.0 1.9.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall caqti-lwt.1.9.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-lwt.1.9.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.1.9.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caqti-lwt.1.9.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-lwt.1.9.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-03-10 08:59.54: Waiting for resource in pool OCluster
2026-03-10 09:59.19: Waiting for worker…
2026-03-10 10:02.08: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  90% (16723/18405)
Updating files:  91% (16749/18405)
Updating files:  92% (16933/18405)
Updating files:  93% (17117/18405)
Updating files:  94% (17301/18405)
Updating files:  95% (17485/18405)
Updating files:  96% (17669/18405)
Updating files:  97% (17853/18405)
Updating files:  98% (18037/18405)
Updating files:  99% (18221/18405)
Updating files: 100% (18405/18405)
Updating files: 100% (18405/18405), done.
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 6 +++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 400 insertions(+), 84 deletions(-)

(from ocaml/opam:centos-9-ocaml-4.14@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372)
Unable to find image 'ocaml/opam:centos-9-ocaml-4.14@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372' locally
docker.io/ocaml/opam@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372: Pulling from ocaml/opam
45c6a4d4c886: Pulling fs layer
b17581aa4795: Pulling fs layer
4c1de3308e3e: Pulling fs layer
48316ebaa55a: Pulling fs layer
7ec69a714829: Pulling fs layer
b03bd2510449: Pulling fs layer
304a5c461745: Pulling fs layer
60df06c700dd: Pulling fs layer
89e00e57b3fa: Pulling fs layer
7a919f7b5f28: Pulling fs layer
4dd342eaf261: Pulling fs layer
fe0e6064d681: Pulling fs layer
4ecda19bc519: Pulling fs layer
d7de0d705545: Pulling fs layer
dd5867dc1c0f: Pulling fs layer
e95819b6c530: Pulling fs layer
0d197bd9c89e: Pulling fs layer
5c85d30bb240: Pulling fs layer
64d1254de61e: Pulling fs layer
de006d6a444d: Pulling fs layer
9704bbfa1415: Pulling fs layer
d53544e2413c: Pulling fs layer
4f4fb700ef54: Pulling fs layer
4d545aa3b363: Pulling fs layer
09943d8af875: Pulling fs layer
f4bef9be8486: Pulling fs layer
792f3c5f41a4: Pulling fs layer
6985496d8889: Pulling fs layer
5301efc77bf0: Pulling fs layer
2ffd769334f5: Pulling fs layer
08c3be5e76fe: Pulling fs layer
284a634e255d: Pulling fs layer
38c8ab2c6bee: Pulling fs layer
2c29741f6e40: Pulling fs layer
60cce0d35550: Pulling fs layer
48316ebaa55a: Waiting
7ec69a714829: Waiting
b03bd2510449: Waiting
304a5c461745: Waiting
60df06c700dd: Waiting
89e00e57b3fa: Waiting
7a919f7b5f28: Waiting
4dd342eaf261: Waiting
fe0e6064d681: Waiting
4ecda19bc519: Waiting
d7de0d705545: Waiting
dd5867dc1c0f: Waiting
e95819b6c530: Waiting
0d197bd9c89e: Waiting
5c85d30bb240: Waiting
64d1254de61e: Waiting
de006d6a444d: Waiting
9704bbfa1415: Waiting
d53544e2413c: Waiting
792f3c5f41a4: Waiting
4f4fb700ef54: Waiting
4d545aa3b363: Waiting
6985496d8889: Waiting
5301efc77bf0: Waiting
2ffd769334f5: Waiting
f4bef9be8486: Waiting
08c3be5e76fe: Waiting
284a634e255d: Waiting
38c8ab2c6bee: Waiting
2c29741f6e40: Waiting
09943d8af875: Waiting
75db624f3f65: Pulling fs layer
21fdff44f7df: Pulling fs layer
60cce0d35550: Waiting
75db624f3f65: Waiting
9fd1a090a391: Pulling fs layer
6572f3b9bb36: Pulling fs layer
1f1e09f0a1c4: Pulling fs layer
7c1cf8ce65af: Pulling fs layer
3569808e5c53: Pulling fs layer
260be5f8f6bb: Pulling fs layer
9fd1a090a391: Waiting
a074f40e7251: Pulling fs layer
6572f3b9bb36: Waiting
a4626f1fd9c6: Pulling fs layer
1f1e09f0a1c4: Waiting
7c1cf8ce65af: Waiting
a074f40e7251: Waiting
3569808e5c53: Waiting
a4626f1fd9c6: Waiting
21fdff44f7df: Waiting
b17581aa4795: Verifying Checksum
b17581aa4795: Download complete
45c6a4d4c886: Verifying Checksum
45c6a4d4c886: Download complete
7ec69a714829: Verifying Checksum
7ec69a714829: Download complete
b03bd2510449: Verifying Checksum
b03bd2510449: Download complete
304a5c461745: Verifying Checksum
304a5c461745: Download complete
60df06c700dd: Verifying Checksum
60df06c700dd: Download complete
89e00e57b3fa: Verifying Checksum
89e00e57b3fa: Download complete
45c6a4d4c886: Pull complete
b17581aa4795: Pull complete
7a919f7b5f28: Verifying Checksum
7a919f7b5f28: Download complete
4dd342eaf261: Verifying Checksum
4dd342eaf261: Download complete
48316ebaa55a: Verifying Checksum
48316ebaa55a: Download complete
4ecda19bc519: Verifying Checksum
4ecda19bc519: Download complete
d7de0d705545: Verifying Checksum
d7de0d705545: Download complete
dd5867dc1c0f: Verifying Checksum
dd5867dc1c0f: Download complete
e95819b6c530: Verifying Checksum
e95819b6c530: Download complete
0d197bd9c89e: Verifying Checksum
0d197bd9c89e: Download complete
5c85d30bb240: Verifying Checksum
5c85d30bb240: Download complete
64d1254de61e: Download complete
de006d6a444d: Verifying Checksum
de006d6a444d: Download complete
9704bbfa1415: Download complete
d53544e2413c: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
fe0e6064d681: Download complete
4d545aa3b363: Verifying Checksum
4d545aa3b363: Download complete
09943d8af875: Verifying Checksum
09943d8af875: Download complete
f4bef9be8486: Download complete
792f3c5f41a4: Verifying Checksum
792f3c5f41a4: Download complete
6985496d8889: Verifying Checksum
6985496d8889: Download complete
5301efc77bf0: Verifying Checksum
5301efc77bf0: Download complete
2ffd769334f5: Download complete
284a634e255d: Verifying Checksum
284a634e255d: Download complete
08c3be5e76fe: Verifying Checksum
08c3be5e76fe: Download complete
38c8ab2c6bee: Verifying Checksum
38c8ab2c6bee: Download complete
2c29741f6e40: Verifying Checksum
2c29741f6e40: Download complete
60cce0d35550: Verifying Checksum
60cce0d35550: Download complete
21fdff44f7df: Verifying Checksum
21fdff44f7df: Download complete
75db624f3f65: Verifying Checksum
75db624f3f65: Download complete
9fd1a090a391: Download complete
6572f3b9bb36: Download complete
1f1e09f0a1c4: Verifying Checksum
1f1e09f0a1c4: Download complete
7c1cf8ce65af: Verifying Checksum
7c1cf8ce65af: Download complete
4c1de3308e3e: Verifying Checksum
4c1de3308e3e: Download complete
a074f40e7251: Verifying Checksum
a074f40e7251: Download complete
260be5f8f6bb: Verifying Checksum
260be5f8f6bb: Download complete
a4626f1fd9c6: Verifying Checksum
a4626f1fd9c6: Download complete
4c1de3308e3e: Pull complete
3569808e5c53: Verifying Checksum
3569808e5c53: Download complete
48316ebaa55a: Pull complete
7ec69a714829: Pull complete
b03bd2510449: Pull complete
304a5c461745: Pull complete
60df06c700dd: Pull complete
89e00e57b3fa: Pull complete
7a919f7b5f28: Pull complete
4dd342eaf261: Pull complete
fe0e6064d681: Pull complete
4ecda19bc519: Pull complete
d7de0d705545: Pull complete
dd5867dc1c0f: Pull complete
e95819b6c530: Pull complete
0d197bd9c89e: Pull complete
5c85d30bb240: Pull complete
64d1254de61e: Pull complete
de006d6a444d: Pull complete
9704bbfa1415: Pull complete
d53544e2413c: Pull complete
4f4fb700ef54: Pull complete
4d545aa3b363: Pull complete
09943d8af875: Pull complete
f4bef9be8486: Pull complete
792f3c5f41a4: Pull complete
6985496d8889: Pull complete
5301efc77bf0: Pull complete
2ffd769334f5: Pull complete
08c3be5e76fe: Pull complete
284a634e255d: Pull complete
38c8ab2c6bee: Pull complete
2c29741f6e40: Pull complete
60cce0d35550: Pull complete
75db624f3f65: Pull complete
21fdff44f7df: Pull complete
9fd1a090a391: Pull complete
6572f3b9bb36: Pull complete
1f1e09f0a1c4: Pull complete
7c1cf8ce65af: Pull complete
3569808e5c53: Pull complete
260be5f8f6bb: Pull complete
a074f40e7251: Pull complete
a4626f1fd9c6: Pull complete
Digest: sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372
Status: Downloaded newer image for ocaml/opam@sha256:c5214aa4001bdaf61ab60ab08088d08126f505830543a9facb5605cb6c82c372
2026-03-10 10:04.00 ---> saved as "b788acd4da8fb73caf19bfe42cbef1beba89b64f4c66d734721a0c3f0d4435fd"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-10 10:04.01 ---> saved as "70ff0bcfa54a08112618ec8ef20dd827641477f764896ee145c5ed0c1bee9dc6"

/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-03-10 10:04.36 ---> saved as "1febc9ddc454dbdf80a6a3345ec18e3e40f17cdf0cbef5435df97c11b79cd325"

/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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-10 10:04.37 ---> saved as "9a6db125af155ec898b94f79da3cd4478578c333abe2c495b7bc7e09ef862303"

/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-03-10 10:04.55 ---> saved as "123c863c88d9163653471b7fe36c8d89acfc68fa63e12ae93514e471cb923a58"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 10:05.08 ---> saved as "ac225d987c373abfdeec495c86ef30030604342cead4a9b06477ed9e00e206cd"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 10:05.36 ---> saved as "6eda1e9af2f67fc6f6fa26febb1baa270219880ee4c9f72d0804580301a571a3"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS                         98 kB/s |  14 kB     00:00    
- CentOS Stream 9 - BaseOS                         15 MB/s | 8.9 MB     00:00    
- CentOS Stream 9 - AppStream                     104 kB/s |  15 kB     00:00    
- CentOS Stream 9 - AppStream                      12 MB/s |  27 MB     00:02    
- CentOS Stream 9 - CRB                            96 kB/s |  14 kB     00:00    
- CentOS Stream 9 - CRB                           9.2 MB/s | 8.0 MB     00:00    
- CentOS Stream 9 - Extras packages               117 kB/s |  16 kB     00:00    
- CentOS Stream 9 - Extras packages               119 kB/s |  20 kB     00:00    
- Metadata cache created.
2026-03-10 10:05.57 ---> saved as "8df54cfae4d954563ccaf298e0bf788d02f2fa39f1cd78ea8aba0c58441c5d53"

/home/opam: (run (shell "opam pin add -k version -yn caqti-lwt.1.9.0 1.9.0"))
caqti-lwt is now pinned to version 1.9.0
2026-03-10 10:05.58 ---> saved as "a16629a5d258878add014d4f88c3a991c2a41ee50d84e3b508bcd542f380f87d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall caqti-lwt.1.9.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-lwt.1.9.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.1.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
  - install angstrom           0.16.1         [required by caqti]
  - install base-bytes         base           [required by ocplib-endian]
  - install bigstringaf        0.10.0         [required by caqti]
  - install caqti              1.9.0          [required by caqti-lwt]
  - install caqti-lwt          1.9.0 (pinned)
  - install cppo               1.8.0          [required by caqti]
  - install csexp              1.5.2          [required by dune-configurator]
  - install dune               3.21.1         [required by caqti-lwt]
  - install dune-configurator  3.21.1         [required by bigstringaf, lwt]
  - install logs               0.10.0         [required by caqti-lwt]
  - install lwt                6.1.1          [required by caqti-lwt]
  - install ocaml-syntax-shims 1.0.0          [required by angstrom]
  - install ocamlbuild         0.16.1         [required by logs, ptime]
  - install ocamlfind          1.9.8          [required by logs, ptime]
  - install ocplib-endian      1.2            [required by lwt]
  - install ptime              1.2.0          [required by caqti]
  - install stringext          1.6.0          [required by uri]
  - install topkg              1.1.1          [required by logs, ptime]
  - install uri                4.4.0          [required by caqti]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved caqti.1.9.0, caqti-lwt.1.9.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.1.1  (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 ptime.1.2.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed ptime.1.2.0
-> installed dune.3.21.1
-> installed stringext.1.6.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed lwt.6.1.1
-> installed logs.0.10.0
-> installed caqti.1.9.0
-> installed caqti-lwt.1.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:06.56 ---> saved as "3c319b9413f05af32a4e33478d71ab8024775ddc192db6e124d1bd99d0119786"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caqti-lwt.1.9.0) || true"))
The following actions will be performed:
=== recompile 3 packages
  - recompile caqti                1.9.0          [uses logs]
  - recompile caqti-lwt            1.9.0 (pinned)
  - recompile logs                 0.10.0         [uses cmdliner]
=== install 23 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 1.9.0          [required by caqti-lwt]
  - install   caqti-dynload        1.3.0          [required by caqti-lwt]
  - install   cmdliner             2.1.0          [required by caqti-lwt]
  - install   conf-pkg-config      4              [required by conf-sqlite3]
  - 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   fmt                  0.11.0         [required by alcotest, alcotest-lwt]
  - 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.16.0        [required by sexplib]
  - install   re                   1.14.0         [required by alcotest]
  - install   sexplib              v0.16.0        [required by dune-compiledb]
  - install   sexplib0             v0.16.0        [required by dune-compiledb]
  - install   sqlite3              5.4.0          [required by caqti-driver-sqlite3]
  - install   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-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" "sqlite-devel"
- Last metadata expiration check: 0:01:07 ago on Tue Mar 10 10:05:55 2026.
- Dependencies resolved.
- ================================================================================
-  Package             Architecture  Version               Repository        Size
- ================================================================================
- Installing:
-  sqlite-devel        x86_64        3.34.1-9.el9          appstream        133 k
- Installing dependencies:
-  sqlite              x86_64        3.34.1-9.el9          appstream        758 k
- 
- Transaction Summary
- ================================================================================
- Install  2 Packages
- 
- Total download size: 891 k
- Installed size: 2.1 M
- Downloading Packages:
- (1/2): sqlite-devel-3.34.1-9.el9.x86_64.rpm     4.6 MB/s | 133 kB     00:00    
- (2/2): sqlite-3.34.1-9.el9.x86_64.rpm           9.3 MB/s | 758 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           3.9 MB/s | 891 kB     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/2 
-   Installing       : sqlite-devel-3.34.1-9.el9.x86_64                       2/2 
-   Running scriptlet: sqlite-devel-3.34.1-9.el9.x86_64                       2/2 
-   Verifying        : sqlite-3.34.1-9.el9.x86_64                             1/2 
-   Verifying        : sqlite-devel-3.34.1-9.el9.x86_64                       2/2 
- 
- Installed:
-   sqlite-3.34.1-9.el9.x86_64          sqlite-devel-3.34.1-9.el9.x86_64         
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "sqlite-devel"
- sqlite-devel-3.34.1-9.el9.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved caqti.1.9.0, caqti-driver-sqlite3.1.9.0, caqti-lwt.1.9.0  (https://opam.ocaml.org/cache)
-> retrieved caqti-dynload.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> installed conf-pkg-config.4
-> installed conf-sqlite3.1
-> 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 fpath.0.7.3  (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 num.1.6  (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> 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)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> installed fpath.0.7.3
-> installed re.1.14.0
-> installed num.1.6
-> installed parsexp.v0.16.0
-> installed sexplib.v0.16.0
-> removed   caqti-lwt.1.9.0
-> removed   caqti.1.9.0
-> removed   logs.0.10.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 jsonm.1.0.2
-> installed alcotest.1.9.1
-> installed ezjsonm.1.3.0
-> installed logs.0.10.0
-> installed alcotest-lwt.1.9.1
-> installed dune-compiledb.0.6.0
-> installed caqti.1.9.0
-> installed caqti-dynload.1.3.0
-> installed sqlite3.5.4.0
-> installed caqti-driver-sqlite3.1.9.0
-> installed caqti-lwt.1.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:07.25 ---> saved as "87d104eff6de10cc33b89f7ae5675661068b8856e312044d798ebd99bdc0452a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose caqti-lwt.1.9.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-lwt.1.9.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-lwt 1.9.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [caqti-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-lwt" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/caqti-lwt.1.9.0)
Processing  2/4: [caqti-lwt: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-lwt" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/caqti-lwt.1.9.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-03-10T10:07:30-00:00 Arthur Dent
- 	BIKE-0004 2026-03-10T10:07:30-00:00 Marvin
- (cd _build/default/caqti-lwt/test && ./main.exe)
- Testing `caqti-lwt'.
- This run has ID `K9RUIDXE'.
- 
-   [OK]          pool-lwt          0   basic usage.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/caqti-lwt.1.9.0/_build/default/caqti-lwt/test/_build/_tests/caqti-lwt'.
- Test Successful in 0.884s. 1 test run.
- (cd _build/default/testsuite && ./main_lwt.exe)
- Testing `test_sql_lwt'.
- This run has ID `ZOSU9I03'.
- 
-   [OK]          sqlite3          0   post_connect.
-   [OK]          sqlite3          1   expand.
-   [OK]          sqlite3          2   expr.
-   [OK]          sqlite3          3   enum.
-   [OK]          sqlite3          4   table.
-   [OK]          sqlite3          5   affected_count.
-   [OK]          sqlite3          6   stream.
-   [OK]          sqlite3          7   stream_both_ways.
-   [OK]          sqlite3          8   stream_binary.
-   [OK]          sqlite3          9   harness.
-   [OK]          sqlite3         10   NOT NULL constraint violation.
-   [OK]          sqlite3         11   UNIQUE constraint violation.
-   [OK]          sqlite3         12   FOREIGN KEY constraint violation.
-   [OK]          sqlite3         13   CHECK constraint violation.
-   [OK]          sqlite3         14   parallel.
-   [OK]          sqlite3         15   nonlinear.
-   [OK]          sqlite3         16   environment.
-   [OK]          sqlite3         17   raise in call.
-   [OK]          sqlite3         18   fail in call.
-   [OK]          sqlite3         19   statement timeout.
-   [OK]          sqlite3         20   drain.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/caqti-lwt.1.9.0/_build/default/testsuite/_build/_tests/test_sql_lwt'.
- Test Successful in 1.858s. 21 tests run.
-> compiled  caqti-lwt.1.9.0
-> removed   caqti-lwt.1.9.0
-> installed caqti-lwt.1.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:07.33 ---> saved as "ed16c2ea67a35fa3ad82b664645212a28f0625c95c787e05044f7d022f759e77"
Job succeeded
2026-03-10 10:07.44: Job succeeded