(for PR #29937)
2026-05-24 22:43.54: New job: test caqti-eio.2.3.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29937/head (699c568442d9080169b06a0acf74464211d7c52c)
on ubuntu-24.04-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/29937/head" && git reset --hard 699c5684
git fetch origin master
git merge --no-edit 856df280428c158a5bb0b3afce1bec956b10ae6f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3
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-eio.2.3.1 2.3.1
RUN opam reinstall caqti-eio.2.3.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'caqti-eio.2.3.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-eio.2.3.1) || true
RUN opam reinstall --with-test --verbose caqti-eio.2.3.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'caqti-eio.2.3.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-05-24 22:43.54: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3-caqti-eio.2.3.1-699c568442d9080169b06a0acf74464211d7c52c"
2026-05-24 22:43.54: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3)
(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-eio.2.3.1 2.3.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caqti-eio.2.3.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 \"\\\"ubuntu-24.04\\\"\"; 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-eio.2.3.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-eio.2.3.1) || true"))
(run (shell "opam reinstall --with-test --verbose caqti-eio.2.3.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 \"\\\"ubuntu-24.04\\\"\"; 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-eio.2.3.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-05-24 22:43.54: Waiting for resource in pool OCluster
2026-05-24 22:44.05: Waiting for worker…
2026-05-24 22:46.53: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 73% (13296/17975)
Updating files: 74% (13302/17975)
Updating files: 75% (13482/17975)
Updating files: 76% (13661/17975)
Updating files: 77% (13841/17975)
Updating files: 78% (14021/17975)
Updating files: 79% (14201/17975)
Updating files: 80% (14380/17975)
Updating files: 81% (14560/17975)
Updating files: 82% (14740/17975)
Updating files: 83% (14920/17975)
Updating files: 84% (15099/17975)
Updating files: 85% (15279/17975)
Updating files: 86% (15459/17975)
Updating files: 87% (15639/17975)
Updating files: 88% (15818/17975)
Updating files: 89% (15998/17975)
Updating files: 90% (16178/17975)
Updating files: 91% (16358/17975)
Updating files: 92% (16537/17975)
Updating files: 93% (16717/17975)
Updating files: 94% (16897/17975)
Updating files: 95% (17077/17975)
Updating files: 96% (17256/17975)
Updating files: 97% (17436/17975)
Updating files: 98% (17616/17975)
Updating files: 99% (17796/17975)
Updating files: 100% (17975/17975)
Updating files: 100% (17975/17975), done.
HEAD is now at 856df28042 Merge pull request #29946 from hannesm/release-mirage-net-solo5-v0.8.1
Merge made by the 'ort' strategy.
packages/caqti-async/caqti-async.2.3.1/opam | 41 +++++++++++++
.../caqti-driver-mariadb.2.3.1/opam | 34 +++++++++++
.../caqti-driver-pgx/caqti-driver-pgx.2.3.1/opam | 33 +++++++++++
.../caqti-driver-postgresql.2.3.1/opam | 38 ++++++++++++
.../caqti-driver-sqlite3.2.3.1/opam | 33 +++++++++++
packages/caqti-dynload/caqti-dynload.2.3.1/opam | 41 +++++++++++++
packages/caqti-eio/caqti-eio.2.3.1/opam | 37 ++++++++++++
packages/caqti-lwt/caqti-lwt.2.3.1/opam | 39 ++++++++++++
packages/caqti-mirage/caqti-mirage.2.3.1/opam | 43 ++++++++++++++
.../caqti-tls-async/caqti-tls-async.2.3.1/opam | 36 +++++++++++
packages/caqti-tls-eio/caqti-tls-eio.2.3.1/opam | 34 +++++++++++
packages/caqti-tls-lwt/caqti-tls-lwt.2.3.1/opam | 35 +++++++++++
packages/caqti-tls-miou/caqti-tls-miou.2.3.1/opam | 34 +++++++++++
packages/caqti-tls/caqti-tls.2.3.1/opam | 40 +++++++++++++
.../caqti-type-calendar.2.3.1/opam | 31 ++++++++++
packages/caqti/caqti.2.3.1/opam | 69 ++++++++++++++++++++++
16 files changed, 618 insertions(+)
create mode 100644 packages/caqti-async/caqti-async.2.3.1/opam
create mode 100644 packages/caqti-driver-mariadb/caqti-driver-mariadb.2.3.1/opam
create mode 100644 packages/caqti-driver-pgx/caqti-driver-pgx.2.3.1/opam
create mode 100644 packages/caqti-driver-postgresql/caqti-driver-postgresql.2.3.1/opam
create mode 100644 packages/caqti-driver-sqlite3/caqti-driver-sqlite3.2.3.1/opam
create mode 100644 packages/caqti-dynload/caqti-dynload.2.3.1/opam
create mode 100644 packages/caqti-eio/caqti-eio.2.3.1/opam
create mode 100644 packages/caqti-lwt/caqti-lwt.2.3.1/opam
create mode 100644 packages/caqti-mirage/caqti-mirage.2.3.1/opam
create mode 100644 packages/caqti-tls-async/caqti-tls-async.2.3.1/opam
create mode 100644 packages/caqti-tls-eio/caqti-tls-eio.2.3.1/opam
create mode 100644 packages/caqti-tls-lwt/caqti-tls-lwt.2.3.1/opam
create mode 100644 packages/caqti-tls-miou/caqti-tls-miou.2.3.1/opam
create mode 100644 packages/caqti-tls/caqti-tls.2.3.1/opam
create mode 100644 packages/caqti-type-calendar/caqti-type-calendar.2.3.1/opam
create mode 100644 packages/caqti/caqti.2.3.1/opam
(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3' locally
docker.io/ocaml/opam@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3: Pulling from ocaml/opam
b40150c1c271: Pulling fs layer
5635dddaaf61: Pulling fs layer
0a6d5f853ae3: Pulling fs layer
b40150c1c271: Waiting
799f202be4df: Pulling fs layer
b903f564077a: Pulling fs layer
5635dddaaf61: Waiting
6c1d10b3d08f: Pulling fs layer
8fd224b6ae45: Pulling fs layer
0a6d5f853ae3: Waiting
5e37c7ad2993: Pulling fs layer
799f202be4df: Waiting
b903f564077a: Waiting
6c1d10b3d08f: Waiting
32255c35d5b3: Pulling fs layer
8fd224b6ae45: Waiting
c3cffeaeb4b8: Pulling fs layer
5e37c7ad2993: Waiting
a9de87727b20: Pulling fs layer
cd92154d260a: Pulling fs layer
c3cffeaeb4b8: Waiting
32255c35d5b3: Waiting
5534cf6e4151: Pulling fs layer
92d42dfe1d12: Pulling fs layer
4974f6184649: Pulling fs layer
5534cf6e4151: Waiting
ddbbf37b07ba: Pulling fs layer
4974f6184649: Waiting
a9de87727b20: Waiting
92d42dfe1d12: Waiting
6c31853c12bf: Pulling fs layer
ed68394a86c7: Pulling fs layer
3cc6b078d5fc: Pulling fs layer
257a2bdf9f61: Pulling fs layer
ed68394a86c7: Waiting
4f4fb700ef54: Pulling fs layer
61b8d2ddf2f3: Pulling fs layer
dbb18f475127: Pulling fs layer
802447bfad8e: Pulling fs layer
ddbbf37b07ba: Waiting
257a2bdf9f61: Waiting
e86ad76f9c74: Pulling fs layer
dbb18f475127: Waiting
4f4fb700ef54: Waiting
9e967f128a0d: Pulling fs layer
802447bfad8e: Waiting
e86ad76f9c74: Waiting
5d5cafdc9e88: Pulling fs layer
9e967f128a0d: Waiting
c81e5f5c4bfc: Pulling fs layer
61b8d2ddf2f3: Waiting
5d5cafdc9e88: Waiting
0a0005210533: Pulling fs layer
cd92154d260a: Waiting
8549d7b2ccb2: Pulling fs layer
57ea4f2cdcb7: Pulling fs layer
eea0ea6a7403: Pulling fs layer
3cc6b078d5fc: Waiting
8549d7b2ccb2: Waiting
3d2e57752a6c: Pulling fs layer
128f8b8d9b04: Pulling fs layer
0a0005210533: Waiting
eea0ea6a7403: Waiting
a594488fbf65: Pulling fs layer
fbe102fc5248: Pulling fs layer
3d2e57752a6c: Waiting
128f8b8d9b04: Waiting
a594488fbf65: Waiting
4d204629c375: Pulling fs layer
fbe102fc5248: Waiting
57ea4f2cdcb7: Waiting
6c31853c12bf: Waiting
504e6256aaf7: Pulling fs layer
e553f7e7d2a2: Pulling fs layer
4d204629c375: Waiting
cea2efc9b4f4: Pulling fs layer
1cf176ec0ca1: Pulling fs layer
e553f7e7d2a2: Waiting
42d435880d33: Pulling fs layer
1cf176ec0ca1: Waiting
2bd2b7deb664: Pulling fs layer
504e6256aaf7: Waiting
cea2efc9b4f4: Waiting
b63ece2686d2: Pulling fs layer
11efbb46aef7: Pulling fs layer
42d435880d33: Waiting
2bd2b7deb664: Waiting
11efbb46aef7: Waiting
b63ece2686d2: Waiting
5635dddaaf61: Download complete
0a6d5f853ae3: Verifying Checksum
0a6d5f853ae3: Download complete
b40150c1c271: Verifying Checksum
b40150c1c271: Download complete
b40150c1c271: Pull complete
5635dddaaf61: Pull complete
0a6d5f853ae3: Pull complete
b903f564077a: Download complete
6c1d10b3d08f: Verifying Checksum
6c1d10b3d08f: Download complete
8fd224b6ae45: Verifying Checksum
8fd224b6ae45: Download complete
799f202be4df: Verifying Checksum
799f202be4df: Download complete
5e37c7ad2993: Verifying Checksum
5e37c7ad2993: Download complete
799f202be4df: Pull complete
b903f564077a: Pull complete
32255c35d5b3: Verifying Checksum
32255c35d5b3: Download complete
c3cffeaeb4b8: Verifying Checksum
c3cffeaeb4b8: Download complete
6c1d10b3d08f: Pull complete
8fd224b6ae45: Pull complete
5e37c7ad2993: Pull complete
32255c35d5b3: Pull complete
c3cffeaeb4b8: Pull complete
cd92154d260a: Verifying Checksum
cd92154d260a: Download complete
a9de87727b20: Verifying Checksum
a9de87727b20: Download complete
a9de87727b20: Pull complete
cd92154d260a: Pull complete
5534cf6e4151: Download complete
5534cf6e4151: Pull complete
92d42dfe1d12: Download complete
92d42dfe1d12: Pull complete
4974f6184649: Download complete
4974f6184649: Pull complete
ddbbf37b07ba: Verifying Checksum
ddbbf37b07ba: Download complete
ddbbf37b07ba: Pull complete
ed68394a86c7: Download complete
6c31853c12bf: Verifying Checksum
6c31853c12bf: Download complete
6c31853c12bf: Pull complete
ed68394a86c7: Pull complete
3cc6b078d5fc: Verifying Checksum
3cc6b078d5fc: Download complete
3cc6b078d5fc: Pull complete
257a2bdf9f61: Verifying Checksum
257a2bdf9f61: Download complete
257a2bdf9f61: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
4f4fb700ef54: Pull complete
dbb18f475127: Verifying Checksum
dbb18f475127: Download complete
61b8d2ddf2f3: Verifying Checksum
61b8d2ddf2f3: Download complete
61b8d2ddf2f3: Pull complete
dbb18f475127: Pull complete
e86ad76f9c74: Verifying Checksum
e86ad76f9c74: Download complete
9e967f128a0d: Download complete
802447bfad8e: Verifying Checksum
802447bfad8e: Download complete
802447bfad8e: Pull complete
e86ad76f9c74: Pull complete
9e967f128a0d: Pull complete
5d5cafdc9e88: Verifying Checksum
5d5cafdc9e88: Download complete
5d5cafdc9e88: Pull complete
c81e5f5c4bfc: Verifying Checksum
c81e5f5c4bfc: Download complete
c81e5f5c4bfc: Pull complete
8549d7b2ccb2: Download complete
0a0005210533: Verifying Checksum
0a0005210533: Download complete
0a0005210533: Pull complete
8549d7b2ccb2: Pull complete
57ea4f2cdcb7: Verifying Checksum
57ea4f2cdcb7: Download complete
57ea4f2cdcb7: Pull complete
eea0ea6a7403: Verifying Checksum
eea0ea6a7403: Download complete
eea0ea6a7403: Pull complete
3d2e57752a6c: Verifying Checksum
3d2e57752a6c: Download complete
3d2e57752a6c: Pull complete
a594488fbf65: Download complete
128f8b8d9b04: Download complete
4d204629c375: Download complete
504e6256aaf7: Download complete
e553f7e7d2a2: Verifying Checksum
e553f7e7d2a2: Download complete
cea2efc9b4f4: Verifying Checksum
cea2efc9b4f4: Download complete
1cf176ec0ca1: Verifying Checksum
1cf176ec0ca1: Download complete
128f8b8d9b04: Pull complete
a594488fbf65: Pull complete
42d435880d33: Verifying Checksum
42d435880d33: Download complete
2bd2b7deb664: Verifying Checksum
2bd2b7deb664: Download complete
b63ece2686d2: Verifying Checksum
b63ece2686d2: Download complete
11efbb46aef7: Verifying Checksum
11efbb46aef7: Download complete
fbe102fc5248: Download complete
fbe102fc5248: Pull complete
4d204629c375: Pull complete
504e6256aaf7: Pull complete
e553f7e7d2a2: Pull complete
cea2efc9b4f4: Pull complete
1cf176ec0ca1: Pull complete
42d435880d33: Pull complete
2bd2b7deb664: Pull complete
b63ece2686d2: Pull complete
11efbb46aef7: Pull complete
Digest: sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3
Status: Downloaded newer image for ocaml/opam@sha256:aabe37e5b657436d0ceaa21e99cd169f9c62e2f97672d5df29adb9785768f9b3
2026-05-24 22:51.35 ---> using "09f7a341034f2591024efaf9dd77d7de263102b0a73433761a5c6fa3e65c805a" 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-05-24 22:51.35 ---> using "7525da887ce58c0732ee8edb92339fbfe81e6af36164d271664af51313bf4c4d" 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.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-24 22:51.35 ---> using "f8803a11d187995016c9a877d7bb7f2bd06661d108f18c980b71dabcdcb7c455" 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.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-05-24 22:51.35 ---> using "9ea98c898d80dc8f6cfdc4433260d1ec3e59c067c1b4fcacc5d3f9b7bd626d6f" 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-05-24 22:51.35 ---> using "434a27f68e372749b5a7287461146a21b7d5d4f38e1ce0a9a3d847a7849e3645" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-24 22:51.41 ---> saved as "e2141c3b833bed4f6b855837b2fd160d06b964bff17e1b24170721d9ff10fff1"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-24 22:51.54 ---> saved as "6390c4c72be29314d3a81b893f7f730c51c2eb994cf4dbf3af3e39d263a57adc"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu noble InRelease
- Get:2 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Get:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
- Get:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
- Get:5 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [2457 kB]
- Get:6 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1505 kB]
- Get:7 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2148 kB]
- Get:8 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [3920 kB]
- Get:9 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [2074 kB]
- Get:10 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [54.6 kB]
- Get:11 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [35.9 kB]
- Get:12 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [3671 kB]
- Get:13 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [48.4 kB]
- Fetched 16.3 MB in 1s (11.3 MB/s)
- Reading package lists...
-
2026-05-24 22:51.59 ---> saved as "addd24bed67a83a2799e88aedaafb43d0ffcf1857dfaf678f7c31e1f9cc204e6"
/home/opam: (run (shell "opam pin add -k version -yn caqti-eio.2.3.1 2.3.1"))
caqti-eio is now pinned to version 2.3.1
2026-05-24 22:52.01 ---> saved as "73a4416fd8c50badcfe54872529271d6455b1d37ce618edef193242627313218"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caqti-eio.2.3.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 \"\\\"ubuntu-24.04\\\"\"; 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-eio.2.3.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-eio.2.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 55 packages
- install angstrom 0.16.1 [required by caqti]
- install asn1-combinators 0.3.2 [required by x509]
- install base64 3.5.2 [required by x509]
- install bigstringaf 0.10.0 [required by caqti, eio]
- install caqti 2.3.1 [required by caqti-eio]
- install caqti-eio 2.3.1 (pinned)
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by zarith]
- install csexp 1.5.2 [required by dune-private-libs]
- install cstruct 6.2.0 [required by eio]
- install digestif 1.3.0 [required by mirage-crypto-ec, kdf, mirage-crypto-pk]
- install domain-local-await 1.0.1 [required by eio]
- install domain-name 0.5.0 [required by caqti]
- install dune 3.23.1 [required by caqti-eio]
- install dune-configurator 3.23.1 [required by bigstringaf, mirage-crypto-ec]
- install dune-private-libs 3.23.1 [required by dune-site]
- install dune-site 3.23.1 [required by caqti]
- install duration 0.3.1 [required by mirage-crypto-rng]
- install dyn 3.23.1 [required by dune-private-libs]
- install eio 1.3 [required by caqti-eio]
- install eqaf 0.10 [required by mirage-crypto-ec, mirage-crypto-pk]
- install fmt 0.11.0 [required by eio]
- install fs-io 3.23.1 [required by stdune]
- install gmap 0.3.0 [required by x509]
- install hmap 0.8.1 [required by eio]
- install ipaddr 5.6.2 [required by caqti]
- install kdf 1.0.0 [required by x509]
- install logs 0.10.0 [required by caqti-eio]
- install lru 0.3.1 [required by caqti]
- install lwt-dllist 1.1.0 [required by caqti, eio]
- install macaddr 5.6.2 [required by ipaddr]
- install mirage-crypto 2.1.0 [required by x509]
- install mirage-crypto-ec 2.1.0 [required by x509]
- install mirage-crypto-pk 2.1.0 [required by x509]
- install mirage-crypto-rng 2.1.0 [required by x509]
- install mtime 2.1.0 [required by caqti, eio]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by ptime, logs, mtime, hmap]
- install ocamlfind 1.9.8 [required by ptime, logs, mtime, hmap]
- install ohex 0.2.0 [required by x509]
- install optint 0.3.0 [required by eio]
- install ordering 3.23.1 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install psq 0.2.1 [required by eio]
- install ptime 1.2.0 [required by caqti]
- install seq base [required by psq]
- install stdune 3.23.1 [required by dune-private-libs]
- install stringext 1.6.0 [required by uri]
- install thread-table 1.0.0 [required by domain-local-await]
- install top-closure 3.23.1 [required by stdune]
- install topkg 1.1.1 [required by ptime, logs, mtime, hmap]
- install uri 4.4.0 [required by caqti]
- install x509 1.0.6 [required by caqti]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
libgmp-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" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (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 ... 16365 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-2build1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-2build1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-2build1) ...
- Setting up libpkgconf3:amd64 (1.8.1-2build1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up pkgconf:amd64 (1.8.1-2build1) ...
- Setting up pkg-config:amd64 (1.8.1-2build1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.7) ...
<><> 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.3.1, caqti-eio.2.3.1 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.23.1, dune-configurator.3.23.1, dune-private-libs.3.23.1, dune-site.3.23.1, dyn.3.23.1, fs-io.3.23.1, ordering.3.23.1, stdune.3.23.1, top-closure.3.23.1 (cached)
-> retrieved duration.0.3.1 (cached)
-> retrieved eio.1.3 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lru.0.3.1 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved stringext.1.6.0 (cached)
-> retrieved thread-table.1.0.0 (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 ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed logs.0.10.0
-> installed dune.3.23.1
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed duration.0.3.1
-> installed eqaf.0.10
-> installed fs-io.3.23.1
-> installed gmap.0.3.0
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed optint.0.3.0
-> installed ordering.3.23.1
-> installed pp.2.0.0
-> installed psq.0.2.1
-> installed stringext.1.6.0
-> installed thread-table.1.0.0
-> installed top-closure.3.23.1
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed dune-configurator.3.23.1
-> installed lru.0.3.1
-> installed domain-local-await.1.0.1
-> installed dyn.3.23.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.1.0
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.2.1.0
-> installed eio.1.3
-> installed mirage-crypto-pk.2.1.0
-> installed uri.4.4.0
-> installed stdune.3.23.1
-> installed dune-private-libs.3.23.1
-> installed mirage-crypto-ec.2.1.0
-> installed dune-site.3.23.1
-> installed x509.1.0.6
-> installed caqti.2.3.1
-> installed caqti-eio.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 22:53.20 ---> saved as "0fbd66f98e31aff088dc4d88919831b6a39641389810e1f7f040fb58dd66863e"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test caqti-eio.2.3.1) || true"))
The following actions will be performed:
=== recompile 10 packages
- recompile caqti 2.3.1 [uses logs]
- recompile caqti-eio 2.3.1 (pinned)
- recompile cstruct 6.2.0 [uses fmt]
- recompile eio 1.3 [uses fmt]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile logs 0.10.0 [uses cmdliner]
- recompile mirage-crypto-ec 2.1.0 [uses mirage-crypto-rng]
- recompile mirage-crypto-pk 2.1.0 [uses mirage-crypto-rng]
- recompile mirage-crypto-rng 2.1.0 [uses logs]
- recompile x509 1.0.6 [uses fmt]
=== install 23 packages
- install alcotest 1.9.1 [required by caqti-eio]
- install astring 0.8.5 [required by alcotest]
- install caqti-driver-sqlite3 2.3.1 [required by caqti-eio]
- install cmdliner 2.1.1 [required by caqti-eio]
- install conf-sqlite3 1 [required by sqlite3]
- install dune-compiledb 0.6.0 [required by sqlite3]
- install eio_linux 1.3 [required by eio_main]
- install eio_main 1.3 [required by caqti-eio]
- install eio_posix 1.3 [required by eio_main]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fpath 0.7.3 [required by dune-compiledb]
- install hex 1.5.0 [required by ezjsonm]
- install iomux 0.4 [required by eio_posix]
- install jsonm 1.0.2 [required by ezjsonm]
- install num 1.6 [required by sexplib]
- install parsexp v0.17.0 [required by sexplib]
- install re 1.14.0 [required by alcotest]
- install sexplib v0.17.0 [required by dune-compiledb]
- install sexplib0 v0.17.0 [required by dune-compiledb]
- install sqlite3 5.4.1 [required by caqti-driver-sqlite3]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uring 2.7.0 [required by eio_linux]
- install uutf 1.0.4 [required by alcotest]
The following system packages will first need to be installed:
libsqlite3-dev
<><> 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"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libsqlite3-dev:amd64.
- (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 ... 16417 files and directories currently installed.)
- Preparing to unpack .../libsqlite3-dev_3.45.1-1ubuntu2.5_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.45.1-1ubuntu2.5) ...
- Setting up libsqlite3-dev:amd64 (3.45.1-1ubuntu2.5) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved caqti.2.3.1, caqti-driver-sqlite3.2.3.1, caqti-eio.2.3.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.1 (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 eio.1.3, eio_linux.1.3, eio_main.1.3, eio_posix.1.3 (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 iomux.0.4 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> installed iomux.0.4
-> installed fpath.0.7.3
-> retrieved mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved num.1.6 (https://opam.ocaml.org/cache)
-> 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.1 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uring.2.7.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved x509.1.0.6 (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed cmdliner.2.1.1
-> removed caqti-eio.2.3.1
-> removed caqti.2.3.1
-> removed eio.1.3
-> removed cstruct.6.2.0
-> removed x509.1.0.6
-> removed mirage-crypto-ec.2.1.0
-> removed mirage-crypto-pk.2.1.0
-> removed mirage-crypto-rng.2.1.0
-> removed logs.0.10.0
-> removed fmt.0.11.0
-> installed num.1.6
-> 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 alcotest.1.9.1
-> installed logs.0.10.0
-> installed jsonm.1.0.2
-> installed ezjsonm.1.3.0
-> installed mirage-crypto-rng.2.1.0
-> installed dune-compiledb.0.6.0
-> installed eio.1.3
-> installed mirage-crypto-pk.2.1.0
-> installed uring.2.7.0
-> installed sqlite3.5.4.1
-> installed eio_posix.1.3
-> installed eio_linux.1.3
-> installed eio_main.1.3
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed caqti.2.3.1
-> installed caqti-driver-sqlite3.2.3.1
-> installed caqti-eio.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 22:54.15 ---> saved as "2bcf9bc85d53efccbc8b81c9aa4995abed8bcd0004d0cae5ba838acf9d6ac5d0"
/home/opam: (run (shell "opam reinstall --with-test --verbose caqti-eio.2.3.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 \"\\\"ubuntu-24.04\\\"\"; 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-eio.2.3.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
- recompile caqti-eio 2.3.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [caqti-eio: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-eio" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-eio.2.3.1)
Processing 2/4: [caqti-eio: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-eio" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-eio.2.3.1)
- (cd _build/default/testsuite && ./main_eio_unix.exe -U uris.conf)
- Testing `test_sql_eio'.
- This run has ID `AC0ROBQN'.
-
- [OK] sqlite3 0 post_connect.
- [OK] sqlite3 1 expand.
- [OK] sqlite3 2 params_and_quotes.
- [OK] sqlite3 3 expr_and_decode.
- [OK] sqlite3 4 enum.
- [OK] sqlite3 5 table.
- [OK] sqlite3 6 tuples.
- [OK] sqlite3 7 affected_count.
- [OK] sqlite3 8 stream.
- [OK] sqlite3 9 stream_both_ways.
- [OK] sqlite3 10 stream_binary.
- [OK] sqlite3 11 dynamic_release.
- [OK] sqlite3 12 nilrequest.
- [OK] sqlite3 13 multirequest.
- [OK] sqlite3 14 harness.
- [SKIP] sqlite3 15 NOT NULL constraint violation.
- [SKIP] sqlite3 16 UNIQUE constraint violation.
- [SKIP] sqlite3 17 FOREIGN KEY constraint violation.
- [SKIP] sqlite3 18 CHECK constraint violation.
- [OK] sqlite3 19 nonlinear.
- [OK] sqlite3 20 environment.
- [OK] sqlite3 21 raise in call.
- [OK] sqlite3 22 fail in call.
- [OK] sqlite3 23 statement timeout.
- [OK] sqlite3 24 drain.
- [OK] sqlite3 25 connect.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/caqti-eio.2.3.1/_build/default/testsuite/_build/_tests/test_sql_eio'.
- Test Successful in 9.342s. 22 tests run.
-> compiled caqti-eio.2.3.1
-> removed caqti-eio.2.3.1
-> installed caqti-eio.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 22:54.34 ---> saved as "ed6541253506400899ab3c8dc5d35b9d404f218078041c4def83134d298dca8a"
Job succeeded
2026-05-24 22:55.23: Job succeeded