(not at the head of any monitored branch or PR)
2026-03-10 08:59.48: New job: test caqti-lwt.2.0.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on archlinux-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/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-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
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.0.1 2.0.1
RUN opam reinstall caqti-lwt.2.0.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.0.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.0.1) || true
RUN opam reinstall --with-test --verbose caqti-lwt.2.0.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.0.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.48: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151-caqti-lwt.2.0.1-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.48: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151)
 (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.0.1 2.0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall caqti-lwt.2.0.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.0.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.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose caqti-lwt.2.0.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.0.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.48: Waiting for resource in pool OCluster
2026-03-10 09:35.49: Waiting for worker…
2026-03-10 09:37.26: Got resource from pool OCluster
Building on doris.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-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151' locally
docker.io/ocaml/opam@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151: Pulling from ocaml/opam
30309458937a: Pulling fs layer
d6ec592b6ce7: Pulling fs layer
eb0cc4fae01f: Pulling fs layer
da907aea55a3: Pulling fs layer
41225181d62b: Pulling fs layer
99bbb95b040c: Pulling fs layer
ae03e2432f2e: Pulling fs layer
960a3688e50d: Pulling fs layer
12e572ae8d9e: Pulling fs layer
5d9b53919351: Pulling fs layer
613718b9dc5c: Pulling fs layer
41225181d62b: Waiting
20c50d6517d7: Pulling fs layer
ae03e2432f2e: Waiting
da907aea55a3: Waiting
99bbb95b040c: Waiting
318e41a81dac: Pulling fs layer
c8d0fbcceca0: Pulling fs layer
960a3688e50d: Waiting
5d9b53919351: Waiting
f18608e88c8a: Pulling fs layer
12e572ae8d9e: Waiting
4f4fb700ef54: Pulling fs layer
613718b9dc5c: Waiting
53a25100385e: Pulling fs layer
cf8654ebee96: Pulling fs layer
c8d0fbcceca0: Waiting
20c50d6517d7: Waiting
318e41a81dac: Waiting
57cdf8563f57: Pulling fs layer
f18608e88c8a: Waiting
ce24bbfe16f6: Pulling fs layer
cf8654ebee96: Waiting
5c9351c3921c: Pulling fs layer
4d8c9f844539: Pulling fs layer
ce24bbfe16f6: Waiting
765a1d524e16: Pulling fs layer
5c9351c3921c: Waiting
4d8c9f844539: Waiting
e9b60c2e279a: Pulling fs layer
35a412369c63: Pulling fs layer
26b4e7a0d54a: Pulling fs layer
e9b60c2e279a: Waiting
13545a674236: Pulling fs layer
4f4fb700ef54: Waiting
93a04f32ed48: Pulling fs layer
13545a674236: Waiting
59e69b721f9d: Pulling fs layer
93a04f32ed48: Waiting
563d03393b08: Pulling fs layer
53a25100385e: Waiting
57cdf8563f57: Waiting
22f1353d2736: Pulling fs layer
59e69b721f9d: Waiting
bb9e869c408b: Pulling fs layer
563d03393b08: Waiting
edabeb8a4c11: Pulling fs layer
765a1d524e16: Waiting
7efbe0d19f89: Pulling fs layer
bb9e869c408b: Waiting
edabeb8a4c11: Waiting
26b4e7a0d54a: Waiting
da342da15a63: Pulling fs layer
f71f539d293c: Pulling fs layer
7efbe0d19f89: Waiting
da342da15a63: Waiting
8d0e94db40bb: Pulling fs layer
35a412369c63: Waiting
f71f539d293c: Waiting
a5e5b4f4a251: Pulling fs layer
9852f471784f: Pulling fs layer
8d0e94db40bb: Waiting
9852f471784f: Waiting
a5e5b4f4a251: Waiting
d6ec592b6ce7: Verifying Checksum
d6ec592b6ce7: Download complete
da907aea55a3: Verifying Checksum
da907aea55a3: Download complete
41225181d62b: Verifying Checksum
41225181d62b: Download complete
99bbb95b040c: Verifying Checksum
99bbb95b040c: Download complete
ae03e2432f2e: Verifying Checksum
ae03e2432f2e: Download complete
960a3688e50d: Verifying Checksum
960a3688e50d: Download complete
12e572ae8d9e: Verifying Checksum
12e572ae8d9e: Download complete
30309458937a: Verifying Checksum
30309458937a: Download complete
5d9b53919351: Verifying Checksum
5d9b53919351: Download complete
613718b9dc5c: Verifying Checksum
613718b9dc5c: Download complete
20c50d6517d7: Verifying Checksum
20c50d6517d7: Download complete
318e41a81dac: Download complete
eb0cc4fae01f: Verifying Checksum
eb0cc4fae01f: Download complete
c8d0fbcceca0: Download complete
f18608e88c8a: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
53a25100385e: Verifying Checksum
53a25100385e: Download complete
cf8654ebee96: Download complete
57cdf8563f57: Download complete
ce24bbfe16f6: Download complete
5c9351c3921c: Download complete
4d8c9f844539: Download complete
765a1d524e16: Verifying Checksum
765a1d524e16: Download complete
e9b60c2e279a: Verifying Checksum
e9b60c2e279a: Download complete
35a412369c63: Verifying Checksum
35a412369c63: Download complete
26b4e7a0d54a: Verifying Checksum
26b4e7a0d54a: Download complete
13545a674236: Verifying Checksum
13545a674236: Download complete
93a04f32ed48: Verifying Checksum
93a04f32ed48: Download complete
563d03393b08: Download complete
bb9e869c408b: Download complete
edabeb8a4c11: Download complete
7efbe0d19f89: Verifying Checksum
7efbe0d19f89: Download complete
da342da15a63: Verifying Checksum
da342da15a63: Download complete
59e69b721f9d: Verifying Checksum
59e69b721f9d: Download complete
8d0e94db40bb: Download complete
a5e5b4f4a251: Download complete
9852f471784f: Verifying Checksum
9852f471784f: Download complete
f71f539d293c: Verifying Checksum
f71f539d293c: Download complete
30309458937a: Pull complete
d6ec592b6ce7: Pull complete
22f1353d2736: Verifying Checksum
22f1353d2736: Download complete
eb0cc4fae01f: Pull complete
da907aea55a3: Pull complete
41225181d62b: Pull complete
99bbb95b040c: Pull complete
ae03e2432f2e: Pull complete
960a3688e50d: Pull complete
12e572ae8d9e: Pull complete
5d9b53919351: Pull complete
613718b9dc5c: Pull complete
20c50d6517d7: Pull complete
318e41a81dac: Pull complete
c8d0fbcceca0: Pull complete
f18608e88c8a: Pull complete
4f4fb700ef54: Pull complete
53a25100385e: Pull complete
cf8654ebee96: Pull complete
57cdf8563f57: Pull complete
ce24bbfe16f6: Pull complete
5c9351c3921c: Pull complete
4d8c9f844539: Pull complete
765a1d524e16: Pull complete
e9b60c2e279a: Pull complete
35a412369c63: Pull complete
26b4e7a0d54a: Pull complete
13545a674236: Pull complete
93a04f32ed48: Pull complete
59e69b721f9d: Pull complete
563d03393b08: Pull complete
22f1353d2736: Pull complete
bb9e869c408b: Pull complete
edabeb8a4c11: Pull complete
7efbe0d19f89: Pull complete
da342da15a63: Pull complete
f71f539d293c: Pull complete
8d0e94db40bb: Pull complete
a5e5b4f4a251: Pull complete
9852f471784f: Pull complete
Digest: sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
Status: Downloaded newer image for ocaml/opam@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
2026-03-10 09:40.40 ---> saved as "983fb8fa27cec9a4a5d43f665c1205c6ea6e68ba17ec6c9143d76637febb22cc"

/: (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 09:40.40 ---> saved as "25752ddc5975f6e8996b264e3a3ca1fa7f145be5805ebd9514e16cb6aedde127"

/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 09:41.02 ---> saved as "d478ddf269bcf3535bded5e1daaace87d3f4b9d7de5f55a5b08e209b0fdca5d6"

/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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-10 09:41.03 ---> saved as "80b77dd44a92f7fb0130b934f34e0452f08989f0d0aa28c9d38f7ed342b7e091"

/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 09:41.30 ---> saved as "1a9b8ae6fcd1519c9165b7da2355952b637f11a47032131c1c34a8be2f2d6ad5"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 09:41.44 ---> saved as "2be1f8f87db7b246be857d0efd4cdf725952fed44628a8f4d946732e016e338c"

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

/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 09:42.03 ---> saved as "909495eb087a7e177b4d342f3782f83be007daba38344791bdc2235912ed76dc"

/home/opam: (run (shell "opam pin add -k version -yn caqti-lwt.2.0.1 2.0.1"))
caqti-lwt is now pinned to version 2.0.1
2026-03-10 09:42.04 ---> saved as "6eb17805f8e03955121ba5ee3378c52fe72c0e5321c25b9919719a7411bfca6f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall caqti-lwt.2.0.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.0.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.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 24 packages
  ∗ angstrom           0.16.1         [required by caqti]
  ∗ base-bytes         base           [required by ocplib-endian]
  ∗ bigstringaf        0.10.0         [required by caqti]
  ∗ caqti              2.0.1          [required by caqti-lwt]
  ∗ caqti-lwt          2.0.1 (pinned)
  ∗ cppo               1.8.0          [required by lwt]
  ∗ csexp              1.5.2          [required by dune-configurator]
  ∗ domain-name        0.5.0          [required by caqti]
  ∗ dune               3.21.1         [required by caqti-lwt]
  ∗ dune-configurator  3.21.1         [required by bigstringaf, lwt]
  ∗ ipaddr             5.6.2          [required by caqti]
  ∗ 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]
  ∗ 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]
  ∗ ptime              1.2.0          [required by caqti]
  ∗ stringext          1.6.0          [required by uri]
  ∗ topkg              1.1.1          [required by mtime, logs, ptime]
  ∗ uri                4.4.0          [required by caqti]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved angstrom.0.16.1  (cached)
⬇ retrieved bigstringaf.0.10.0  (cached)
⬇ retrieved caqti.2.0.1, caqti-lwt.2.0.1  (cached)
⬇ retrieved cppo.1.8.0  (cached)
⬇ retrieved csexp.1.5.2  (cached)
⬇ retrieved domain-name.0.5.0  (cached)
⬇ retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
⬇ retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
⬇ retrieved logs.0.10.0  (cached)
⬇ retrieved lwt.6.1.1  (cached)
⬇ retrieved lwt-dllist.1.1.0  (cached)
⬇ retrieved mtime.2.1.0  (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0  (cached)
⬇ retrieved ocamlbuild.0.16.1  (cached)
⬇ retrieved ocamlfind.1.9.8  (cached)
⬇ retrieved ocplib-endian.1.2  (cached)
⬇ retrieved 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 mtime.2.1.0
∗ installed ptime.1.2.0
∗ installed dune.3.21.1
∗ installed lwt-dllist.1.1.0
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed domain-name.0.5.0
∗ installed macaddr.5.6.2
∗ installed ocaml-syntax-shims.1.0.0
∗ installed stringext.1.6.0
∗ installed ocplib-endian.1.2
∗ installed ipaddr.5.6.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.2.0.1
∗ installed caqti-lwt.2.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:42.45 ---> saved as "7eda62e9ab2d558a9db9d2773f4ceedea82941fc8d69412860d07bd973dccc2d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caqti-lwt.2.0.1) || true"))
The following actions will be performed:
=== recompile 3 packages
  ↻ caqti                2.0.1          [uses logs]
  ↻ caqti-lwt            2.0.1 (pinned)
  ↻ logs                 0.10.0         [uses cmdliner]
=== install 23 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.0.1          [required by caqti-lwt]
  ∗ caqti-dynload        2.0.1          [required by caqti-lwt]
  ∗ cmdliner             2.1.0          [required by caqti-lwt]
  ∗ conf-pkg-config      4              [required by conf-sqlite3]
  ∗ 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]
  ∗ fmt                  0.11.0         [required by alcotest, alcotest-lwt]
  ∗ 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.17.0        [required by sexplib]
  ∗ re                   1.14.0         [required by alcotest]
  ∗ sexplib              v0.17.0        [required by dune-compiledb]
  ∗ sexplib0             v0.17.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]

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 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.0.1, caqti-driver-sqlite3.2.0.1, caqti-dynload.2.0.1, caqti-lwt.2.0.1  (https://opam.ocaml.org/cache)
⬇ retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
∗ installed conf-pkg-config.4
⬇ retrieved cstruct.6.2.0  (https://opam.ocaml.org/cache)
∗ installed conf-sqlite3.1
⬇ 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)
∗ installed astring.0.8.5
⬇ retrieved parsexp.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved re.1.14.0  (https://opam.ocaml.org/cache)
⬇ retrieved sexplib.v0.17.0  (https://opam.ocaml.org/cache)
⬇ retrieved sexplib0.v0.17.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)
∗ installed stdlib-shims.0.3.0
∗ installed fpath.0.7.3
∗ installed sexplib0.v0.17.0
∗ installed re.1.14.0
∗ installed num.1.6
⊘ removed   caqti-lwt.2.0.1
⊘ removed   caqti.2.0.1
⊘ removed   logs.0.10.0
∗ installed cmdliner.2.1.0
∗ installed parsexp.v0.17.0
∗ installed sexplib.v0.17.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 caqti.2.0.1
∗ installed caqti-dynload.2.0.1
∗ installed sqlite3.5.4.0
∗ installed caqti-driver-sqlite3.2.0.1
∗ installed caqti-lwt.2.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:43.07 ---> saved as "6115aa9eb934efe984c067379c03e6b74dfaa278c511ce5c26677493d600c92b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose caqti-lwt.2.0.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.0.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:
=== recompile 1 package
  ↻ caqti-lwt 2.0.1 (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" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-lwt.2.0.1)
Processing  2/4: [caqti-lwt: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-lwt" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-lwt.2.0.1)
- (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-10T09:43:11-00:00 Arthur Dent
- 	BIKE-0004 2026-03-10T09:43:11-00:00 Marvin
- (cd _build/default/caqti-lwt/test-unix && ./main.exe)
- Testing `caqti-lwt'.
- This run has ID `2TS64HUJ'.
- 
-   [OK]          pool-lwt          0   basic usage.
-   [OK]          pool-lwt          1   timed cleanup.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/caqti-lwt.2.0.1/_build/default/caqti-lwt/test-unix/_build/_tests/caqti-lwt'.
- Test Successful in 0.475s. 2 tests run.
- (cd _build/default/testsuite && ./main_lwt_unix.exe)
- Testing `test_sql_lwt_unix'.
- This run has ID `RR57O8F3'.
- 
-   [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/5.4/.opam-switch/build/caqti-lwt.2.0.1/_build/default/testsuite/_build/_tests/test_sql_lwt_unix'.
- Test Successful in 2.875s. 21 tests run.
λ compiled  caqti-lwt.2.0.1
⊘ removed   caqti-lwt.2.0.1
∗ installed caqti-lwt.2.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:43.14 ---> saved as "b556ca22e335798ab2ab1a640998fb7ad40a43260dafdf955dd66bad22650ebd"
Job succeeded
2026-03-10 09:43.22: Job succeeded