Build:
  1. 0
2026-04-15 15:53.31: New job: test qcow-types.0.14.0, using opam 2.0
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29696/head (7faf26029e4ac93524b9e6cd37278d774e6fb56d)
                              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/29696/head" && git reset --hard 7faf2602
git fetch origin master
git merge --no-edit d1c96c8e211dddd369fb445f0e7348fb9cffad4a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn qcow-types.0.14.0 0.14.0
RUN opam depext qcow-types.0.14.0 && opam reinstall qcow-types.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-types.0.14.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam depext --with-test qcow-types.0.14.0 && opam reinstall --with-test qcow-types.0.14.0) || true
RUN opam depext --with-test qcow-types.0.14.0 && opam reinstall --with-test --verbose qcow-types.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-types.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-15 15:53.31: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126-qcow-types.0.14.0-7faf26029e4ac93524b9e6cd37278d774e6fb56d"
2026-04-15 15:53.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "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 depext -u || true"))
 (run (shell "opam pin add -k version -yn qcow-types.0.14.0 0.14.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam depext qcow-types.0.14.0 && opam reinstall qcow-types.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-types.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"))
 (run (network host)
      (shell "(opam depext --with-test qcow-types.0.14.0 && opam reinstall --with-test qcow-types.0.14.0) || true"))
 (run (shell  "opam depext --with-test qcow-types.0.14.0 && opam reinstall --with-test --verbose qcow-types.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-types.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-15 15:53.31: Waiting for resource in pool OCluster
2026-04-15 15:53.35: Waiting for worker…
2026-04-15 15:56.39: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  77% (14517/18738)
Updating files:  78% (14616/18738)
Updating files:  79% (14804/18738)
Updating files:  80% (14991/18738)
Updating files:  81% (15178/18738)
Updating files:  82% (15366/18738)
Updating files:  83% (15553/18738)
Updating files:  84% (15740/18738)
Updating files:  85% (15928/18738)
Updating files:  86% (16115/18738)
Updating files:  87% (16303/18738)
Updating files:  88% (16490/18738)
Updating files:  89% (16677/18738)
Updating files:  90% (16865/18738)
Updating files:  91% (17052/18738)
Updating files:  92% (17239/18738)
Updating files:  93% (17427/18738)
Updating files:  94% (17614/18738)
Updating files:  95% (17802/18738)
Updating files:  96% (17989/18738)
Updating files:  97% (18176/18738)
Updating files:  98% (18364/18738)
Updating files:  99% (18551/18738)
Updating files: 100% (18738/18738)
Updating files: 100% (18738/18738), done.
HEAD is now at d1c96c8e21 Merge pull request #29725 from kit-ty-kate/fix-conf-clang-alpine
Updating d1c96c8e21..7faf26029e
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.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126' locally
docker.io/ocaml/opam@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
9cb5e198c8cf: Already exists
2d346d36dcf2: Already exists
cdc35e289b8d: Already exists
aeb7244bb580: Already exists
fc1943254a0d: Already exists
84238c416f8e: Already exists
fbbfe75d3112: Already exists
221fdc5d9929: Already exists
1fec9149b52a: Already exists
9c6e52557f24: Already exists
8737f5036aae: Already exists
d69c4074de14: Already exists
7237152a5f04: Already exists
fba4b414d8a0: Already exists
40d552afb3ef: Already exists
077cc17dc8e4: Already exists
077cc17dc8e4: Already exists
169e1be36a55: Already exists
0a8a005097ab: Already exists
caba3ec4b361: Already exists
6a364dc641f8: Already exists
4f4fb700ef54: Already exists
ab8052928cdc: Already exists
f5717a28dd6a: Already exists
79233a9b9bed: Already exists
d832d53e7392: Already exists
1872dad82243: Already exists
bfd849b08ba7: Already exists
834a8024ef15: Already exists
98ccec79258b: Already exists
fb48f36a0542: Already exists
3688b13db8e7: Already exists
a5c099f5f72c: Already exists
1ff1760de5b0: Already exists
98eec6764aa5: Already exists
aa22ae69debd: Already exists
12bfb7b962a2: Already exists
ec25ce9bb816: Already exists
beadd3cf7357: Already exists
d0d0c65a426d: Already exists
27080da82c6b: Pulling fs layer
3b99adeb504e: Pulling fs layer
867c8a52ad10: Pulling fs layer
01ca275a6ca2: Pulling fs layer
01ca275a6ca2: Waiting
3b99adeb504e: Verifying Checksum
3b99adeb504e: Download complete
867c8a52ad10: Verifying Checksum
867c8a52ad10: Download complete
01ca275a6ca2: Verifying Checksum
01ca275a6ca2: Download complete
27080da82c6b: Verifying Checksum
27080da82c6b: Download complete
27080da82c6b: Pull complete
3b99adeb504e: Pull complete
867c8a52ad10: Pull complete
01ca275a6ca2: Pull complete
Digest: sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
Status: Downloaded newer image for ocaml/opam@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
2026-04-15 15:56.45 ---> using "d0e330c08fa445d83f06df86dbe749aac73c20b9c3be340824d01a143f189b82" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2026-04-15 15:56.45 ---> using "a2c12aa532565d8262573e3b00749472cd3c2e397bdc1b5509404115d8d261c9" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.

[WARNING] Recommended dependencies -- most packages rely on these:
  - m4

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-15 15:56.45 ---> using "9554f9202e4d6b44da18c2432b66aa1eda54c60769ff73b6a761d9f202c03029" from cache

/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version      2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b) 
# self-upgrade      no
# system            arch=x86_64 os=linux os-distribution=debian os-version=13
# solver            builtin-mccs+glpk
# install-criteria  -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria  -removed,-count[version-lag,solution],-new
# jobs              71
# repositories      1 (version-controlled)
# pinned            1 (version)
# current-switch    4.14
2026-04-15 15:56.45 ---> using "6235567b5238f3693abe1505a2268ad422eff9b82aa1d580b2604a7392c34483" 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-15 15:56.45 ---> using "8be38d6536bf49f540d11802ef16122e9bd9b94289867e09981eeff045be74af" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-15 15:57.05 ---> saved as "30c64eb291002758e2e8d75007be59529c2a9b959767311cd52aafaca6121b94"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-15 15:57.21 ---> saved as "9fabeb7cfe1a7cd6cba3b02b633e76c5320953c28e71fb902c416d12f6f2f37d"

/home/opam: (run (network host)
                 (shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "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 [123 kB]
Fetched 213 kB in 0s (1570 kB/s)
Reading package lists...
# OS package update successful
2026-04-15 15:57.24 ---> saved as "c04657b3bf4f5b3204240695de616ee006cd44d714b757d93a2f226c8ce3ac74"

/home/opam: (run (shell "opam pin add -k version -yn qcow-types.0.14.0 0.14.0"))
qcow-types is now pinned to version 0.14.0
2026-04-15 15:57.24 ---> saved as "a8c0e1ba3d024a03207850ee5aeb62f2106d2f04d1c1958576a5c38c4fc18707"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam depext qcow-types.0.14.0 && opam reinstall qcow-types.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-types.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"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
qcow-types.0.14.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install ocamlbuild          0.16.1  [required by astring, logs]
  - install dune                3.22.2  [required by qcow-types]
  - install num                 1.6     [required by sexplib]
  - install ocamlfind           1.9.8   [required by logs, astring, prometheus]
  - install stdlib-shims        0.3.0   [required by diet]
  - install sexplib0            v0.16.0 [required by ppx_sexp_conv, sexplib]
  - install ppx_derivers        1.2.1   [required by ppxlib]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install csexp               1.5.2   [required by dune-configurator]
  - install cppo                1.8.0   [required by lwt]
  - install topkg               1.1.1   [required by astring, logs]
  - install base-bytes          base    [required by ocplib-endian]
  - install diet                0.4     [required by qcow-types]
  - install parsexp             v0.16.0 [required by sexplib]
  - install ppxlib              0.35.0  [required by lwt_ppx, ppx_sexp_conv]
  - install dune-configurator   3.22.2  [required by lwt, base]
  - install fmt                 0.11.0  [required by mirage-block, cstruct, logs, prometheus]
  - install astring             0.8.5   [required by qcow-types]
  - install asetmap             0.8.1   [required by prometheus]
  - install ocplib-endian       1.2     [required by lwt]
  - install sexplib             v0.16.0 [required by qcow-types]
  - install base                v0.16.4 [required by ppx_sexp_conv]
  - install cstruct             6.2.0   [required by qcow-types]
  - install lwt                 5.9.2   [required by qcow-types]
  - install ppx_sexp_conv       v0.16.0 [required by qcow-types]
  - install prometheus          0.1     [required by qcow-types]
  - install mirage-block        3.0.2   [required by qcow-types]
  - install lwt_ppx             5.9.1   [required by qcow-types]
  - install logs                0.10.0  [required by qcow-types]
  - install qcow-types          0.14.0*
===== 30 to install =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[asetmap.0.8.1] found in cache
[astring.0.8.5] found in cache
[base.v0.16.4] found in cache
[cppo.1.8.0] found in cache
[csexp.1.5.2] found in cache
[cstruct.6.2.0] found in cache
[diet.0.4] found in cache
[dune.3.22.2] found in cache
[dune-configurator.3.22.2] found in cache
[fmt.0.11.0] found in cache
[logs.0.10.0] found in cache
[lwt.5.9.2] found in cache
[lwt_ppx.5.9.1] found in cache
[mirage-block.3.0.2] found in cache
[num.1.6] found in cache
[ocaml-compiler-libs.v0.12.4] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[ocplib-endian.1.2] found in cache
[parsexp.v0.16.0] found in cache
[ppx_derivers.1.2.1] found in cache
[ppx_sexp_conv.v0.16.0] found in cache
[ppxlib.0.35.0] found in cache
[prometheus.0.1] found in cache
[qcow-types.0.14.0] found in cache
[sexplib.v0.16.0] found in cache
[sexplib0.v0.16.0] found in cache
[stdlib-shims.0.3.0] found in cache
[topkg.1.1.1] found in cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> 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.22.2
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed sexplib0.v0.16.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed diet.0.4
-> installed dune-configurator.3.22.2
-> installed parsexp.v0.16.0
-> installed sexplib.v0.16.0
-> installed lwt.5.9.2
-> installed mirage-block.3.0.2
-> installed prometheus.0.1
-> 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.14.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-15 15:59.39 ---> saved as "e1af1677ffe94105f7c264b9dd44b87ce91eb15050b4ce978afeca496f37b35c"

/home/opam: (run (network host)
                 (shell "(opam depext --with-test qcow-types.0.14.0 && opam reinstall --with-test qcow-types.0.14.0) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
  - recompile qcow-types 0.14.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   qcow-types.0.14.0
-> installed qcow-types.0.14.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-15 15:59.54 ---> saved as "58782de9f096cf3213669b4397964c82c81ba5fa0ebfed2df58f78c9ce5c8228"

/home/opam: (run (shell  "opam depext --with-test qcow-types.0.14.0 && opam reinstall --with-test --verbose qcow-types.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-types.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"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
  - recompile qcow-types 0.14.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/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.14.0)
- (cd _build/default/lib && ../generator/gen.exe -o qcow_word_size.ml)
- On a 64-bit machine so using 'int' for clusters
-> compiled  qcow-types.0.14.0
-> removed   qcow-types.0.14.0
-> installed qcow-types.0.14.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-15 16:00.08 ---> saved as "3c9ce48eab41fe7d95d0c708c80f579ee5b171a3dba73937e4cf2efe5e33c6d3"
Job succeeded
2026-04-15 16:00.16: Job succeeded