- github
- ocaml
- opam-repository
- 1f4316
- compilers,4.12,qcow-tool.0.14.0,lower-bounds
(not at the head of any monitored branch or PR)
2026-04-10 10:44.44: New job: build qcow-tool.0.14.0, lower-bounds, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29696/head (1f431665cd90223344508f34bdfcda13ee53e31d)
on debian-13-ocaml-4.12/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/29696/head" && git reset --hard 1f431665
git fetch origin master
git merge --no-edit 4d62a12e2668620ec407587e7db38305357322d7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.12@sha256:1b2f88e5f520c993cd38004b12aec8ec96393c5ab76c1c007ab40de3a9fa3e26
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-tool.0.14.0 0.14.0
RUN opam reinstall qcow-tool.0.14.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'qcow-tool.0.14.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
ENV OPAMCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMFIXUPCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMUPGRADECRITERIA="+removed,+count[version-lag,solution]"
RUN opam reinstall qcow-tool.0.14.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'qcow-tool.0.14.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-04-10 10:44.44: Using cache hint "ocaml/opam:debian-13-ocaml-4.12@sha256:1b2f88e5f520c993cd38004b12aec8ec96393c5ab76c1c007ab40de3a9fa3e26-qcow-tool.0.14.0-1f431665cd90223344508f34bdfcda13ee53e31d"
2026-04-10 10:44.44: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.12@sha256:1b2f88e5f520c993cd38004b12aec8ec96393c5ab76c1c007ab40de3a9fa3e26)
(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-tool.0.14.0 0.14.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcow-tool.0.14.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'qcow-tool.0.14.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(env OPAMCRITERIA +removed,+count[version-lag,solution])
(env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
(env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcow-tool.0.14.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'qcow-tool.0.14.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-04-10 10:44.44: Waiting for resource in pool OCluster
2026-04-10 10:44.47: Waiting for worker…
2026-04-10 10:47.29: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 4d62a12e26 Merge pull request #29694 from tmcgilchrist/release-runtime_events_tools-0.5.4
Updating 4d62a12e26..1f431665cd
Fast-forward
packages/qcow-stream/qcow-stream.0.14.0/opam | 45 ++++++++++++++++++++
packages/qcow-tool/qcow-tool.0.14.0/opam | 57 +++++++++++++++++++++++++
packages/qcow-types/qcow-types.0.14.0/opam | 49 ++++++++++++++++++++++
packages/qcow/qcow.0.14.0/opam | 62 ++++++++++++++++++++++++++++
4 files changed, 213 insertions(+)
create mode 100644 packages/qcow-stream/qcow-stream.0.14.0/opam
create mode 100644 packages/qcow-tool/qcow-tool.0.14.0/opam
create mode 100644 packages/qcow-types/qcow-types.0.14.0/opam
create mode 100644 packages/qcow/qcow.0.14.0/opam
(from ocaml/opam:debian-13-ocaml-4.12@sha256:1b2f88e5f520c993cd38004b12aec8ec96393c5ab76c1c007ab40de3a9fa3e26)
2026-04-10 11:05.24 ---> using "724404bc3e5e27d4fd7576e4a10f6fa30bf7f1d144547791dcad318cebf09c51" 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-04-10 11:05.24 ---> using "7638c60affcf49af0a30ac53b585dcc63e0c0f81c1946b8be3f9f04b85d22a79" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[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-10 11:05.24 ---> using "902aab4e0e7c6b05d5b2c477adeac981b32da80daff1e76ee09a0ce462fe4232" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.12
# invariant ["ocaml-base-compiler" {= "4.12.1"}]
# compiler-packages ocaml-base-compiler.4.12.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.12/lib/ocaml/stublibs:/home/opam/.opam/4.12/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.12.1
2026-04-10 11:05.24 ---> using "224a39103693db6f1652eb28b84dfeda907e384683a58ff21ba340fe2affaee2" 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-04-10 11:05.24 ---> using "7aaa051cc37c638bb9b83293481b023648a4373371be862364f0295990ae7461" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 11:05.25 ---> using "a973ecefb3c85980fbb29e597ac7e1d1ccaa773088623b7a057336cb7ad1ab7f" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 11:05.25 ---> using "75c9d91bfad79284e6e6ae0b2262f9b7a0145ed8eacff55b35616320ab2a48a7" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (2397 kB/s)
- Reading package lists...
2026-04-10 11:05.25 ---> using "5a0ee484f13b086fb833c5cd071c500109c2a86f6ce963e11aaa35c5af367460" from cache
/home/opam: (run (shell "opam pin add -k version -yn qcow-tool.0.14.0 0.14.0"))
qcow-tool is now pinned to version 0.14.0
2026-04-10 11:05.25 ---> using "a590fe0265a22e561271a7ea25b5eb749449a7708edd8e9c592412c690a9808f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcow-tool.0.14.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'qcow-tool.0.14.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-tool.0.14.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 54 packages
- install angstrom 0.16.1 [required by uri]
- install asetmap 0.8.1 [required by prometheus]
- install astring 0.8.5 [required by qcow-tool]
- install base v0.15.1 [required by ppx_sexp_conv]
- install base-bytes base [required by qcow]
- install bigstringaf 0.10.0 [required by angstrom]
- install cmdliner 1.3.0 [required by qcow-tool]
- install conf-linux-libc-dev 0 [required by mirage-block-unix]
- install conf-pkg-config 4 [required by io-page]
- install cppo 1.8.0 [required by lwt, ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by qcow-tool]
- install cstruct-lwt 6.2.0 [required by qcow-stream]
- install diet 0.4 [required by qcow-types]
- install dune 3.22.1 [required by qcow-tool]
- install dune-configurator 3.22.1 [required by lwt]
- install duration 0.2.1 [required by mirage-sleep]
- install fmt 0.11.0 [required by qcow-tool]
- install io-page 3.0.0 [required by qcow-tool]
- install logs 0.8.0 [required by qcow-tool]
- install lwt 5.9.2 [required by qcow-tool]
- install lwt_ppx 5.9.1 [required by qcow-stream]
- install mirage-block 3.0.2 [required by qcow-tool]
- install mirage-block-combinators 3.0.2 [required by qcow]
- install mirage-block-unix 2.14.2 [required by qcow]
- install mirage-sleep 4.1.0 [required by qcow]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- 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.15.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by qcow]
- install ppx_sexp_conv v0.15.1 [required by qcow]
- install ppxlib 0.35.0 [required by ppx_deriving, ppx_sexp_conv]
- install prometheus 1.3 [required by qcow]
- install qcow 0.14.0 [required by qcow-tool]
- install qcow-stream 0.14.0 [required by qcow-tool]
- install qcow-tool 0.14.0 (pinned)
- install qcow-types 0.14.0 [required by qcow, qcow-stream]
- install re 1.12.0 [required by prometheus]
- install result 1.5 [required by qcow-tool]
- install rresult 0.7.0 [required by mirage-block-unix]
- install seq base [required by re]
- install sexplib v0.15.1 [required by qcow-tool]
- install sexplib0 v0.15.1 [required by ppx_sexp_conv]
- install sha 1.15.4 [required by qcow-tool]
- install stdlib-shims 0.3.0 [required by qcow]
- install stringext 1.6.0 [required by uri]
- install topkg 1.1.1 [required by astring, logs]
- install unix-type-representations 0.1.2 [required by qcow-tool]
- install uri 4.4.0 [required by mirage-block-unix]
The following system packages will first need to be installed:
pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asetmap.0.8.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.15.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
-> installed conf-linux-libc-dev.0
-> retrieved diet.0.4 (cached)
-> retrieved dune.3.22.1, dune-configurator.3.22.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved io-page.3.0.0 (cached)
-> retrieved logs.0.8.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> installed cmdliner.1.3.0
-> retrieved lwt_ppx.5.9.1 (cached)
-> retrieved mirage-block.3.0.2, mirage-block-combinators.3.0.2 (cached)
-> retrieved mirage-block-unix.2.14.2 (cached)
-> retrieved mirage-sleep.4.1.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved parsexp.v0.15.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_sexp_conv.v0.15.1 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved prometheus.1.3 (cached)
-> retrieved qcow.0.14.0, qcow-stream.0.14.0, qcow-tool.0.14.0, qcow-types.0.14.0 (https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz)
-> retrieved re.1.12.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib.v0.15.1 (cached)
-> retrieved sexplib0.v0.15.1 (cached)
-> retrieved sha.1.15.4 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved unix-type-representations.0.1.2 (cached)
-> retrieved uri.4.4.0 (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 rresult.0.7.0
-> installed unix-type-representations.0.1.2
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed dune.3.22.1
-> installed duration.0.2.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 ocaml-syntax-shims.1.0.0
-> installed re.1.12.0
-> installed result.1.5
-> installed sexplib0.v0.15.1
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed io-page.3.0.0
-> installed ocplib-endian.1.2
-> installed diet.0.4
-> installed sha.1.15.4
-> installed dune-configurator.3.22.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed lwt.5.9.2
-> installed uri.4.4.0
-> installed mirage-block.3.0.2
-> installed cstruct-lwt.6.2.0
-> installed mirage-sleep.4.1.0
-> installed prometheus.1.3
-> installed logs.0.8.0
-> installed mirage-block-combinators.3.0.2
-> installed mirage-block-unix.2.14.2
-> installed base.v0.15.1
-> installed parsexp.v0.15.0
-> installed sexplib.v0.15.1
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_sexp_conv.v0.15.1
-> installed ppx_deriving.6.0.3
-> installed qcow-types.0.14.0
-> installed qcow-stream.0.14.0
-> installed qcow.0.14.0
-> installed qcow-tool.0.14.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 11:05.25 ---> using "3c7940f6376694e0c6ef6043b35bb70f1a461e0d91134648e51d94261efb9727" from cache
/home/opam: (env OPAMCRITERIA +removed,+count[version-lag,solution])
/home/opam: (env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
/home/opam: (env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcow-tool.0.14.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'qcow-tool.0.14.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== remove 4 packages
- remove angstrom 0.16.1 [conflicts with dune]
- remove bigstringaf 0.10.0 [conflicts with dune]
- remove csexp 1.5.2 [conflicts with dune]
- remove ocaml-syntax-shims 1.0.0 [conflicts with dune]
=== downgrade 31 packages
- downgrade base v0.15.1 to v0.14.1 [uses dune]
- downgrade conf-pkg-config 4 to 1.0 [required by io-page]
- downgrade cppo 1.8.0 to 1.6.1 [required by lwt]
- downgrade dune 3.22.1 to 3.18.2 [required by qcow-tool]
- downgrade dune-configurator 3.22.1 to 2.5.1 [uses dune]
- downgrade fmt 0.11.0 to 0.9.0 [required by qcow-tool]
- downgrade io-page 3.0.0 to 2.4.0 [required by qcow-tool]
- downgrade logs 0.8.0 to 0.7.0 [required by qcow-tool]
- downgrade lwt 5.9.2 to 5.5.0 [required by qcow-tool]
- downgrade lwt_ppx 5.9.1 to 2.0.3 [uses dune]
- downgrade mirage-sleep 4.1.0 to 4.0.0 [uses dune]
- downgrade num 1.6 to 1.5 [required by sexplib]
- downgrade ocaml-compiler-libs v0.12.4 to v0.11.0 [uses jbuilder]
- downgrade ocamlbuild 0.16.1 to 0.14.0 [required by fmt]
- downgrade ocamlfind 1.9.8 to 1.8.1 [required by fmt]
- downgrade ocplib-endian 1.2 to 1.0 [uses ocamlbuild]
- downgrade parsexp v0.15.0 to v0.14.0 [uses dune]
- downgrade ppx_derivers 1.2.1 to 1.0 [uses jbuilder]
- downgrade ppx_deriving 6.0.3 to 5.2 [uses dune]
- downgrade ppx_sexp_conv v0.15.1 to v0.14.2 [uses dune]
- downgrade ppxlib 0.35.0 to 0.20.0 [uses dune]
- downgrade prometheus 1.3 to 0.1 [required by qcow]
- downgrade re 1.12.0 to 1.9.0 [uses dune]
- downgrade rresult 0.7.0 to 0.6.0 [upstream or system changes]
- downgrade seq base to 0.3 [uses dune]
- downgrade sexplib v0.15.1 to v0.14.0 [required by qcow-tool]
- downgrade sexplib0 v0.15.1 to v0.14.0 [uses dune]
- downgrade stringext 1.6.0 to 1.4.0 [uses ocamlbuild]
- downgrade topkg 1.1.1 to 1.0.8 [required by fmt]
- downgrade unix-type-representations 0.1.2 to 0.1.0 [required by qcow-tool]
- downgrade uri 4.4.0 to 2.2.1 [uses dune]
=== recompile 15 packages
- recompile base-bytes base [uses ocamlfind]
- recompile cstruct 6.2.0 [uses dune]
- recompile cstruct-lwt 6.2.0 [uses dune]
- recompile diet 0.4 [uses dune]
- recompile duration 0.2.1 [uses dune]
- recompile mirage-block 3.0.2 [uses dune]
- recompile mirage-block-combinators 3.0.2 [uses dune]
- recompile mirage-block-unix 2.14.2 [uses dune]
- recompile qcow 0.14.0 [uses dune]
- recompile qcow-stream 0.14.0 [uses dune]
- recompile qcow-tool 0.14.0 (pinned)
- recompile qcow-types 0.14.0 [uses dune]
- recompile result 1.5 [uses dune]
- recompile sha 1.15.4 [uses dune]
- recompile stdlib-shims 0.3.0 [uses dune]
=== install 6 packages
- install bigarray-compat 1.0.0 [required by io-page]
- install conf-m4 1 [required by ocamlfind]
- install dune-private-libs 2.5.1 [required by dune-configurator]
- install jbuilder 1.0+beta20.1 (deprecated) [required by cppo]
- install mmap 1.1.0 [required by lwt]
- install ocaml-migrate-parsetree 2.1.0 (deprecated) [required by ppxlib]
The following system packages will first need to be installed:
m4
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "m4"
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20660 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Setting up m4 (1.4.19-8) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.14.1 (cached)
-> retrieved bigarray-compat.1.0.0 (cached)
-> retrieved cppo.1.6.1 (cached)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
-> installed conf-m4.1
-> retrieved diet.0.4 (cached)
-> retrieved dune.3.18.2 (cached)
-> retrieved dune-configurator.2.5.1, dune-private-libs.2.5.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved fmt.0.9.0 (cached)
-> retrieved io-page.2.4.0 (cached)
-> retrieved jbuilder.1.0+beta20.1 (cached)
-> retrieved logs.0.7.0 (cached)
-> retrieved lwt.5.5.0, lwt_ppx.2.0.3 (cached)
-> retrieved mirage-block.3.0.2, mirage-block-combinators.3.0.2 (cached)
-> retrieved mirage-block-unix.2.14.2 (cached)
-> retrieved mirage-sleep.4.0.0 (cached)
-> retrieved mmap.1.1.0 (cached)
-> retrieved num.1.5 (cached)
-> retrieved ocaml-compiler-libs.v0.11.0 (cached)
-> retrieved ocaml-migrate-parsetree.2.1.0 (cached)
-> retrieved ocamlbuild.0.14.0 (cached)
-> retrieved ocamlfind.1.8.1 (cached)
-> retrieved ocplib-endian.1.0 (cached)
-> retrieved parsexp.v0.14.0 (cached)
-> retrieved ppx_derivers.1.0 (cached)
-> retrieved ppx_deriving.5.2 (cached)
-> retrieved ppx_sexp_conv.v0.14.2 (cached)
-> retrieved ppxlib.0.20.0 (cached)
-> retrieved prometheus.0.1 (cached)
-> retrieved qcow.0.14.0, qcow-stream.0.14.0, qcow-tool.0.14.0, qcow-types.0.14.0 (cached)
-> retrieved re.1.9.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.6.0 (cached)
-> retrieved seq.0.3 (cached)
-> retrieved sexplib.v0.14.0 (cached)
-> retrieved sexplib0.v0.14.0 (cached)
-> retrieved sha.1.15.4 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.4.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved unix-type-representations.0.1.0 (https://opam.ocaml.org/cache)
-> retrieved uri.2.2.1 (cached)
-> installed jbuilder.1.0+beta20.1
-> removed qcow-tool.0.14.0
-> removed qcow.0.14.0
-> removed mirage-block-combinators.3.0.2
-> removed mirage-block-unix.2.14.2
-> removed mirage-sleep.4.1.0
-> removed duration.0.2.1
-> removed ppx_deriving.6.0.3
-> removed qcow-stream.0.14.0
-> removed cstruct-lwt.6.2.0
-> removed io-page.3.0.0
-> removed conf-pkg-config.4
-> removed qcow-types.0.14.0
-> removed diet.0.4
-> removed logs.0.8.0
-> removed lwt_ppx.5.9.1
-> removed mirage-block.3.0.2
-> removed cstruct.6.2.0
-> removed fmt.0.11.0
-> removed ppx_sexp_conv.v0.15.1
-> removed ppxlib.0.35.0
-> removed ocaml-compiler-libs.v0.12.4
-> removed ppx_derivers.1.2.1
-> removed prometheus.1.3
-> removed lwt.5.9.2
-> removed ocplib-endian.1.2
-> removed base-bytes.base
-> removed cppo.1.8.0
-> removed re.1.12.0
-> removed result.1.5
-> removed rresult.0.7.0
-> removed seq.base
-> removed sexplib.v0.15.1
-> removed num.1.6
-> removed parsexp.v0.15.0
-> removed base.v0.15.1
-> removed sexplib0.v0.15.1
-> removed sha.1.15.4
-> removed stdlib-shims.0.3.0
-> removed unix-type-representations.0.1.2
-> removed topkg.1.1.1
-> removed ocamlbuild.0.16.1
-> removed ocamlfind.1.9.8
-> removed uri.4.4.0
-> removed angstrom.0.16.1
-> removed bigstringaf.0.10.0
-> removed dune-configurator.3.22.1
-> removed csexp.1.5.2
-> removed ocaml-syntax-shims.1.0.0
-> removed stringext.1.6.0
-> removed dune.3.22.1
-> installed conf-pkg-config.1.0
-> installed dune.3.18.2
-> installed num.1.5
-> installed ocaml-compiler-libs.v0.11.0
-> installed ocamlbuild.0.14.0
-> installed ocamlfind.1.8.1
-> installed base-bytes.base
-> installed bigarray-compat.1.0.0
-> installed duration.0.2.1
-> installed mmap.1.1.0
-> installed ocaml-migrate-parsetree.2.1.0
-> installed ppx_derivers.1.0
-> installed result.1.5
-> installed seq.0.3
-> installed sexplib0.v0.14.0
-> installed stdlib-shims.0.3.0
-> installed diet.0.4
-> installed dune-private-libs.2.5.1
-> installed cppo.1.6.1
-> installed re.1.9.0
-> installed sha.1.15.4
-> installed dune-configurator.2.5.1
-> installed unix-type-representations.0.1.0
-> installed stringext.1.4.0
-> installed ocplib-endian.1.0
-> installed base.v0.14.1
-> installed topkg.1.0.8
-> installed rresult.0.6.0
-> installed fmt.0.9.0
-> installed parsexp.v0.14.0
-> installed cstruct.6.2.0
-> installed io-page.2.4.0
-> installed sexplib.v0.14.0
-> installed lwt.5.5.0
-> installed mirage-block.3.0.2
-> installed cstruct-lwt.6.2.0
-> installed mirage-sleep.4.0.0
-> installed ppxlib.0.20.0
-> installed prometheus.0.1
-> installed logs.0.7.0
-> installed mirage-block-combinators.3.0.2
-> installed lwt_ppx.2.0.3
-> installed ppx_sexp_conv.v0.14.2
-> installed ppx_deriving.5.2
-> installed qcow-types.0.14.0
-> installed qcow-stream.0.14.0
-> installed uri.2.2.1
-> installed mirage-block-unix.2.14.2
-> installed qcow.0.14.0
-> installed qcow-tool.0.14.0
Done.
<><> ocaml-migrate-parsetree.2.1.0 installed successfully <><><><><><><><><><><>
=> Note: This package is deprecated.
<><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 11:06.17 ---> saved as "e7074714c75b84abdbbf3a6201f8f8d5bb826e074aba1fc12d929aa98ac1f327"
Job succeeded
2026-04-10 11:06.22: Job succeeded