(not at the head of any monitored branch or PR)
2026-03-10 08:59.54: New job: test caqti-lwt.2.1.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on archlinux-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:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
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.2.1.1 2.1.1
RUN opam reinstall caqti-lwt.2.1.1; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caqti-lwt.2.1.1' && 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.1.1) || true
RUN opam reinstall --with-test --verbose caqti-lwt.2.1.1; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caqti-lwt.2.1.1' && 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:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc-caqti-lwt.2.1.1-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.54: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc)
 (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.2.1.1 2.1.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall caqti-lwt.2.1.1;\
             \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 \"\\\"archlinux\\\"\"; 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.1.1' && 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.1.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose caqti-lwt.2.1.1;\
             \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 \"\\\"archlinux\\\"\"; 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.1.1' && 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 10:01.42: Waiting for worker…
2026-03-10 10:03.47: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
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:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc' locally
docker.io/ocaml/opam@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc: Pulling from ocaml/opam
30309458937a: Already exists
d6ec592b6ce7: Already exists
eb0cc4fae01f: Already exists
da907aea55a3: Already exists
41225181d62b: Already exists
99bbb95b040c: Already exists
ae03e2432f2e: Already exists
960a3688e50d: Already exists
12e572ae8d9e: Already exists
5d9b53919351: Already exists
613718b9dc5c: Already exists
20c50d6517d7: Already exists
318e41a81dac: Already exists
c8d0fbcceca0: Already exists
f18608e88c8a: Already exists
4f4fb700ef54: Already exists
53a25100385e: Already exists
cf8654ebee96: Already exists
57cdf8563f57: Already exists
ce24bbfe16f6: Already exists
5c9351c3921c: Already exists
4d8c9f844539: Already exists
765a1d524e16: Already exists
e9b60c2e279a: Already exists
35a412369c63: Already exists
26b4e7a0d54a: Already exists
13545a674236: Already exists
93a04f32ed48: Already exists
59e69b721f9d: Already exists
563d03393b08: Already exists
22f1353d2736: Already exists
bb9e869c408b: Already exists
edabeb8a4c11: Already exists
7efbe0d19f89: Already exists
21417741ad36: Pulling fs layer
042e95d761f0: Pulling fs layer
067eafa8dfc5: Pulling fs layer
c7d024cccfeb: Pulling fs layer
c7d024cccfeb: Waiting
042e95d761f0: Verifying Checksum
042e95d761f0: Download complete
067eafa8dfc5: Verifying Checksum
067eafa8dfc5: Download complete
c7d024cccfeb: Download complete
21417741ad36: Download complete
21417741ad36: Pull complete
042e95d761f0: Pull complete
067eafa8dfc5: Pull complete
c7d024cccfeb: Pull complete
Digest: sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
Status: Downloaded newer image for ocaml/opam@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
2026-03-10 10:04.17 ---> using "defecf98fb6f641e065b799254b3c5c2968572b44e0295065c234fad52a6afe3" from cache

/: (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.17 ---> using "f751fdf01351e78d896c907353de30cfda207d18430617ae2b0053c521b16039" from cache

/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.17 ---> using "cf049c20f36a20b71fc8f8859551e5548a66e77585344418c35085917a36d17b" from cache

/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=arch os-version=20260301.0.494762
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# 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.17 ---> using "156cd3919581b4ed59e130881fe979b51263d70a65dd7375c417031f90284d42" from cache

/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.17 ---> using "16dbf86c224f68e5cc760fb73511cd0f76aa8cdceeb839da2f5152ab0f39180c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 10:04.18 ---> using "7c6031df29a901be4aef6cca90e7b414d6e8e08ac96ee223a0edb10907ce464c" from cache

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2026-03-10 10:04.25 ---> saved as "ad138cf4d087d1c1f96936c84e602cb71823cac1cbe51b67480cf7438a6d2471"

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

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall caqti-lwt.2.1.1;\
                        \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 \"\\\"archlinux\\\"\"; 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.1.1' && 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.1.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 51 packages
  ∗ angstrom           0.16.1         [required by caqti]
  ∗ asn1-combinators   0.3.2          [required by x509]
  ∗ base-bytes         base           [required by ocplib-endian]
  ∗ base64             3.5.2          [required by x509]
  ∗ bigstringaf        0.10.0         [required by caqti]
  ∗ caqti              2.1.2          [required by caqti-lwt]
  ∗ caqti-lwt          2.1.1 (pinned)
  ∗ conf-gmp           5              [required by conf-gmp-powm-sec, zarith]
  ∗ conf-gmp-powm-sec  4              [required by mirage-crypto-pk]
  ∗ conf-pkg-config    4              [required by zarith]
  ∗ cppo               1.8.0          [required by lwt]
  ∗ csexp              1.5.2          [required by dune-private-libs]
  ∗ digestif           1.3.0          [required by tls]
  ∗ domain-name        0.5.0          [required by caqti-lwt]
  ∗ dune               3.21.1         [required by caqti-lwt]
  ∗ dune-configurator  3.21.1         [required by lwt, bigstringaf, mirage-crypto-ec]
  ∗ dune-private-libs  3.21.1         [required by dune-site]
  ∗ dune-site          3.21.1         [required by caqti]
  ∗ duration           0.2.1          [required by mirage-crypto-rng]
  ∗ dyn                3.21.1         [required by dune-private-libs]
  ∗ eqaf               0.10           [required by mirage-crypto-ec, digestif, mirage-crypto-pk]
  ∗ fmt                0.11.0         [required by logs, tls]
  ∗ fs-io              3.21.1         [required by stdune]
  ∗ gmap               0.3.0          [required by x509]
  ∗ ipaddr             5.6.2          [required by caqti-lwt]
  ∗ kdf                1.0.0          [required by tls]
  ∗ logs               0.10.0         [required by caqti-lwt]
  ∗ lwt                6.1.1          [required by caqti-lwt]
  ∗ lwt-dllist         1.1.0          [required by caqti]
  ∗ macaddr            5.6.2          [required by ipaddr]
  ∗ mirage-crypto      2.0.3          [required by tls]
  ∗ mirage-crypto-ec   2.0.3          [required by tls]
  ∗ mirage-crypto-pk   2.0.3          [required by tls]
  ∗ mirage-crypto-rng  2.0.3          [required by tls]
  ∗ mtime              2.1.0          [required by caqti-lwt]
  ∗ ocaml-syntax-shims 1.0.0          [required by angstrom]
  ∗ ocamlbuild         0.16.1         [required by mtime, logs, ptime]
  ∗ ocamlfind          1.9.8          [required by mtime, logs, ptime]
  ∗ ocplib-endian      1.2            [required by lwt]
  ∗ ohex               0.2.0          [required by tls]
  ∗ ordering           3.21.1         [required by dyn, stdune]
  ∗ pp                 2.0.0          [required by dune-private-libs]
  ∗ ptime              1.2.0          [required by caqti]
  ∗ stdune             3.21.1         [required by dune-private-libs]
  ∗ stringext          1.6.0          [required by uri]
  ∗ tls                2.0.3          [required by caqti]
  ∗ top-closure        3.21.1         [required by stdune]
  ∗ topkg              1.1.1          [required by mtime, logs, ptime]
  ∗ uri                4.4.0          [required by caqti]
  ∗ x509               1.0.6          [required by caqti]
  ∗ zarith             1.14           [required by mirage-crypto-pk]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
  2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- 
- Package (6)     Old Version  New Version  Net Change  Download Size
- 
- core/iana-etc   20260225-2   20260306-1     0.00 MiB       0.39 MiB
- core/libcap-ng  0.9-1        0.9.1-1       -0.01 MiB       0.04 MiB
- extra/lmdb      0.9.34-1     0.9.35-1       0.00 MiB       0.11 MiB
- core/sqlite     3.51.2-1     3.52.0-1       0.17 MiB       2.29 MiB
- core/zlib       1:1.3.2-2    1:1.3.2-3      0.00 MiB       0.08 MiB
- core/pkgconf                 2.5.1-1        0.20 MiB       0.07 MiB
- 
- Total Download Size:    2.99 MiB
- Total Installed Size:  22.51 MiB
- Net Upgrade Size:       0.36 MiB
- 
- :: Proceed with installation? [Y/n] 
- :: Retrieving packages...
-  sqlite-3.52.0-1-x86_64 downloading...
-  iana-etc-20260306-1-any downloading...
-  lmdb-0.9.35-1-x86_64 downloading...
-  zlib-1:1.3.2-3-x86_64 downloading...
-  pkgconf-2.5.1-1-x86_64 downloading...
-  libcap-ng-0.9.1-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading iana-etc...
- installing pkgconf...
- upgrading libcap-ng...
- upgrading lmdb...
- upgrading zlib...
- upgrading sqlite...
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...

<><> 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.1.2  (cached)
⬇ retrieved caqti-lwt.2.1.1  (cached)
⬇ retrieved conf-gmp.5  (cached)
⬇ retrieved conf-gmp-powm-sec.4  (cached)
⬇ retrieved cppo.1.8.0  (cached)
⬇ retrieved csexp.1.5.2  (cached)
∗ installed conf-pkg-config.4
∗ 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.21.1, dune-configurator.3.21.1, dune-private-libs.3.21.1, dune-site.3.21.1, dyn.3.21.1, fs-io.3.21.1, ordering.3.21.1, stdune.3.21.1, top-closure.3.21.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 lwt.6.1.1  (cached)
⬇ retrieved lwt-dllist.1.1.0  (cached)
⬇ retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (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 ptime.1.2.0  (cached)
⬇ retrieved stringext.1.6.0  (cached)
⬇ retrieved tls.2.0.3  (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 fmt.0.11.0
∗ installed mtime.2.1.0
∗ installed ptime.1.2.0
∗ installed dune.3.21.1
∗ installed asn1-combinators.0.3.2
∗ installed base64.3.5.2
∗ installed cppo.1.8.0
∗ installed csexp.1.5.2
∗ installed domain-name.0.5.0
∗ installed duration.0.2.1
∗ installed eqaf.0.10
∗ 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 pp.2.0.0
∗ installed stringext.1.6.0
∗ installed ocplib-endian.1.2
∗ installed ipaddr.5.6.2
∗ installed ordering.3.21.1
∗ installed digestif.1.3.0
∗ installed fs-io.3.21.1
∗ installed top-closure.3.21.1
∗ installed dune-configurator.3.21.1
∗ installed bigstringaf.0.10.0
∗ installed dyn.3.21.1
∗ installed mirage-crypto.2.0.3
∗ installed angstrom.0.16.1
∗ installed kdf.1.0.0
∗ installed lwt.6.1.1
∗ installed uri.4.4.0
∗ installed logs.0.10.0
∗ installed mirage-crypto-rng.2.0.3
∗ installed stdune.3.21.1
∗ installed mirage-crypto-pk.2.0.3
∗ installed dune-private-libs.3.21.1
∗ installed mirage-crypto-ec.2.0.3
∗ installed dune-site.3.21.1
∗ installed x509.1.0.6
∗ installed tls.2.0.3
∗ installed caqti.2.1.2
∗ installed caqti-lwt.2.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:05.21 ---> saved as "1d55e311dd6b5f329d6e86fd123621d193d41acee5239e914e79c31049a7bc1f"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caqti-lwt.2.1.1) || true"))
The following actions will be performed:
=== recompile 9 packages
  ↻ caqti                2.1.2          [uses logs]
  ↻ caqti-lwt            2.1.1 (pinned)
  ↻ fmt                  0.11.0         [uses cmdliner]
  ↻ logs                 0.10.0         [uses cmdliner]
  ↻ mirage-crypto-ec     2.0.3          [uses mirage-crypto-rng]
  ↻ mirage-crypto-pk     2.0.3          [uses mirage-crypto-rng]
  ↻ mirage-crypto-rng    2.0.3          [uses logs]
  ↻ tls                  2.0.3          [uses fmt]
  ↻ x509                 1.0.6          [uses fmt]
=== install 20 packages
  ∗ alcotest             1.9.1          [required by caqti-lwt]
  ∗ alcotest-lwt         1.9.1          [required by caqti-lwt]
  ∗ astring              0.8.5          [required by alcotest]
  ∗ caqti-driver-sqlite3 2.1.1          [required by caqti-lwt]
  ∗ cmdliner             2.1.0          [required by caqti-lwt]
  ∗ conf-sqlite3         1              [required by sqlite3]
  ∗ cstruct              6.2.0          [required by hex]
  ∗ dune-compiledb       0.6.0          [required by sqlite3]
  ∗ ezjsonm              1.3.0          [required by dune-compiledb]
  ∗ fpath                0.7.3          [required by dune-compiledb]
  ∗ hex                  1.5.0          [required by ezjsonm]
  ∗ jsonm                1.0.2          [required by ezjsonm]
  ∗ num                  1.6            [required by sexplib]
  ∗ parsexp              v0.16.0        [required by sexplib]
  ∗ re                   1.14.0         [required by alcotest]
  ∗ sexplib              v0.16.0        [required by dune-compiledb]
  ∗ sexplib0             v0.16.0        [required by dune-compiledb]
  ∗ sqlite3              5.4.0          [required by caqti-driver-sqlite3]
  ∗ stdlib-shims         0.3.0          [required by alcotest]
  ∗ uutf                 1.0.4          [required by alcotest]

<><> 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.2.1.2  (https://opam.ocaml.org/cache)
⬇ retrieved caqti-driver-sqlite3.2.1.1, caqti-lwt.2.1.1  (https://opam.ocaml.org/cache)
⬇ retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
∗ 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)
∗ installed astring.0.8.5
⬇ retrieved mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (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)
∗ installed fpath.0.7.3
⬇ retrieved sexplib.v0.16.0  (https://opam.ocaml.org/cache)
⬇ retrieved sexplib0.v0.16.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 tls.2.0.3  (https://opam.ocaml.org/cache)
∗ installed stdlib-shims.0.3.0
⬇ retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
∗ installed sexplib0.v0.16.0
⬇ retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
∗ installed re.1.14.0
∗ installed cmdliner.2.1.0
⊘ removed   caqti-lwt.2.1.1
⊘ removed   caqti.2.1.2
⊘ removed   tls.2.0.3
⊘ removed   x509.1.0.6
⊘ removed   mirage-crypto-ec.2.0.3
⊘ removed   mirage-crypto-pk.2.0.3
⊘ removed   mirage-crypto-rng.2.0.3
⊘ removed   logs.0.10.0
⊘ removed   fmt.0.11.0
∗ installed num.1.6
∗ installed parsexp.v0.16.0
∗ installed sexplib.v0.16.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 dune-compiledb.0.6.0
∗ installed alcotest-lwt.1.9.1
∗ installed mirage-crypto-rng.2.0.3
∗ installed mirage-crypto-pk.2.0.3
∗ installed sqlite3.5.4.0
∗ installed mirage-crypto-ec.2.0.3
∗ installed x509.1.0.6
∗ installed tls.2.0.3
∗ installed caqti.2.1.2
∗ installed caqti-driver-sqlite3.2.1.1
∗ installed caqti-lwt.2.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:05.42 ---> saved as "b8ea9e833e649f2aba511443d60d5eb816c00768533def786c9c733cc02390c3"

/home/opam: (run (shell  "opam reinstall --with-test --verbose caqti-lwt.2.1.1;\
                        \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 \"\\\"archlinux\\\"\"; 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.1.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== remove 3 packages
  ⊘ dune-compiledb       0.6.0              [conflicts with sexplib0]
  ⊘ parsexp              v0.16.0            [conflicts with sexplib0]
  ⊘ sexplib              v0.16.0            [conflicts with sexplib0]
=== downgrade 1 package
  ↘ sqlite3              5.4.0 to 5.3.1
=== recompile 3 packages
  ↻ caqti-driver-sqlite3 2.1.1              [uses sqlite3]
  ↻ caqti-lwt            2.1.1 (pinned)
  ↻ ezjsonm              1.3.0              [uses sexplib0]
=== upgrade 1 package
  ↗ sexplib0             v0.16.0 to v0.17.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/22: [caqti-driver-sqlite3.2.1.1: extract]
⬇ retrieved caqti-driver-sqlite3.2.1.1, caqti-lwt.2.1.1  (cached)
Processing  2/22: [ezjsonm.1.3.0: extract]
⬇ retrieved ezjsonm.1.3.0  (cached)
Processing  3/22: [sexplib0.v0.17.0: dl]
Processing  3/22: [sexplib0.v0.17.0: http]
[ERROR] Failed to get sources of sexplib0.v0.17.0: curl failed
Processing  4/22: [sqlite3.5.3.1: dl]
Processing  5/22: [sqlite3.5.3.1: dl]
Processing  5/22: [sqlite3.5.3.1: http]
[ERROR] Failed to get sources of sqlite3.5.3.1: curl failed

#=== ERROR while fetching sources for sqlite3.5.3.1 ===========================#
OpamSolution.Fetch_fail("https://github.com/mmottl/sqlite3-ocaml/releases/download/5.3.1/sqlite3-5.3.1.tbz (curl failed: \"/usr/sbin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-66e393/sqlite3-5.3.1.tbz.part -- https://github.com/mmottl/sqlite3-ocaml/releases/download/5.3.1/sqlite3-5.3.1.tbz\" exited with code 6)")

#=== ERROR while fetching sources for sexplib0.v0.17.0 ========================#
OpamSolution.Fetch_fail("https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz (curl failed: \"/usr/sbin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-90f861/v0.17.0.tar.gz.part -- https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz\" exited with code 6)")


<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions were aborted
│ ⊘ remove    dune-compiledb       0.6.0
│ ⊘ remove    parsexp              v0.16.0
│ ⊘ remove    sexplib              v0.16.0
│ ⊘ remove    sexplib0             v0.16.0
│ ⊘ remove    sqlite3              5.4.0
│ ↻ recompile caqti-driver-sqlite3 2.1.1
│ ↻ recompile caqti-lwt            2.1.1
│ ↻ recompile ezjsonm              1.3.0
└─ 
┌─ The following actions failed
│ ⬇ fetch sexplib0 v0.17.0
│ ⬇ fetch sqlite3  5.3.1
└─ 
╶─ No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose caqti-lwt.2.1.1' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose caqti-lwt.2.1.1;
        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 "\"archlinux\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'caqti-lwt.2.1.1' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 40
2026-03-10 10:06.24: Job failed: Failed: Build failed
2026-03-10 10:06.24: Log analysis:
2026-03-10 10:06.24: >>> 
[ERROR] Failed to get sources of sexplib0.v0.17.0: curl failed
 (score = 25)
2026-03-10 10:06.24: >>> 
[ERROR] Failed to get sources of sqlite3.5.3.1: curl failed
 (score = 25)
2026-03-10 10:06.24: Failed to get sources of sexplib0.v0.17.0: curl failed