Build:
  1. 0
2026-03-10 09:00.07: New job: test caqti-lwt.1.8.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on debian-13-ocaml-4.14/i386

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:debian-13-ocaml-4.14@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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.8.0 1.8.0
RUN opam reinstall caqti-lwt.1.8.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caqti-lwt.1.8.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.8.0) || true
RUN opam reinstall --with-test --verbose caqti-lwt.1.8.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caqti-lwt.1.8.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 09:00.07: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3-caqti-lwt.1.8.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 09:00.07: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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.8.0 1.8.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall caqti-lwt.1.8.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 \"\\\"debian-13\\\"\"; 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.8.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.8.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caqti-lwt.1.8.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 \"\\\"debian-13\\\"\"; 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.8.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 09:00.07: Waiting for resource in pool OCluster
2026-03-10 10:38.12: Waiting for worker…
2026-03-10 10:40.07: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  99% (18361/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
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 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:debian-13-ocaml-4.14@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3' locally
docker.io/ocaml/opam@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3: Pulling from ocaml/opam
cdaf5c618b8f: Already exists
37b25bd564f1: Already exists
b4419f8ddf31: Already exists
fcddae90f741: Already exists
7bdc78f9e5b7: Already exists
5691c8ad5025: Already exists
a00659447ced: Already exists
6da4c329d826: Already exists
7eb67c4488c7: Already exists
ecb12f6f1366: Already exists
0bb29fc35e8f: Already exists
38773acba29b: Already exists
4ecb7fe6e6cd: Already exists
a6ded0c5c651: Already exists
a618a67fa30c: Already exists
7cfbd53f9185: Already exists
2dd6d5e64b1f: Already exists
2dd6d5e64b1f: Already exists
66e4c8c5b80d: Already exists
93512fc5f7ca: Already exists
99a5c1cc5cf4: Already exists
e77a47d92406: Already exists
4f4fb700ef54: Already exists
1e645893c166: Already exists
4d79b77ccb64: Already exists
8f92218ad268: Already exists
d37cd7807d67: Already exists
eae9cdbb8e94: Already exists
00e84e4dddf6: Already exists
ec5e1e9d7a11: Already exists
5a366988733e: Already exists
5d3dff2b6c80: Already exists
2d08b04c2596: Already exists
fb41acb401da: Already exists
7af27a693e4f: Already exists
615b51657365: Already exists
ac9ea76617e5: Already exists
2f380e108faf: Already exists
abe564c0399a: Already exists
4958a3486050: Already exists
7937a8b7141c: Already exists
dd688a1942d3: Already exists
4bf64a7280b4: Already exists
19061a131e0c: Already exists
557682a965aa: Already exists
Digest: sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3
Status: Downloaded newer image for ocaml/opam@sha256:cf652bb394717cf643b0cce9cfd13ce5b10e8a396a6ce8833efcf96c0860e3c3
2026-03-10 10:40.08 ---> using "144829ac18adee3ed2c937d60c6837f2a7221b0e51b71a587628f9a8fb15158c" from cache

/: (shell /usr/bin/linux32 /bin/sh -c)

/: (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:40.08 ---> using "d4a6fe4e3c95beb974996e25382aa6b4b9a4a8ba0a22dab280c809ef599855e5" 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:40.08 ---> using "a939c9df83b791966240564f0a80b7db98bd054ca3806b59664300f0009a3ade" 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_32 os=linux os-distribution=debian os-version=13
# 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:40.08 ---> using "4d8f5a192d762ca8e4d1dcdd718cb081071b1d4fd17c091f4141464d3a7c99b1" 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:40.19 ---> saved as "ae2dd7505745915969bb782b36add0f4d39cf993c5a24c385cea9406610b7696"

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main i386 Packages [101 kB]
- Fetched 192 kB in 0s (1408 kB/s)
- Reading package lists...
- 
2026-03-10 10:41.10 ---> saved as "4e19c02b13e0920a9e55c6da739dfc206b0b956a4c637b00975315d1de35a658"

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

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall caqti-lwt.1.8.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 \"\\\"debian-13\\\"\"; 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.8.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.8.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.8.0          [required by caqti-lwt]
  - install caqti-lwt          1.8.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.8.0, caqti-lwt.1.8.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 csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-syntax-shims.1.0.0
-> installed stringext.1.6.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed lwt.6.1.1
-> installed uri.4.4.0
-> installed logs.0.10.0
-> installed caqti.1.8.0
-> installed caqti-lwt.1.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:42.09 ---> saved as "e775ae6b16771426090487b775dced93b41520f6549a0d7fd27137786d91967c"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caqti-lwt.1.8.0) || true"))
The following actions will be performed:
=== recompile 3 packages
  - recompile caqti                1.8.0          [uses logs]
  - recompile caqti-lwt            1.8.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.8.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:
    libsqlite3-dev pkg-config

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libsqlite3-dev" "pkg-config"
- Selecting previously unselected package libpkgconf3:i386.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20593 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_i386.deb ...
- Unpacking libpkgconf3:i386 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:i386.
- Preparing to unpack .../libsqlite3-dev_3.46.1-7_i386.deb ...
- Unpacking libsqlite3-dev:i386 (3.46.1-7) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_i386.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:i386.
- Preparing to unpack .../pkgconf_1.8.1-4_i386.deb ...
- Unpacking pkgconf:i386 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:i386.
- Preparing to unpack .../pkg-config_1.8.1-4_i386.deb ...
- Unpacking pkg-config:i386 (1.8.1-4) ...
- Setting up libpkgconf3:i386 (1.8.1-4) ...
- Setting up libsqlite3-dev:i386 (3.46.1-7) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:i386 (1.8.1-4) ...
- Setting up pkg-config:i386 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> 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.8.0, caqti-driver-sqlite3.1.8.0, caqti-lwt.1.8.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)
-> installed astring.0.8.5
-> 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)
-> 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 fpath.0.7.3
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> installed num.1.6
-> installed re.1.14.0
-> installed parsexp.v0.16.0
-> removed   caqti-lwt.1.8.0
-> removed   caqti.1.8.0
-> removed   logs.0.10.0
-> installed cmdliner.2.1.0
-> installed sexplib.v0.16.0
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed jsonm.1.0.2
-> installed ezjsonm.1.3.0
-> installed alcotest-lwt.1.9.1
-> installed caqti.1.8.0
-> installed caqti-dynload.1.3.0
-> installed dune-compiledb.0.6.0
-> installed sqlite3.5.4.0
-> installed caqti-driver-sqlite3.1.8.0
-> installed caqti-lwt.1.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:42.46 ---> saved as "2acc7a97d6debc55cf4d5c7d48a8e47d9926ee6a78b23f401098bab1d1836919"

/home/opam: (run (shell  "opam reinstall --with-test --verbose caqti-lwt.1.8.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 \"\\\"debian-13\\\"\"; 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.8.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.8.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.8.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.8.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:43:14-00:00 Arthur Dent
- 	BIKE-0004 2026-03-10T10:43:14-00:00 Marvin
- (cd _build/default/caqti-lwt/test && ./main.exe)
- Testing `caqti-lwt'.
- This run has ID `BLP174GD'.
- 
-   [OK]          pool-lwt          0   basic usage.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/caqti-lwt.1.8.0/_build/default/caqti-lwt/test/_build/_tests/caqti-lwt'.
- Test Successful in 1.166s. 1 test run.
- (cd _build/default/testsuite && ./main_lwt.exe)
- Testing `test_sql_lwt'.
- This run has ID `7LKH4U05'.
- 
-   [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.8.0/_build/default/testsuite/_build/_tests/test_sql_lwt'.
- Test Successful in 4.017s. 21 tests run.
-> compiled  caqti-lwt.1.8.0
-> removed   caqti-lwt.1.8.0
-> installed caqti-lwt.1.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:43.21 ---> saved as "ece57edc120effdd0cefbcfc1c4aaa9f15a1b63749dbcec728b313c1fb2cd92e"
Job succeeded
2026-03-10 10:43.39: Job succeeded