Build:
- 0
2026-02-18 16:03.01: New job: test qcow-types.0.13.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29420/head (1c56fa007c7c3d55ecb6e813f3453aa0163c8362)
on ubuntu-22.04-ocaml-4.14/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/29420/head" && git reset --hard 1c56fa00
git fetch origin master
git merge --no-edit 0431a98cc2177cbcc88e0937fe5b1b48e457e990
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2
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 qcow-types.0.13.0 0.13.0
RUN opam reinstall qcow-types.0.13.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'qcow-types.0.13.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test qcow-types.0.13.0) || true
RUN opam reinstall --with-test --verbose qcow-types.0.13.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'qcow-types.0.13.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-02-18 16:03.01: Using cache hint "ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2-qcow-types.0.13.0-1c56fa007c7c3d55ecb6e813f3453aa0163c8362"
2026-02-18 16:03.01: Using OBuilder spec:
((from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2)
(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 qcow-types.0.13.0 0.13.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcow-types.0.13.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.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\" != 'qcow-types.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test qcow-types.0.13.0) || true"))
(run (shell "opam reinstall --with-test --verbose qcow-types.0.13.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.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\" != 'qcow-types.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-18 16:03.01: Waiting for resource in pool OCluster
2026-02-18 16:03.02: Waiting for worker…
2026-02-18 16:05.18: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 91% (16644/18239)
Updating files: 92% (16780/18239)
Updating files: 93% (16963/18239)
Updating files: 94% (17145/18239)
Updating files: 95% (17328/18239)
Updating files: 96% (17510/18239)
Updating files: 97% (17692/18239)
Updating files: 98% (17875/18239)
Updating files: 99% (18057/18239)
Updating files: 100% (18239/18239)
Updating files: 100% (18239/18239), done.
HEAD is now at 0431a98cc2 Merge pull request #29419 from dinosaure/release-hxd-v0.4.0
Merge made by the 'ort' strategy.
packages/qcow-stream/qcow-stream.0.13.0/opam | 42 +++++++++++++++++++
packages/qcow-tool/qcow-tool.0.13.0/opam | 57 +++++++++++++++++++++++++
packages/qcow-types/qcow-types.0.13.0/opam | 50 ++++++++++++++++++++++
packages/qcow/qcow.0.13.0/opam | 62 ++++++++++++++++++++++++++++
4 files changed, 211 insertions(+)
create mode 100644 packages/qcow-stream/qcow-stream.0.13.0/opam
create mode 100644 packages/qcow-tool/qcow-tool.0.13.0/opam
create mode 100644 packages/qcow-types/qcow-types.0.13.0/opam
create mode 100644 packages/qcow/qcow.0.13.0/opam
(from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2)
Unable to find image 'ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2' locally
docker.io/ocaml/opam@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2: Pulling from ocaml/opam
6f4ebca3e823: Pulling fs layer
caab82817ff9: Pulling fs layer
b93b3d1e6757: Pulling fs layer
ae51728a0bd8: Pulling fs layer
0b95f5fc9ae9: Pulling fs layer
3248f3e4c391: Pulling fs layer
b93b3d1e6757: Waiting
69537e10b624: Pulling fs layer
ae51728a0bd8: Waiting
ea8cb788d4e3: Pulling fs layer
0b95f5fc9ae9: Waiting
3248f3e4c391: Waiting
69537e10b624: Waiting
58b1de7f4941: Pulling fs layer
ea8cb788d4e3: Waiting
6bbdcef06cb1: Pulling fs layer
58b1de7f4941: Waiting
6bbdcef06cb1: Waiting
e4b6604f4c2d: Pulling fs layer
3b59f7d639bb: Pulling fs layer
e4b6604f4c2d: Waiting
1b5d332ce45f: Pulling fs layer
3b59f7d639bb: Waiting
aa549679fe6f: Pulling fs layer
1b5d332ce45f: Waiting
b884323c3a85: Pulling fs layer
aa549679fe6f: Waiting
b884323c3a85: Waiting
b2cd150723e3: Pulling fs layer
4bfbf57d5bd0: Pulling fs layer
b2cd150723e3: Waiting
4bfbf57d5bd0: Waiting
4f4fb700ef54: Pulling fs layer
f986b8f56bf0: Pulling fs layer
4f4fb700ef54: Waiting
df1539e3aab8: Pulling fs layer
f986b8f56bf0: Waiting
b64b0ad3a3ae: Pulling fs layer
0f47637a31a0: Pulling fs layer
51cccb0a2095: Pulling fs layer
b64b0ad3a3ae: Waiting
0f47637a31a0: Waiting
a26091b786e8: Pulling fs layer
51cccb0a2095: Waiting
9c303443cadd: Pulling fs layer
b8e866861940: Pulling fs layer
9c303443cadd: Waiting
671ab58654e3: Pulling fs layer
bf66cdd1b62b: Pulling fs layer
b8e866861940: Waiting
671ab58654e3: Waiting
064251b2fa2c: Pulling fs layer
bf66cdd1b62b: Waiting
7493d8981402: Pulling fs layer
064251b2fa2c: Waiting
bef7700492bc: Pulling fs layer
7493d8981402: Waiting
8523864f6a30: Pulling fs layer
bef7700492bc: Waiting
26aa6518ceea: Pulling fs layer
da62c1088fea: Pulling fs layer
8523864f6a30: Waiting
26aa6518ceea: Waiting
584007fc22d6: Pulling fs layer
da62c1088fea: Waiting
02340801d27b: Pulling fs layer
584007fc22d6: Waiting
65017da97e87: Pulling fs layer
02340801d27b: Waiting
13df4a69e9aa: Pulling fs layer
65017da97e87: Waiting
5816dcb55b56: Pulling fs layer
13df4a69e9aa: Waiting
61035fcf045b: Pulling fs layer
3afee99126d1: Pulling fs layer
5816dcb55b56: Waiting
61035fcf045b: Waiting
ca9ada554e85: Pulling fs layer
3afee99126d1: Waiting
abdfdd0ca335: Pulling fs layer
ca9ada554e85: Waiting
abdfdd0ca335: Waiting
caab82817ff9: Verifying Checksum
caab82817ff9: Download complete
b93b3d1e6757: Verifying Checksum
b93b3d1e6757: Download complete
6f4ebca3e823: Verifying Checksum
6f4ebca3e823: Download complete
6f4ebca3e823: Pull complete
caab82817ff9: Pull complete
b93b3d1e6757: Pull complete
0b95f5fc9ae9: Verifying Checksum
0b95f5fc9ae9: Download complete
ae51728a0bd8: Verifying Checksum
ae51728a0bd8: Download complete
3248f3e4c391: Verifying Checksum
3248f3e4c391: Download complete
69537e10b624: Verifying Checksum
69537e10b624: Download complete
ea8cb788d4e3: Verifying Checksum
ea8cb788d4e3: Download complete
58b1de7f4941: Verifying Checksum
58b1de7f4941: Download complete
ae51728a0bd8: Pull complete
6bbdcef06cb1: Verifying Checksum
6bbdcef06cb1: Download complete
0b95f5fc9ae9: Pull complete
e4b6604f4c2d: Verifying Checksum
e4b6604f4c2d: Download complete
3b59f7d639bb: Verifying Checksum
3b59f7d639bb: Download complete
1b5d332ce45f: Download complete
aa549679fe6f: Verifying Checksum
aa549679fe6f: Download complete
b884323c3a85: Verifying Checksum
b884323c3a85: Download complete
b2cd150723e3: Verifying Checksum
b2cd150723e3: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
4bfbf57d5bd0: Verifying Checksum
4bfbf57d5bd0: Download complete
df1539e3aab8: Verifying Checksum
df1539e3aab8: Download complete
f986b8f56bf0: Verifying Checksum
f986b8f56bf0: Download complete
0f47637a31a0: Verifying Checksum
0f47637a31a0: Download complete
b64b0ad3a3ae: Verifying Checksum
b64b0ad3a3ae: Download complete
a26091b786e8: Verifying Checksum
a26091b786e8: Download complete
51cccb0a2095: Verifying Checksum
51cccb0a2095: Download complete
9c303443cadd: Verifying Checksum
9c303443cadd: Download complete
b8e866861940: Verifying Checksum
b8e866861940: Download complete
bf66cdd1b62b: Verifying Checksum
bf66cdd1b62b: Download complete
671ab58654e3: Verifying Checksum
671ab58654e3: Download complete
7493d8981402: Verifying Checksum
7493d8981402: Download complete
064251b2fa2c: Verifying Checksum
064251b2fa2c: Download complete
bef7700492bc: Verifying Checksum
bef7700492bc: Download complete
8523864f6a30: Download complete
26aa6518ceea: Verifying Checksum
26aa6518ceea: Download complete
584007fc22d6: Download complete
3248f3e4c391: Pull complete
69537e10b624: Pull complete
ea8cb788d4e3: Pull complete
58b1de7f4941: Pull complete
da62c1088fea: Verifying Checksum
da62c1088fea: Download complete
6bbdcef06cb1: Pull complete
65017da97e87: Verifying Checksum
65017da97e87: Download complete
13df4a69e9aa: Verifying Checksum
13df4a69e9aa: Download complete
e4b6604f4c2d: Pull complete
5816dcb55b56: Download complete
3b59f7d639bb: Pull complete
1b5d332ce45f: Pull complete
aa549679fe6f: Pull complete
b884323c3a85: Pull complete
b2cd150723e3: Pull complete
4bfbf57d5bd0: Pull complete
4f4fb700ef54: Pull complete
f986b8f56bf0: Pull complete
df1539e3aab8: Pull complete
b64b0ad3a3ae: Pull complete
0f47637a31a0: Pull complete
51cccb0a2095: Pull complete
a26091b786e8: Pull complete
9c303443cadd: Pull complete
b8e866861940: Pull complete
671ab58654e3: Pull complete
bf66cdd1b62b: Pull complete
064251b2fa2c: Pull complete
7493d8981402: Pull complete
bef7700492bc: Pull complete
8523864f6a30: Pull complete
26aa6518ceea: Pull complete
02340801d27b: Verifying Checksum
02340801d27b: Download complete
3afee99126d1: Verifying Checksum
3afee99126d1: Download complete
ca9ada554e85: Download complete
abdfdd0ca335: Verifying Checksum
abdfdd0ca335: Download complete
61035fcf045b: Verifying Checksum
61035fcf045b: Download complete
da62c1088fea: Pull complete
584007fc22d6: Pull complete
02340801d27b: Pull complete
65017da97e87: Pull complete
13df4a69e9aa: Pull complete
5816dcb55b56: Pull complete
61035fcf045b: Pull complete
3afee99126d1: Pull complete
ca9ada554e85: Pull complete
abdfdd0ca335: Pull complete
Digest: sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2
Status: Downloaded newer image for ocaml/opam@sha256:dc8e2e9962f744060a3d0f67198deec4c8843f5beb476014b53130b249f3e0a2
2026-02-18 16:07.46 ---> saved as "9b7e9fc40803fa4661389419dd8c939855291466a0a77663fd995aaf6f4327d3"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-18 16:07.46 ---> saved as "c2325f7d8a60cbb9dba3c67442260be24a04c2bb090f0250014ce3d3d13ee138"
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-18 16:08.17 ---> saved as "d54bcefa1a0fa16db6588e6bd08d88ca4a6529c4f36105db1b2b4d2c69818bfa"
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=ubuntu os-version=22.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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-02-18 16:08.18 ---> saved as "a58e10aac284a92ce8d6cab8d187d6a650b9ef323a08aade9a88e98e644f5672"
/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-02-18 16:08.27 ---> saved as "5ab5041cc15bb17ae7b29053dcd666bfaec6d496a7d75815c4bf9d7763ef793f"
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-18 16:08.53 ---> saved as "8cc2be496a5c9854081b8fc0252e117fcad5a54dfdd4414e6bd8c56da4c38686"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-18 16:09.14 ---> saved as "058fed730e15d4b898bca84834f1adb9e5c2077ac9783a0b67f58f0a6e8d3826"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
- Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
- Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
- Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
- Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [6739 kB]
- Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1613 kB]
- Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [4067 kB]
- Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [6511 kB]
- Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3728 kB]
- Get:10 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1301 kB]
- Fetched 24.3 MB in 2s (11.3 MB/s)
- Reading package lists...
-
2026-02-18 16:09.19 ---> saved as "071d9cf69721ddb4ef69dc194a279a330a67844dd9c566eb1db4a832c4d3a875"
/home/opam: (run (shell "opam pin add -k version -yn qcow-types.0.13.0 0.13.0"))
qcow-types is now pinned to version 0.13.0
2026-02-18 16:09.20 ---> saved as "a41e5d6b9aa0ba0aadb2f4a9c29754bb025273e6cacf7d9d56bf818c13a7a6a9"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcow-types.0.13.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.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\" != 'qcow-types.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
qcow-types.0.13.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 31 packages
- install asetmap 0.8.1 [required by prometheus]
- install astring 0.8.5 [required by qcow-types]
- install base v0.16.4 [required by ppx_sexp_conv]
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by qcow-types]
- install diet 0.4 [required by qcow-types]
- install dune 3.21.1 [required by qcow-types]
- install dune-configurator 3.21.1 [required by lwt, base]
- install fmt 0.11.0 [required by logs, cstruct, mirage-block]
- install logs 0.10.0 [required by qcow-types]
- install lwt 5.9.2 [required by qcow-types]
- install lwt_ppx 5.9.1 [required by qcow-types]
- install mirage-block 3.0.2 [required by qcow-types]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by astring, logs]
- install ocamlfind 1.9.8 [required by astring, logs]
- install ocplib-endian 1.2 [required by lwt]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.16.0 [required by qcow-types]
- install ppxlib 0.35.0 [required by lwt_ppx, ppx_sexp_conv]
- install prometheus 1.3 [required by qcow-types]
- install qcow-types 0.13.0 (pinned)
- install re 1.14.0 [required by prometheus]
- install sexplib v0.16.0 [required by qcow-types]
- install sexplib0 v0.16.0 [required by ppx_sexp_conv, sexplib]
- install stdlib-shims 0.3.0 [required by diet]
- install topkg 1.1.1 [required by astring, logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asetmap.0.8.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> retrieved diet.0.4 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved lwt_ppx.5.9.1 (cached)
-> retrieved mirage-block.3.0.2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved prometheus.1.3 (cached)
-> retrieved qcow-types.0.13.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed dune.3.21.1
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed diet.0.4
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.16.0
-> installed lwt.5.9.2
-> installed mirage-block.3.0.2
-> installed prometheus.1.3
-> installed logs.0.10.0
-> installed base.v0.16.4
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_sexp_conv.v0.16.0
-> installed qcow-types.0.13.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-18 16:10.30 ---> saved as "2342c39ab02a57d5f18e989fc5119f3c59a8ebe5449b6882b61bb752a9bbf0d3"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test qcow-types.0.13.0) || true"))
The following actions will be performed:
=== recompile 5 packages
- recompile cstruct 6.2.0 [uses fmt]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile logs 0.10.0 [uses cmdliner]
- recompile mirage-block 3.0.2 [uses fmt]
- recompile qcow-types 0.13.0 (pinned)
=== install 4 packages
- install alcotest 1.9.1 [required by qcow-types]
- install cmdliner 2.1.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.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 cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.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)
-> retrieved mirage-block.3.0.2 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved qcow-types.0.13.0 (https://github.com/mirage/ocaml-qcow/releases/download/0.13.0/qcow-0.13.0.tbz)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> removed qcow-types.0.13.0
-> removed logs.0.10.0
-> removed mirage-block.3.0.2
-> removed cstruct.6.2.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed mirage-block.3.0.2
-> installed alcotest.1.9.1
-> installed logs.0.10.0
[ERROR] The compilation of qcow-types.0.13.0 failed at "dune build -p qcow-types -j 71 @install @runtest".
#=== ERROR while compiling qcow-types.0.13.0 ==================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/mirage/ocaml-qcow/releases/download/0.13.0/qcow-0.13.0.tbz)
# path ~/.opam/4.14/.opam-switch/build/qcow-types.0.13.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p qcow-types -j 71 @install @runtest
# exit-code 1
# env-file ~/.opam/log/qcow-types-7-989556.env
# output-file ~/.opam/log/qcow-types-7-989556.out
### output ###
# File "lib/dune", line 51, characters 22-33:
# 51 | (libraries alcotest qcow_stream)
# ^^^^^^^^^^^
# Error: Library "qcow_stream" not found.
# -> required by _build/default/lib/qcow_mapping_test.exe
# -> required by alias lib/runtest-qcow_mapping_test in lib/dune:49
# -> required by alias lib/runtest
# (cd _build/default/lib && ../generator/gen.exe -o qcow_word_size.ml)
# On a 64-bit machine so using 'int' for clusters
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build qcow-types 0.13.0
+-
+- The following changes have been performed
| - remove qcow-types 0.13.0
| - recompile cstruct 6.2.0
| - recompile fmt 0.11.0
| - recompile logs 0.10.0
| - recompile mirage-block 3.0.2
| - install alcotest 1.9.1
| - install cmdliner 2.1.0
| - install ocaml-syntax-shims 1.0.0
| - install uutf 1.0.4
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260218161031.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-02-18 16:10.48 ---> saved as "0962a2f5d8d41e60aefb98f19e1af14b9bc127565803cbd960f29f661d4bc8e9"
/home/opam: (run (shell "opam reinstall --with-test --verbose qcow-types.0.13.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.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\" != 'qcow-types.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
qcow-types.0.13.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install qcow-types 0.13.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [qcow-types.0.13.0: extract]
-> retrieved qcow-types.0.13.0 (cached)
Processing 2/3: [qcow-types: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "qcow-types" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/qcow-types.0.13.0)
- File "lib/dune", line 51, characters 22-33:
- 51 | (libraries alcotest qcow_stream)
- ^^^^^^^^^^^
- Error: Library "qcow_stream" not found.
- -> required by _build/default/lib/qcow_mapping_test.exe
- -> required by alias lib/runtest-qcow_mapping_test in lib/dune:49
- -> required by alias lib/runtest
- (cd _build/default/lib && ../generator/gen.exe -o qcow_word_size.ml)
- On a 64-bit machine so using 'int' for clusters
[ERROR] The compilation of qcow-types.0.13.0 failed at "dune build -p qcow-types -j 71 @install @runtest".
#=== ERROR while compiling qcow-types.0.13.0 ==================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/mirage/ocaml-qcow/releases/download/0.13.0/qcow-0.13.0.tbz)
# path ~/.opam/4.14/.opam-switch/build/qcow-types.0.13.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p qcow-types -j 71 @install @runtest
# exit-code 1
# env-file ~/.opam/log/qcow-types-7-f60a1b.env
# output-file ~/.opam/log/qcow-types-7-f60a1b.out
### output ###
# File "lib/dune", line 51, characters 22-33:
# 51 | (libraries alcotest qcow_stream)
# ^^^^^^^^^^^
# Error: Library "qcow_stream" not found.
# -> required by _build/default/lib/qcow_mapping_test.exe
# -> required by alias lib/runtest-qcow_mapping_test in lib/dune:49
# -> required by alias lib/runtest
# (cd _build/default/lib && ../generator/gen.exe -o qcow_word_size.ml)
# On a 64-bit machine so using 'int' for clusters
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build qcow-types 0.13.0
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose qcow-types.0.13.0' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose qcow-types.0.13.0;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'qcow-types.0.13.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-02-18 16:11.00: Job failed: Failed: Build failed
2026-02-18 16:11.00: Log analysis:
2026-02-18 16:11.00: >>>
[ERROR] The compilation of qcow-types.0.13.0 failed at "dune build -p qcow-types -j 71 @install @runtest".
(score = 20)
2026-02-18 16:11.00: >>>
# Error: Library "qcow_stream" not found.
(score = 48)
2026-02-18 16:11.00: >>>
[ERROR] The compilation of qcow-types.0.13.0 failed at "dune build -p qcow-types -j 71 @install @runtest".
(score = 20)
2026-02-18 16:11.00: >>>
# Error: Library "qcow_stream" not found.
(score = 48)
2026-02-18 16:11.00: Library "qcow_stream" not found.