(for PR #29937)
2026-05-24 22:43.54: New job: test caqti.2.3.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29937/head (699c568442d9080169b06a0acf74464211d7c52c)
on fedora-43-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:fedora-43-ocaml-5.4@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11
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.2.3.1 2.3.1
RUN opam reinstall caqti.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 "\"fedora-43\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'caqti.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.2.3.1) || true
RUN opam reinstall --with-test --verbose caqti.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 "\"fedora-43\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'caqti.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:fedora-43-ocaml-5.4@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11-caqti.2.3.1-699c568442d9080169b06a0acf74464211d7c52c"
2026-05-24 22:43.54: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-5.4@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11)
(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.2.3.1 2.3.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caqti.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 \"\\\"fedora-43\\\"\"; 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.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.2.3.1) || true"))
(run (shell "opam reinstall --with-test --verbose caqti.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 \"\\\"fedora-43\\\"\"; 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.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:46.22: Waiting for worker…
2026-05-24 22:49.24: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
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:fedora-43-ocaml-5.4@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11)
Unable to find image 'ocaml/opam:fedora-43-ocaml-5.4@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11' locally
docker.io/ocaml/opam@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11: Pulling from ocaml/opam
50ce27f2221c: Pulling fs layer
3ccb16ecd06a: Pulling fs layer
18a377ee2211: Pulling fs layer
24696ad16a7d: Pulling fs layer
8744e7b07a32: Pulling fs layer
3ccb16ecd06a: Waiting
7bb3c32a1cba: Pulling fs layer
18a377ee2211: Waiting
407809b63881: Pulling fs layer
24696ad16a7d: Waiting
8744e7b07a32: Waiting
7bb3c32a1cba: Waiting
93e4376c7f0b: Pulling fs layer
50ce27f2221c: Waiting
a9781f583df7: Pulling fs layer
93e4376c7f0b: Waiting
6a612b43d6db: Pulling fs layer
dc75ae048963: Pulling fs layer
35cbd27d0514: Pulling fs layer
6a612b43d6db: Waiting
22141018b4f2: Pulling fs layer
a9781f583df7: Waiting
35cbd27d0514: Waiting
dc75ae048963: Waiting
b88d98f22507: Pulling fs layer
22141018b4f2: Waiting
1ccefcc2ece8: Pulling fs layer
b88d98f22507: Waiting
4b4d0cfd5290: Pulling fs layer
1ccefcc2ece8: Waiting
63fddb858358: Pulling fs layer
4b4d0cfd5290: Waiting
168eefde11ec: Pulling fs layer
d43a1a2ad4c2: Pulling fs layer
0633fabe4ce0: Pulling fs layer
168eefde11ec: Waiting
d43a1a2ad4c2: Waiting
63fddb858358: Waiting
4f4fb700ef54: Pulling fs layer
0633fabe4ce0: Waiting
d05a2a92d8f7: Pulling fs layer
da5a1948f35d: Pulling fs layer
4f4fb700ef54: Waiting
2403e2a2896b: Pulling fs layer
f3a145d0fc03: Pulling fs layer
d05a2a92d8f7: Waiting
da5a1948f35d: Waiting
f0937c333384: Pulling fs layer
f3a145d0fc03: Waiting
5df5e3a70f0f: Pulling fs layer
f0937c333384: Waiting
ee6c4434e3e1: Pulling fs layer
5df5e3a70f0f: Waiting
5fb00e330173: Pulling fs layer
ee6c4434e3e1: Waiting
20bbedf126b4: Pulling fs layer
5fb00e330173: Waiting
90488d4c4d0f: Pulling fs layer
20bbedf126b4: Waiting
73f23c0cf8dc: Pulling fs layer
90488d4c4d0f: Waiting
a0803eefe864: Pulling fs layer
21a42a22fe62: Pulling fs layer
73f23c0cf8dc: Waiting
a0803eefe864: Waiting
e1391f52b3d5: Pulling fs layer
21a42a22fe62: Waiting
2c5db9908c40: Pulling fs layer
f3c0c33bd60c: Pulling fs layer
e1391f52b3d5: Waiting
2c5db9908c40: Waiting
df280c87d5ca: Pulling fs layer
f3c0c33bd60c: Waiting
5c8cc44edcae: Pulling fs layer
df280c87d5ca: Waiting
4a99d51e2ed7: Pulling fs layer
6e2929724000: Pulling fs layer
4a99d51e2ed7: Waiting
5c8cc44edcae: Waiting
19493db3d7b2: Pulling fs layer
4192c01703be: Pulling fs layer
6e2929724000: Waiting
19493db3d7b2: Waiting
c6ad3a5dc0fc: Pulling fs layer
4192c01703be: Waiting
50ce27f2221c: Verifying Checksum
50ce27f2221c: Download complete
3ccb16ecd06a: Verifying Checksum
3ccb16ecd06a: Download complete
50ce27f2221c: Pull complete
3ccb16ecd06a: Pull complete
18a377ee2211: Verifying Checksum
18a377ee2211: Download complete
18a377ee2211: Pull complete
7bb3c32a1cba: Verifying Checksum
7bb3c32a1cba: Download complete
407809b63881: Verifying Checksum
407809b63881: Download complete
8744e7b07a32: Verifying Checksum
8744e7b07a32: Download complete
93e4376c7f0b: Verifying Checksum
93e4376c7f0b: Download complete
a9781f583df7: Verifying Checksum
a9781f583df7: Download complete
dc75ae048963: Verifying Checksum
dc75ae048963: Download complete
6a612b43d6db: Verifying Checksum
6a612b43d6db: Download complete
22141018b4f2: Verifying Checksum
22141018b4f2: Download complete
b88d98f22507: Download complete
35cbd27d0514: Verifying Checksum
35cbd27d0514: Download complete
1ccefcc2ece8: Download complete
4b4d0cfd5290: Verifying Checksum
4b4d0cfd5290: Download complete
168eefde11ec: Verifying Checksum
168eefde11ec: Download complete
63fddb858358: Verifying Checksum
63fddb858358: Download complete
d43a1a2ad4c2: Download complete
0633fabe4ce0: Download complete
4f4fb700ef54: Download complete
d05a2a92d8f7: Download complete
da5a1948f35d: Download complete
2403e2a2896b: Verifying Checksum
2403e2a2896b: Download complete
f3a145d0fc03: Verifying Checksum
f3a145d0fc03: Download complete
f0937c333384: Verifying Checksum
f0937c333384: Download complete
5df5e3a70f0f: Verifying Checksum
5df5e3a70f0f: Download complete
ee6c4434e3e1: Verifying Checksum
ee6c4434e3e1: Download complete
5fb00e330173: Verifying Checksum
5fb00e330173: Download complete
20bbedf126b4: Verifying Checksum
20bbedf126b4: Download complete
90488d4c4d0f: Verifying Checksum
90488d4c4d0f: Download complete
73f23c0cf8dc: Verifying Checksum
73f23c0cf8dc: Download complete
a0803eefe864: Verifying Checksum
a0803eefe864: Download complete
e1391f52b3d5: Verifying Checksum
e1391f52b3d5: Download complete
2c5db9908c40: Verifying Checksum
2c5db9908c40: Download complete
f3c0c33bd60c: Download complete
df280c87d5ca: Verifying Checksum
df280c87d5ca: Download complete
5c8cc44edcae: Download complete
21a42a22fe62: Verifying Checksum
21a42a22fe62: Download complete
4a99d51e2ed7: Verifying Checksum
4a99d51e2ed7: Download complete
19493db3d7b2: Download complete
4192c01703be: Download complete
c6ad3a5dc0fc: Verifying Checksum
c6ad3a5dc0fc: Download complete
6e2929724000: Verifying Checksum
6e2929724000: Download complete
24696ad16a7d: Verifying Checksum
24696ad16a7d: Download complete
24696ad16a7d: Pull complete
8744e7b07a32: Pull complete
7bb3c32a1cba: Pull complete
407809b63881: Pull complete
93e4376c7f0b: Pull complete
a9781f583df7: Pull complete
6a612b43d6db: Pull complete
dc75ae048963: Pull complete
35cbd27d0514: Pull complete
22141018b4f2: Pull complete
b88d98f22507: Pull complete
1ccefcc2ece8: Pull complete
4b4d0cfd5290: Pull complete
63fddb858358: Pull complete
168eefde11ec: Pull complete
d43a1a2ad4c2: Pull complete
0633fabe4ce0: Pull complete
4f4fb700ef54: Pull complete
d05a2a92d8f7: Pull complete
da5a1948f35d: Pull complete
2403e2a2896b: Pull complete
f3a145d0fc03: Pull complete
f0937c333384: Pull complete
5df5e3a70f0f: Pull complete
ee6c4434e3e1: Pull complete
5fb00e330173: Pull complete
20bbedf126b4: Pull complete
90488d4c4d0f: Pull complete
73f23c0cf8dc: Pull complete
a0803eefe864: Pull complete
21a42a22fe62: Pull complete
e1391f52b3d5: Pull complete
2c5db9908c40: Pull complete
f3c0c33bd60c: Pull complete
df280c87d5ca: Pull complete
5c8cc44edcae: Pull complete
4a99d51e2ed7: Pull complete
6e2929724000: Pull complete
19493db3d7b2: Pull complete
4192c01703be: Pull complete
c6ad3a5dc0fc: Pull complete
Digest: sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11
Status: Downloaded newer image for ocaml/opam@sha256:34c08e5fcccffec701dc321e04f1e10d5e93fa9688316d19d909876ed3328d11
2026-05-24 22:50.53 ---> using "105c17121e5e7bd37cdc3c1d360a58caba637b2f9318992737a886e9ad8ee77f" 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:50.53 ---> using "40db5459dc53ad78483e672facab1475ab21d9a69e59157d1adb853464e231e5" 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.
Continue? [Y/n] y
[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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-24 22:50.53 ---> using "f3e2709670ca4b0532f37c924c63df539ccac66ae12d38aada537d59d1a927eb" 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=fedora os-version=43
# 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.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:50.53 ---> using "a3a8aae2b3494041533772825de8eef7a27c7f6f6f55116a1f52dd97d9e7e2dd" 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:50.53 ---> using "fc99d2b42bc6a6e81aa685e3dd7321bae65c93dba80205321d544210c8858540" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-24 22:50.54 ---> using "97729b8bb50dc547893f603d711ce3500216a1d73e7ec0d987d22fed9e7fe131" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-24 22:50.54 ---> using "85ec8bc29396d2a9ab03740e4add70b287e794e9b33503e18063976b96dcf891" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 - x86_64 100% | 65.2 KiB/s | 19.7 KiB | 00m00s
- Fedora 43 - x86_64 - Updates 100% | 102.8 KiB/s | 16.5 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-05-24 22:50.54 ---> using "a557940251d1dbe0dedcf84bb8aac1287955da1b991e65b5ca6eb153f081399a" from cache
/home/opam: (run (shell "opam pin add -k version -yn caqti.2.3.1 2.3.1"))
caqti is now pinned to version 2.3.1
2026-05-24 22:50.54 ---> using "f7980da5b307f4ddd33d7f01b7a9d7bc5eb52e7e1fd486dafcb39da6e3711aed" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caqti.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 \"\\\"fedora-43\\\"\"; 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.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.2.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 48 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]
- install caqti 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 digestif 1.3.0 [required by mirage-crypto-ec, kdf, mirage-crypto-pk]
- install domain-name 0.5.0 [required by caqti]
- install dune 3.23.1 [required by caqti]
- 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 eqaf 0.10 [required by mirage-crypto-ec, mirage-crypto-pk]
- install fmt 0.11.0 [required by logs, x509]
- install fs-io 3.23.1 [required by stdune]
- install gmap 0.3.0 [required by x509]
- install ipaddr 5.6.2 [required by caqti]
- install kdf 1.0.0 [required by x509]
- install logs 0.10.0 [required by caqti]
- install lru 0.3.1 [required by caqti]
- install lwt-dllist 1.1.0 [required by caqti]
- 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]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by mtime, logs, ptime]
- install ocamlfind 1.9.8 [required by mtime, logs, ptime]
- install ohex 0.2.0 [required by x509]
- 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 lru]
- 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 top-closure 3.23.1 [required by stdune]
- install topkg 1.1.1 [required by mtime, logs, ptime]
- 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:
gmp-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/sbin/sudo "yum" "install" "-y" "gmp-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- gmp-devel x86_64 1:6.3.0-4.fc43 fedora 352.3 KiB
- Installing dependencies:
- gmp-c++ x86_64 1:6.3.0-4.fc43 fedora 27.6 KiB
-
- Transaction Summary:
- Installing: 2 packages
-
- Total size of inbound packages is 193 KiB. Need to download 193 KiB.
- After this operation, 380 KiB extra will be used (install 380 KiB, remove 0 B).
- [1/2] gmp-c++-1:6.3.0-4.fc43.x86_64 100% | 206.8 KiB/s | 18.4 KiB | 00m00s
- [2/2] gmp-devel-1:6.3.0-4.fc43.x86_64 100% | 1.0 MiB/s | 174.3 KiB | 00m00s
- --------------------------------------------------------------------------------
- [2/2] Total 100% | 392.5 KiB/s | 192.7 KiB | 00m00s
- Running transaction
- [1/4] Verify package files 100% | 2.0 KiB/s | 2.0 B | 00m00s
- [2/4] Prepare transaction 100% | 54.0 B/s | 2.0 B | 00m00s
- [3/4] Installing gmp-c++-1:6.3.0-4.fc43 100% | 13.9 MiB/s | 28.5 KiB | 00m00s
- [4/4] Installing gmp-devel-1:6.3.0-4.fc 100% | 7.9 MiB/s | 354.1 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.3.0-4.fc43.x86_64
<><> 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 (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
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0 (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 eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved 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 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 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 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 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 ordering.3.23.1
-> installed pp.2.0.0
-> installed psq.0.2.1
-> installed stringext.1.6.0
-> installed top-closure.3.23.1
-> installed dune-configurator.3.23.1
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed lru.0.3.1
-> installed bigstringaf.0.10.0
-> installed dyn.3.23.1
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.1.0
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.2.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed uri.4.4.0
-> installed stdune.3.23.1
-> installed mirage-crypto-ec.2.1.0
-> installed dune-private-libs.3.23.1
-> installed x509.1.0.6
-> installed dune-site.3.23.1
-> installed caqti.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 22:51.56 ---> saved as "cdeb444e3b5ba00c55656b8d2e314339b0b6ebf9dcc319eecf54235e2aeabb31"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test caqti.2.3.1) || true"))
The following actions will be performed:
=== recompile 7 packages
- recompile caqti 2.3.1 (pinned)
- 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 11 packages
- install alcotest 1.9.1 [required by caqti]
- install astring 0.8.5 [required by alcotest, mdx]
- install camlp-streams 5.0.1 [required by mdx]
- install cmdliner 2.1.1 [required by caqti]
- install cppo 1.8.0 [required by mdx]
- install mdx 2.5.2 [required by caqti]
- install ocaml-version 4.1.1 [required by mdx]
- install re 1.14.0 [required by caqti]
- install result 1.5 [required by mdx]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.1 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved mdx.2.5.2 (https://opam.ocaml.org/cache)
-> retrieved mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved ocaml-version.4.1.1 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved result.1.5 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> installed ocaml-version.4.1.1
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed result.1.5
-> retrieved x509.1.0.6 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> removed caqti.2.3.1
-> 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 cmdliner.2.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed mdx.2.5.2
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed caqti.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 22:52.22 ---> saved as "5aa1f8cd665678676122e69cef83013b73b31c781cd8148f28741c31d8116492"
/home/opam: (run (shell "opam reinstall --with-test --verbose caqti.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 \"\\\"fedora-43\\\"\"; 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.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 2.3.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [caqti: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti" "-j" "255" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti.2.3.1)
Processing 2/4: [caqti: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caqti" "--create-install-file" "caqti" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti.2.3.1)
Processing 2/4: [caqti: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti.2.3.1)
- (cd _build/default/caqti/test && ./main.exe)
- Testing `caqti'.
- This run has ID `JX7MB90G'.
-
- [OK] heap 0 push, pop.
- [OK] query 0 show, hash.
- [OK] query 1 parse special cases.
- [OK] query 2 parse random strings.
- [OK] query 3 expand.
- [OK] query 4 qprintf.
- [OK] request 0 parse.
- [OK] request_cache 0 hit or miss.
- [OK] row_type 0 fields.
- [OK] switch 0 eternal.
- [OK] switch 1 create.
- [OK] switch 2 run.
- [OK] version 0 equal.
- [OK] version 1 compare.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/caqti.2.3.1/_build/default/caqti/test/_build/_tests/caqti'.
- Test Successful in 0.986s. 14 tests run.
-> compiled caqti.2.3.1
-> removed caqti.2.3.1
-> installed caqti.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 22:52.31 ---> saved as "84e17dc1f8bda167d81984aa0ae7de191789cd63a2606fad4e7390d44976c17b"
Job succeeded
2026-05-24 22:52.41: Job succeeded