Build:
  1. 0
2026-03-02 19:23.54: New job: test qcow-tool.0.12.1 with dune.3.22.0~alpha0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
                              on debian-13-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/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
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 dune.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
    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" != 'dune.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall qcow-tool.0.12.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 "\"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.12.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 qcow-tool.0.12.1) || true
RUN opam reinstall --with-test --verbose qcow-tool.0.12.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 "\"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.12.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-03-02 19:23.54: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-qcow-tool.0.12.1-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:23.54: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
 (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 dune.3.22.0~alpha0 3.22.0~alpha0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.0~alpha0;\
             \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\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall qcow-tool.0.12.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 \"\\\"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.12.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 qcow-tool.0.12.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose qcow-tool.0.12.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 \"\\\"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.12.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-03-02 19:23.54: Waiting for resource in pool OCluster
2026-03-03 04:13.00: Waiting for worker…
2026-03-03 04:14.59: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
 .../chrome-trace/chrome-trace.3.22.0~alpha0/opam   | 39 +++++++++++
 .../dune-action-plugin.3.22.0~alpha0/opam          | 52 +++++++++++++++
 .../dune-action-trace.3.22.0~alpha0/opam           | 40 ++++++++++++
 .../dune-build-info.3.22.0~alpha0/opam             | 45 +++++++++++++
 .../dune-configurator.3.22.0~alpha0/opam           | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.0~alpha0/opam    | 42 ++++++++++++
 .../dune-private-libs.3.22.0~alpha0/opam           | 50 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam   | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam      | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.0~alpha0/opam    | 37 +++++++++++
 packages/dune/dune.3.22.0~alpha0/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.0~alpha0/opam                | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.0~alpha0/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam  | 43 +++++++++++++
 packages/ordering/ordering.3.22.0~alpha0/opam      | 38 +++++++++++
 packages/stdune/stdune.3.22.0~alpha0/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.22.0~alpha0/opam     | 38 +++++++++++
 packages/xdg/xdg.3.22.0~alpha0/opam                | 39 +++++++++++
 18 files changed, 797 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
 create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
 create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
 create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
 create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
 create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
 create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
 create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
 create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 04:15.05 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" 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-03-03 04:15.05 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" 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-03-03 04:15.05 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" 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.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-03-03 04:15.05 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" 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-03-03 04:15.05 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 04:15.05 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 04:15.05 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" 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 [113 kB]
- Fetched 203 kB in 0s (1833 kB/s)
- Reading package lists...
2026-03-03 04:15.05 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 04:15.05 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.0~alpha0;\
                        \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\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.0~alpha0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0  (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:15.05 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall qcow-tool.0.12.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 \"\\\"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.12.1' && 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.12.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 uri]
  - install asetmap                   0.8.1         [required by prometheus]
  - install astring                   0.8.5         [required by qcow-tool]
  - install base                      v0.16.4       [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 dune-configurator         3.22.0~alpha0 [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.10.0        [required by qcow-tool]
  - install lwt                       6.1.1         [required by qcow-tool]
  - 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.16.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.16.0       [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.12.1        [required by qcow-tool]
  - install qcow-stream               0.12.1        [required by qcow-tool]
  - install qcow-tool                 0.12.1
  - install qcow-types                0.12.1        [required by qcow, qcow-stream]
  - install re                        1.14.0        [required by prometheus]
  - install result                    1.5           [required by qcow-tool]
  - install rresult                   0.7.0         [required by mirage-block-unix]
  - install sexplib                   v0.16.0       [required by qcow-tool]
  - install sexplib0                  v0.16.0       [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+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asetmap.0.8.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (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)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0  (cached)
-> installed conf-pkg-config.4
-> installed conf-linux-libc-dev.0
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0~alpha0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved io-page.3.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.1.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)
-> installed cmdliner.1.3.0
-> installed cppo.1.8.0
-> installed dune-configurator.3.22.0~alpha0
-> installed duration.0.2.1
-> 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.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved prometheus.1.3  (cached)
-> retrieved qcow.0.12.1, qcow-stream.0.12.1, qcow-tool.0.12.1, qcow-types.0.12.1  (cached)
-> installed bigstringaf.0.10.0
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (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 result.1.5
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed sexplib0.v0.16.0
-> installed num.1.6
-> installed angstrom.0.16.1
-> installed re.1.14.0
-> installed sha.1.15.4
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed uri.4.4.0
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed lwt.6.1.1
-> installed mirage-sleep.4.1.0
-> 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 cstruct.6.2.0
-> installed prometheus.1.3
-> installed mirage-block.3.0.2
-> installed cstruct-lwt.6.2.0
-> installed io-page.3.0.0
-> installed logs.0.10.0
-> installed mirage-block-combinators.3.0.2
-> installed mirage-block-unix.2.14.2
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed qcow-types.0.12.1
-> installed qcow-stream.0.12.1
-> installed qcow.0.12.1
-> installed qcow-tool.0.12.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:15.34 ---> saved as "a0be6c9d5383f1be885a8367750d0be734a3ea861d3eb8d99159fe9380971e9e"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test qcow-tool.0.12.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile qcow-tool            0.12.1
=== install 9 packages
  - install   conf-qemu-img        1      [required by qcow-tool]
  - install   ezjsonm              1.3.0  [required by qcow-tool]
  - install   hex                  1.5.0  [required by ezjsonm]
  - install   jsonm                1.0.2  [required by ezjsonm]
  - install   mirage-block-ramdisk 0.6    [required by qcow-tool]
  - install   ounit                2.2.7  [required by qcow-tool]
  - install   ounit2               2.2.7  [required by ounit]
  - install   seq                  base   [required by ounit2]
  - install   uutf                 1.0.4  [required by ezjsonm]

The following system packages will first need to be installed:
    qemu-utils

<><> 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" "qemu-utils"
- Selecting previously unselected package libdevmapper1.02.1: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 ... 20660 files and directories currently installed.)
- Preparing to unpack .../00-libdevmapper1.02.1_2%3a1.02.205-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../01-dmsetup_2%3a1.02.205-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.205-2) ...
- Selecting previously unselected package libnl-3-200:amd64.
- Preparing to unpack .../02-libnl-3-200_3.7.0-2_amd64.deb ...
- Unpacking libnl-3-200:amd64 (3.7.0-2) ...
- Selecting previously unselected package libnl-route-3-200:amd64.
- Preparing to unpack .../03-libnl-route-3-200_3.7.0-2_amd64.deb ...
- Unpacking libnl-route-3-200:amd64 (3.7.0-2) ...
- Selecting previously unselected package libibverbs1:amd64.
- Preparing to unpack .../04-libibverbs1_56.1-1_amd64.deb ...
- Unpacking libibverbs1:amd64 (56.1-1) ...
- Selecting previously unselected package ibverbs-providers:amd64.
- Preparing to unpack .../05-ibverbs-providers_56.1-1_amd64.deb ...
- Unpacking ibverbs-providers:amd64 (56.1-1) ...
- Selecting previously unselected package libaio1t64:amd64.
- Preparing to unpack .../06-libaio1t64_0.3.113-8+b1_amd64.deb ...
- Unpacking libaio1t64:amd64 (0.3.113-8+b1) ...
- Selecting previously unselected package libblkio1:amd64.
- Preparing to unpack .../07-libblkio1_1.5.0-2_amd64.deb ...
- Unpacking libblkio1:amd64 (1.5.0-2) ...
- Selecting previously unselected package libboost-iostreams1.83.0:amd64.
- Preparing to unpack .../08-libboost-iostreams1.83.0_1.83.0-4.2_amd64.deb ...
- Unpacking libboost-iostreams1.83.0:amd64 (1.83.0-4.2) ...
- Selecting previously unselected package libboost-thread1.83.0:amd64.
- Preparing to unpack .../09-libboost-thread1.83.0_1.83.0-4.2_amd64.deb ...
- Unpacking libboost-thread1.83.0:amd64 (1.83.0-4.2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../10-libjson-c5_0.18+ds-1_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.18+ds-1) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../11-libcryptsetup12_2%3a2.7.5-2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.7.5-2) ...
- Selecting previously unselected package libfmt10:amd64.
- Preparing to unpack .../12-libfmt10_10.1.1+ds1-4_amd64.deb ...
- Unpacking libfmt10:amd64 (10.1.1+ds1-4) ...
- Selecting previously unselected package libfuse3-4:amd64.
- Preparing to unpack .../13-libfuse3-4_3.17.2-3_amd64.deb ...
- Unpacking libfuse3-4:amd64 (3.17.2-3) ...
- Selecting previously unselected package libtirpc-common.
- Preparing to unpack .../14-libtirpc-common_1.3.6+ds-1_all.deb ...
- Unpacking libtirpc-common (1.3.6+ds-1) ...
- Selecting previously unselected package libtirpc3t64:amd64.
- Preparing to unpack .../15-libtirpc3t64_1.3.6+ds-1_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
- Unpacking libtirpc3t64:amd64 (1.3.6+ds-1) ...
- Selecting previously unselected package libgfxdr0:amd64.
- Preparing to unpack .../16-libgfxdr0_11.1-6_amd64.deb ...
- Unpacking libgfxdr0:amd64 (11.1-6) ...
- Selecting previously unselected package libglusterfs0:amd64.
- Preparing to unpack .../17-libglusterfs0_11.1-6_amd64.deb ...
- Unpacking libglusterfs0:amd64 (11.1-6) ...
- Selecting previously unselected package libgfrpc0:amd64.
- Preparing to unpack .../18-libgfrpc0_11.1-6_amd64.deb ...
- Unpacking libgfrpc0:amd64 (11.1-6) ...
- Selecting previously unselected package libgfapi0:amd64.
- Preparing to unpack .../19-libgfapi0_11.1-6_amd64.deb ...
- Unpacking libgfapi0:amd64 (11.1-6) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../20-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../21-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...
- Selecting previously unselected package librdmacm1t64:amd64.
- Preparing to unpack .../22-librdmacm1t64_56.1-1_amd64.deb ...
- Unpacking librdmacm1t64:amd64 (56.1-1) ...
- Selecting previously unselected package libiscsi7:amd64.
- Preparing to unpack .../23-libiscsi7_1.20.0-4_amd64.deb ...
- Unpacking libiscsi7:amd64 (1.20.0-4) ...
- Selecting previously unselected package libnfs14:amd64.
- Preparing to unpack .../24-libnfs14_5.0.2-1+b2_amd64.deb ...
- Unpacking libnfs14:amd64 (5.0.2-1+b2) ...
- Selecting previously unselected package libnuma1:amd64.
- Preparing to unpack .../25-libnuma1_2.0.19-1_amd64.deb ...
- Unpacking libnuma1:amd64 (2.0.19-1) ...
- Selecting previously unselected package librados2.
- Preparing to unpack .../26-librados2_18.2.7+ds-1_amd64.deb ...
- Unpacking librados2 (18.2.7+ds-1) ...
- Selecting previously unselected package librbd1.
- Preparing to unpack .../27-librbd1_18.2.7+ds-1_amd64.deb ...
- Unpacking librbd1 (18.2.7+ds-1) ...
- Selecting previously unselected package libssh-4:amd64.
- Preparing to unpack .../28-libssh-4_0.11.2-1+deb13u1_amd64.deb ...
- Unpacking libssh-4:amd64 (0.11.2-1+deb13u1) ...
- Selecting previously unselected package liburing2:amd64.
- Preparing to unpack .../29-liburing2_2.9-1_amd64.deb ...
- Unpacking liburing2:amd64 (2.9-1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../30-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package qemu-utils.
- Preparing to unpack .../31-qemu-utils_1%3a10.0.7+ds-0+deb13u1+b1_amd64.deb ...
- Unpacking qemu-utils (1:10.0.7+ds-0+deb13u1+b1) ...
- Selecting previously unselected package qemu-block-extra.
- Preparing to unpack .../32-qemu-block-extra_1%3a10.0.7+ds-0+deb13u1+b1_amd64.deb ...
- Unpacking qemu-block-extra (1:10.0.7+ds-0+deb13u1+b1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../33-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../34-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libtirpc-common (1.3.6+ds-1) ...
- Setting up libboost-thread1.83.0:amd64 (1.83.0-4.2) ...
- Setting up libnfs14:amd64 (5.0.2-1+b2) ...
- Setting up libglusterfs0:amd64 (11.1-6) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...
- Setting up libboost-iostreams1.83.0:amd64 (1.83.0-4.2) ...
- Setting up libssh-4:amd64 (0.11.2-1+deb13u1) ...
- Setting up libnuma1:amd64 (2.0.19-1) ...
- Setting up libaio1t64:amd64 (0.3.113-8+b1) ...
- Setting up libblkio1:amd64 (1.5.0-2) ...
- Setting up libnl-3-200:amd64 (3.7.0-2) ...
- Setting up libfuse3-4:amd64 (3.17.2-3) ...
- Setting up liburing2:amd64 (2.9-1) ...
- Setting up libjson-c5:amd64 (0.18+ds-1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libfmt10:amd64 (10.1.1+ds1-4) ...
- Setting up libtirpc3t64:amd64 (1.3.6+ds-1) ...
- Setting up libnl-route-3-200:amd64 (3.7.0-2) ...
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up qemu-utils (1:10.0.7+ds-0+deb13u1+b1) ...
- Setting up libgfxdr0:amd64 (11.1-6) ...
- Setting up libibverbs1:amd64 (56.1-1) ...
- Setting up ibverbs-providers:amd64 (56.1-1) ...
- Setting up librdmacm1t64:amd64 (56.1-1) ...
- Setting up libiscsi7:amd64 (1.20.0-4) ...
- Setting up libgfrpc0:amd64 (11.1-6) ...
- Setting up librados2 (18.2.7+ds-1) ...
- Setting up libgfapi0:amd64 (11.1-6) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Setting up dmsetup (2:1.02.205-2) ...
- Setting up libcryptsetup12:amd64 (2:2.7.5-2) ...
- Setting up librbd1 (18.2.7+ds-1) ...
- Setting up qemu-block-extra (1:10.0.7+ds-0+deb13u1+b1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-qemu-img.1
-> retrieved ezjsonm.1.3.0  (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 mirage-block-ramdisk.0.6  (https://opam.ocaml.org/cache)
-> installed hex.1.5.0
-> retrieved ounit.2.2.7, ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> installed mirage-block-ramdisk.0.6
-> retrieved qcow-tool.0.12.1  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ounit2.2.2.7
-> installed ounit.2.2.7
-> removed   qcow-tool.0.12.1
-> installed uutf.1.0.4
-> installed jsonm.1.0.2
-> installed ezjsonm.1.3.0
-> installed qcow-tool.0.12.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:15.48 ---> saved as "8eff0abbdbfdaed112198c756e0599431e651e3842d6dccc216e97c46aff0cf2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose qcow-tool.0.12.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 \"\\\"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.12.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 qcow-tool 0.12.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [qcow-tool.0.12.1: extract]
-> retrieved qcow-tool.0.12.1  (cached)
Processing  2/4: [qcow-tool: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "qcow-tool" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/qcow-tool.0.12.1)
-> compiled  qcow-tool.0.12.1
-> removed   qcow-tool.0.12.1
-> installed qcow-tool.0.12.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:15.53 ---> saved as "214e097144bee86e6be3b293aa00b424a7aaab525b2e8b39220e68a90b772a6e"
Job succeeded
2026-03-03 04:15.59: Job succeeded