Build:
- 0
2026-04-28 11:18.33: New job: test caqti-miou.2.3.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29814/head (fdfb6228205e20a2c1d1237b02504850a8409646)
on fedora-42-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/29814/head" && git reset --hard fdfb6228
git fetch origin master
git merge --no-edit 0d8fa4e2785bb4702bdbdbce972aecc1bbf211fb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12
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-miou.2.3.1 2.3.1
RUN opam reinstall caqti-miou.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-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'caqti-miou.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-miou.2.3.1) || true
RUN opam reinstall --with-test --verbose caqti-miou.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-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'caqti-miou.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-04-28 11:18.33: Using cache hint "ocaml/opam:fedora-42-ocaml-5.4@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12-caqti-miou.2.3.1-fdfb6228205e20a2c1d1237b02504850a8409646"
2026-04-28 11:18.33: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12)
(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-miou.2.3.1 2.3.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caqti-miou.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-42\\\"\"; 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-miou.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-miou.2.3.1) || true"))
(run (shell "opam reinstall --with-test --verbose caqti-miou.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-42\\\"\"; 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-miou.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-04-28 11:18.33: Waiting for resource in pool OCluster
2026-04-28 11:18.34: Waiting for worker…
2026-04-28 11:18.34: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 0d8fa4e278 Merge pull request #29808 from dinosaure/release-dmarc-v0.0.2
Updating 0d8fa4e278..fdfb622820
Fast-forward
packages/caqti-miou/caqti-miou.2.3.1/opam | 36 +++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 packages/caqti-miou/caqti-miou.2.3.1/opam
(from ocaml/opam:fedora-42-ocaml-5.4@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12)
Unable to find image 'ocaml/opam:fedora-42-ocaml-5.4@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12' locally
docker.io/ocaml/opam@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12: Pulling from ocaml/opam
bcbfb8588268: Pulling fs layer
73b2408747f6: Pulling fs layer
9801aa370cb0: Pulling fs layer
e2db682e1091: Pulling fs layer
35ce4f3a1d8f: Pulling fs layer
0c758f381927: Pulling fs layer
331d2e83f975: Pulling fs layer
587b7a9d2fa5: Pulling fs layer
6f5d85344b5e: Pulling fs layer
0bf270c8c680: Pulling fs layer
b8a710b2793e: Pulling fs layer
102e4eb337f9: Pulling fs layer
8074f360636b: Pulling fs layer
e2db682e1091: Waiting
e2e6e0c8e26d: Pulling fs layer
523ea61dbc78: Pulling fs layer
35ce4f3a1d8f: Waiting
0c758f381927: Waiting
fdc7142430a4: Pulling fs layer
331d2e83f975: Waiting
bd9c320da6c3: Pulling fs layer
0bf270c8c680: Waiting
b8a710b2793e: Waiting
587b7a9d2fa5: Waiting
102e4eb337f9: Waiting
84da89250dcb: Pulling fs layer
14965138aadf: Pulling fs layer
423340f710ae: Pulling fs layer
a8ded4eff573: Pulling fs layer
4f4fb700ef54: Pulling fs layer
6f5d85344b5e: Waiting
b0088e840ba0: Pulling fs layer
8074f360636b: Waiting
8af4a5e4bfe7: Pulling fs layer
fdc7142430a4: Waiting
47714dafabe1: Pulling fs layer
14965138aadf: Waiting
e2e6e0c8e26d: Waiting
bd9c320da6c3: Waiting
4f4fb700ef54: Waiting
7d178f126a38: Pulling fs layer
523ea61dbc78: Waiting
423340f710ae: Waiting
a8ded4eff573: Waiting
84da89250dcb: Waiting
1e25091b9328: Pulling fs layer
e7334ffd00ee: Pulling fs layer
b0d0fb29e996: Pulling fs layer
b514f69d4736: Pulling fs layer
47714dafabe1: Waiting
7d178f126a38: Waiting
8af4a5e4bfe7: Waiting
cc65440c3c3b: Pulling fs layer
1e25091b9328: Waiting
b514f69d4736: Waiting
92a35f6a24ed: Pulling fs layer
b0d0fb29e996: Waiting
e7334ffd00ee: Waiting
cc65440c3c3b: Waiting
9913b5eb2db3: Pulling fs layer
92a35f6a24ed: Waiting
164a98ef7bc0: Pulling fs layer
ebe09a1e10fd: Pulling fs layer
cd30e6adea74: Pulling fs layer
9913b5eb2db3: Waiting
b864cbae0a9c: Pulling fs layer
ebe09a1e10fd: Waiting
ba3fe2c0fbfd: Pulling fs layer
164a98ef7bc0: Waiting
b864cbae0a9c: Waiting
889dd894e69f: Pulling fs layer
ba3fe2c0fbfd: Waiting
29224cb56fda: Pulling fs layer
e86bffff66b3: Pulling fs layer
29224cb56fda: Waiting
a88525790416: Pulling fs layer
889dd894e69f: Waiting
e86bffff66b3: Waiting
ac3c113f6ac4: Pulling fs layer
5e22cb855625: Pulling fs layer
2dd398e35691: Pulling fs layer
5e22cb855625: Waiting
a88525790416: Waiting
ac3c113f6ac4: Waiting
2dd398e35691: Waiting
73b2408747f6: Verifying Checksum
73b2408747f6: Download complete
bcbfb8588268: Verifying Checksum
bcbfb8588268: Download complete
35ce4f3a1d8f: Verifying Checksum
35ce4f3a1d8f: Download complete
9801aa370cb0: Verifying Checksum
9801aa370cb0: Download complete
331d2e83f975: Verifying Checksum
331d2e83f975: Download complete
0c758f381927: Download complete
587b7a9d2fa5: Verifying Checksum
587b7a9d2fa5: Download complete
0bf270c8c680: Verifying Checksum
0bf270c8c680: Download complete
6f5d85344b5e: Verifying Checksum
6f5d85344b5e: Download complete
b8a710b2793e: Verifying Checksum
b8a710b2793e: Download complete
e2db682e1091: Verifying Checksum
e2db682e1091: Download complete
102e4eb337f9: Verifying Checksum
102e4eb337f9: Download complete
8074f360636b: Verifying Checksum
8074f360636b: Download complete
e2e6e0c8e26d: Verifying Checksum
e2e6e0c8e26d: Download complete
523ea61dbc78: Verifying Checksum
523ea61dbc78: Download complete
fdc7142430a4: Verifying Checksum
fdc7142430a4: Download complete
bd9c320da6c3: Verifying Checksum
bd9c320da6c3: Download complete
84da89250dcb: Verifying Checksum
84da89250dcb: Download complete
14965138aadf: Verifying Checksum
14965138aadf: Download complete
423340f710ae: Download complete
a8ded4eff573: Verifying Checksum
a8ded4eff573: Download complete
b0088e840ba0: Verifying Checksum
b0088e840ba0: Download complete
bcbfb8588268: Pull complete
73b2408747f6: Pull complete
8af4a5e4bfe7: Verifying Checksum
8af4a5e4bfe7: Download complete
47714dafabe1: Verifying Checksum
47714dafabe1: Download complete
7d178f126a38: Verifying Checksum
7d178f126a38: Download complete
1e25091b9328: Verifying Checksum
1e25091b9328: Download complete
e7334ffd00ee: Verifying Checksum
e7334ffd00ee: Download complete
b0d0fb29e996: Verifying Checksum
b0d0fb29e996: Download complete
b514f69d4736: Download complete
cc65440c3c3b: Verifying Checksum
cc65440c3c3b: Download complete
92a35f6a24ed: Verifying Checksum
92a35f6a24ed: Download complete
9913b5eb2db3: Verifying Checksum
9913b5eb2db3: Download complete
cd30e6adea74: Download complete
ba3fe2c0fbfd: Verifying Checksum
ba3fe2c0fbfd: Download complete
889dd894e69f: Verifying Checksum
889dd894e69f: Download complete
29224cb56fda: Verifying Checksum
29224cb56fda: Download complete
9801aa370cb0: Pull complete
e86bffff66b3: Verifying Checksum
e86bffff66b3: Download complete
b864cbae0a9c: Verifying Checksum
b864cbae0a9c: Download complete
ac3c113f6ac4: Download complete
a88525790416: Verifying Checksum
a88525790416: Download complete
5e22cb855625: Verifying Checksum
5e22cb855625: Download complete
2dd398e35691: Download complete
ebe09a1e10fd: Verifying Checksum
ebe09a1e10fd: Download complete
e2db682e1091: Pull complete
35ce4f3a1d8f: Pull complete
0c758f381927: Pull complete
331d2e83f975: Pull complete
587b7a9d2fa5: Pull complete
6f5d85344b5e: Pull complete
0bf270c8c680: Pull complete
b8a710b2793e: Pull complete
102e4eb337f9: Pull complete
8074f360636b: Pull complete
e2e6e0c8e26d: Pull complete
523ea61dbc78: Pull complete
fdc7142430a4: Pull complete
bd9c320da6c3: Pull complete
84da89250dcb: Pull complete
14965138aadf: Pull complete
423340f710ae: Pull complete
a8ded4eff573: Pull complete
4f4fb700ef54: Pull complete
b0088e840ba0: Pull complete
8af4a5e4bfe7: Pull complete
47714dafabe1: Pull complete
7d178f126a38: Pull complete
1e25091b9328: Pull complete
e7334ffd00ee: Pull complete
b0d0fb29e996: Pull complete
b514f69d4736: Pull complete
cc65440c3c3b: Pull complete
92a35f6a24ed: Pull complete
9913b5eb2db3: Pull complete
164a98ef7bc0: Pull complete
ebe09a1e10fd: Pull complete
cd30e6adea74: Pull complete
b864cbae0a9c: Pull complete
ba3fe2c0fbfd: Pull complete
889dd894e69f: Pull complete
29224cb56fda: Pull complete
e86bffff66b3: Pull complete
a88525790416: Pull complete
ac3c113f6ac4: Pull complete
5e22cb855625: Pull complete
2dd398e35691: Pull complete
Digest: sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12
Status: Downloaded newer image for ocaml/opam@sha256:8b8939372e4aaf30fa04683c219c13e8bbb34c303280ead670bf44e68464db12
2026-04-28 11:21.34 ---> saved as "654c845502917c783ac602edb0258c422fb38145a50097bdbb9b33f2365bcb19"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-28 11:21.34 ---> saved as "a9a0ee85aefdde88df29dcd5cc6081d49fac3f74306ed248442bd16a02161f1d"
/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
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-28 11:21.56 ---> saved as "acb686e8650d83e4b08abaa038f223ff74188380624985a4e79c61654e71c7e1"
/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=42
# 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-04-28 11:21.57 ---> saved as "8837ac441caa084529cc1c5f119b8f3b88205274896e3ba340894abb4e7015b3"
/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-04-28 11:22.07 ---> saved as "92e4c25a2ac3a1ec469cfeccc23291007eba916d60522af532f14a13265ba5f4"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-28 11:22.14 ---> saved as "d2ab09e3fbade8ec16e1c746bfff21174b691c4b0a17c5ab7129997cd4a05311"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-28 11:22.33 ---> saved as "6db4bde98e9ef20114e7612180d7c145ff56554910469ab1bcdb751840cacf27"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 - Updates 100% | 36.7 KiB/s | 4.3 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-04-28 11:22.38 ---> saved as "aaf39fd4ced6b4dc5671e9d26af2f3a8a0b5b73b16953e053275ce178ce84827"
/home/opam: (run (shell "opam pin add -k version -yn caqti-miou.2.3.1 2.3.1"))
caqti-miou is now pinned to version 2.3.1
2026-04-28 11:22.38 ---> saved as "ba100ed1e34a2118baf8620bae90af5df63ea7992d3d01f6b19590f970e95423"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall caqti-miou.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-42\\\"\"; 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-miou.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-miou.2.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 50 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.0 [required by caqti-miou]
- install caqti-miou 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.22.2 [required by caqti-miou]
- install dune-configurator 3.22.2 [required by miou]
- install dune-private-libs 3.22.2 [required by dune-site]
- install dune-site 3.22.2 [required by caqti]
- install duration 0.3.1 [required by mirage-crypto-rng]
- install dyn 3.22.2 [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.22.2 [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-miou]
- 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 miou 0.5.5 [required by caqti-miou]
- 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.22.2 [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.22.2 [required by dune-private-libs]
- install stringext 1.6.0 [required by uri]
- install top-closure 3.22.2 [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.fc42 fedora 352.3 KiB
- Installing dependencies:
- gmp-c++ x86_64 1:6.3.0-4.fc42 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.fc42.x86_64 100% | 155.4 KiB/s | 18.5 KiB | 00m00s
- [2/2] gmp-devel-1:6.3.0-4.fc42.x86_64 100% | 1.0 MiB/s | 174.4 KiB | 00m00s
- --------------------------------------------------------------------------------
- [2/2] Total 100% | 602.8 KiB/s | 192.9 KiB | 00m00s
- Running transaction
- [1/4] Verify package files 100% | 2.0 KiB/s | 2.0 B | 00m00s
- [2/4] Prepare transaction 100% | 55.0 B/s | 2.0 B | 00m00s
- [3/4] Installing gmp-c++-1:6.3.0-4.fc42 100% | 27.8 MiB/s | 28.5 KiB | 00m00s
- [4/4] Installing gmp-devel-1:6.3.0-4.fc 100% | 7.1 MiB/s | 354.1 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.3.0-4.fc42.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.0 (cached)
-> retrieved caqti-miou.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.22.2, dune-configurator.3.22.2, dune-private-libs.3.22.2, dune-site.3.22.2, dyn.3.22.2, fs-io.3.22.2, ordering.3.22.2, stdune.3.22.2, top-closure.3.22.2 (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 miou.0.5.5 (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.22.2
-> 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.22.2
-> 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.22.2
-> installed pp.2.0.0
-> installed psq.0.2.1
-> installed stringext.1.6.0
-> installed top-closure.3.22.2
-> installed dune-configurator.3.22.2
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed lru.0.3.1
-> installed bigstringaf.0.10.0
-> installed dyn.3.22.2
-> installed miou.0.5.5
-> installed mirage-crypto.2.1.0
-> installed angstrom.0.16.1
-> 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.22.2
-> installed mirage-crypto-ec.2.1.0
-> installed dune-private-libs.3.22.2
-> installed x509.1.0.6
-> installed dune-site.3.22.2
-> installed caqti.2.3.0
-> installed caqti-miou.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-28 11:23.40 ---> saved as "07dcbaf2a764ee96ba507933059ebbc77964edb8849a224c70dddfde1adc2c7a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test caqti-miou.2.3.1) || true"))
The following actions will be performed:
=== recompile 8 packages
- recompile caqti 2.3.0 [uses logs]
- recompile caqti-miou 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 20 packages
- install alcotest 1.9.1 [required by caqti-miou]
- install astring 0.8.5 [required by alcotest]
- install caqti-driver-sqlite3 2.3.0 [required by caqti-miou]
- install cmdliner 2.1.1 [required by caqti-miou]
- 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 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 mirage-crypto-rng-miou-unix 2.1.0 [required by caqti-miou]
- 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 uutf 1.0.4 [required by alcotest]
The following system packages will first need to be installed:
sqlite-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" "sqlite-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- sqlite-devel x86_64 3.47.2-5.fc42 updates 673.4 KiB
- Installing dependencies:
- sqlite x86_64 3.47.2-5.fc42 updates 1.8 MiB
-
- Transaction Summary:
- Installing: 2 packages
-
- Total size of inbound packages is 1 MiB. Need to download 1 MiB.
- After this operation, 2 MiB extra will be used (install 2 MiB, remove 0 B).
- [1/2] sqlite-devel-0:3.47.2-5.fc42.x86_ 100% | 504.5 KiB/s | 146.3 KiB | 00m00s
- [2/2] sqlite-0:3.47.2-5.fc42.x86_64 100% | 2.2 MiB/s | 918.0 KiB | 00m00s
- --------------------------------------------------------------------------------
- [2/2] Total 100% | 2.0 MiB/s | 1.0 MiB | 00m01s
- Running transaction
- [1/4] Verify package files 100% | 666.0 B/s | 2.0 B | 00m00s
- [2/4] Prepare transaction 100% | 54.0 B/s | 2.0 B | 00m00s
- [3/4] Installing sqlite-0:3.47.2-5.fc42 100% | 70.7 MiB/s | 1.8 MiB | 00m00s
- [4/4] Installing sqlite-devel-0:3.47.2- 100% | 15.7 MiB/s | 674.1 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "sqlite-devel"
- sqlite-devel-3.47.2-5.fc42.x86_64
<><> 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.0, caqti-driver-sqlite3.2.3.0 (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 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 mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0, mirage-crypto-rng-miou-unix.2.1.0 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> 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 uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved x509.1.0.6 (https://opam.ocaml.org/cache)
-> installed fpath.0.7.3
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed num.1.6
-> removed caqti-miou.2.3.1
-> removed caqti.2.3.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 cmdliner.2.1.1
-> 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 jsonm.1.0.2
-> installed ezjsonm.1.3.0
-> installed logs.0.10.0
-> installed dune-compiledb.0.6.0
-> installed mirage-crypto-rng.2.1.0
-> installed mirage-crypto-rng-miou-unix.2.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed sqlite3.5.4.1
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed caqti.2.3.0
-> installed caqti-driver-sqlite3.2.3.0
-> installed caqti-miou.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-28 11:28.56 ---> saved as "4c99d3233152ab3523745bc1f3b243d9aea688aca36b02983bbe1f5751588b29"
/home/opam: (run (shell "opam reinstall --with-test --verbose caqti-miou.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-42\\\"\"; 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-miou.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-miou 2.3.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [caqti-miou: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caqti-miou" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-miou.2.3.1)
Processing 2/4: [caqti-miou: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "caqti-miou" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caqti-miou.2.3.1)
- (cd _build/default/caqti-miou/test-unix && ./main.exe)
- Testing `caqti-miou'.
- This run has ID `B7QG77ZE'.
-
- [OK] pool-miou 0 basic usage.
- [OK] pool-miou 1 timed cleanup.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/caqti-miou.2.3.1/_build/default/caqti-miou/test-unix/_build/_tests/caqti-miou'.
- Test Successful in 176.476s. 2 tests run.
- (cd _build/default/testsuite && ./main_miou_unix.exe -U uris.conf)
- Testing `test_sql_miou_unix'.
- This run has ID `V4VL9H16'.
-
- [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 parallel.
- [OK] sqlite3 20 nonlinear.
- [OK] sqlite3 21 environment.
- [OK] sqlite3 22 raise in call.
- [OK] sqlite3 23 fail in call.
- [OK] sqlite3 24 statement timeout.
- [OK] sqlite3 25 drain.
- [OK] sqlite3 26 connect.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/caqti-miou.2.3.1/_build/default/testsuite/_build/_tests/test_sql_miou_unix'.
- Test Successful in 307.733s. 23 tests run.
-> compiled caqti-miou.2.3.1
-> removed caqti-miou.2.3.1
-> installed caqti-miou.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-28 11:34.08 ---> saved as "97aabf8b86f39ba09943ff925735fd31c083af87932cfdec588cfe1693d185c2"
Job succeeded
2026-04-28 11:34.16: Job succeeded