(not at the head of any monitored branch or PR)
2026-04-10 16:24.54: New job: test qcow-tool.0.14.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29696/head (1f431665cd90223344508f34bdfcda13ee53e31d)
                              on macos-homebrew-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 1f431665
git fetch origin master
git merge --no-edit 91847e31fddc23e6f92e1c4f4ac5a1fe96c2a8a3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --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 "\"macos-homebrew\""; 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
RUN (opam reinstall --with-test qcow-tool.0.14.0) || true
RUN opam reinstall --with-test --verbose 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 "\"macos-homebrew\""; 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 16:24.54: Using cache hint "macos-homebrew-ocaml-4.14-qcow-tool.0.14.0-1f431665cd90223344508f34bdfcda13ee53e31d"
2026-04-10 16:24.54: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 -k local --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 /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (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 \"\\\"macos-homebrew\\\"\"; 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"))
 (run (network host)
      (shell "(opam reinstall --with-test qcow-tool.0.14.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose 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 \"\\\"macos-homebrew\\\"\"; 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 16:24.54: Waiting for resource in pool OCluster
2026-04-10 16:24.55: Waiting for worker…
2026-04-10 16:36.46: Got resource from pool OCluster
Building on i7-worker-03
Updating files:  31% (5805/18672)
Updating files:  32% (5976/18672)
Updating files:  33% (6162/18672)
Updating files:  34% (6349/18672)
Updating files:  35% (6536/18672)
Updating files:  36% (6722/18672)
Updating files:  37% (6909/18672)
Updating files:  38% (7096/18672)
Updating files:  39% (7283/18672)
Updating files:  40% (7469/18672)
Updating files:  41% (7656/18672)
Updating files:  42% (7843/18672)
Updating files:  43% (8029/18672)
Updating files:  44% (8216/18672)
Updating files:  45% (8403/18672)
Updating files:  46% (8590/18672)
Updating files:  47% (8776/18672)
Updating files:  48% (8963/18672)
Updating files:  49% (9150/18672)
Updating files:  50% (9336/18672)
Updating files:  51% (9523/18672)
Updating files:  52% (9710/18672)
Updating files:  53% (9897/18672)
Updating files:  54% (10083/18672)
Updating files:  55% (10270/18672)
Updating files:  55% (10288/18672)
Updating files:  56% (10457/18672)
Updating files:  57% (10644/18672)
Updating files:  58% (10830/18672)
Updating files:  59% (11017/18672)
Updating files:  60% (11204/18672)
Updating files:  61% (11390/18672)
Updating files:  62% (11577/18672)
Updating files:  63% (11764/18672)
Updating files:  64% (11951/18672)
Updating files:  65% (12137/18672)
Updating files:  66% (12324/18672)
Updating files:  67% (12511/18672)
Updating files:  68% (12697/18672)
Updating files:  69% (12884/18672)
Updating files:  70% (13071/18672)
Updating files:  71% (13258/18672)
Updating files:  72% (13444/18672)
Updating files:  73% (13631/18672)
Updating files:  74% (13818/18672)
Updating files:  75% (14004/18672)
Updating files:  76% (14191/18672)
Updating files:  77% (14378/18672)
Updating files:  78% (14565/18672)
Updating files:  79% (14751/18672)
Updating files:  80% (14938/18672)
Updating files:  81% (15125/18672)
Updating files:  81% (15230/18672)
Updating files:  82% (15312/18672)
Updating files:  83% (15498/18672)
Updating files:  84% (15685/18672)
Updating files:  85% (15872/18672)
Updating files:  86% (16058/18672)
Updating files:  87% (16245/18672)
Updating files:  88% (16432/18672)
Updating files:  89% (16619/18672)
Updating files:  90% (16805/18672)
Updating files:  91% (16992/18672)
Updating files:  92% (17179/18672)
Updating files:  93% (17365/18672)
Updating files:  94% (17552/18672)
Updating files:  95% (17739/18672)
Updating files:  96% (17926/18672)
Updating files:  97% (18112/18672)
Updating files:  98% (18299/18672)
Updating files:  99% (18486/18672)
Updating files: 100% (18672/18672)
Updating files: 100% (18672/18672), done.
HEAD is now at 1534cab3e7 Merge commit '6b2464946e569e2d90f4b72ef1fe7f0196f077a4'
HEAD is now at 91847e31fd Merge pull request #29695 from dinosaure/release-flux-v0.0.1_beta4
Merge made by the 'ort' strategy.
 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 macos-homebrew-ocaml-4.14)
2026-04-10 16:37.01 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-04-10 16:37.02 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-04-10 16:37.02 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (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=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 11
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "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       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-04-10 16:37.02 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-04-10 16:37.03 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-04-10 16:37.13 ---> saved as "a9e3724e9e51be9d6475873a4cd24a3bf5d14738eabaabd900617f04edf58fe0"

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-04-10 16:37.34 ---> saved as "1c005b34a5798e53ba667201a4d2c2a79559c204bb0ecab5b96f23f103719d73"

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:7c7830166a509857669c544dcba7a0d08ca656a3da073c68826ca0a5b1b56b12
- #=#=#                                                                          

                                                                           0.1%
                                                                           0.5%
                                                                           0.8%
                                                                           1.3%
- 
#                                                                          1.9%
#                                                                          2.3%
#                                                                          2.7%
##                                                                         2.9%
##                                                                         3.3%
##                                                                         3.6%
##                                                                         3.9%
##                                                                         4.1%
###                                                                        4.4%
###                                                                        4.7%
- 
###                                                                        5.1%
###                                                                        5.3%
####                                                                       5.6%
####                                                                       5.9%
####                                                                       6.1%
####                                                                       6.4%
####                                                                       6.7%
#####                                                                      7.1%
#####                                                                      7.3%
#####                                                                      7.6%
- 
#####                                                                      7.9%
#####                                                                      8.1%
######                                                                     8.5%
######                                                                     8.8%
######                                                                     9.0%
######                                                                     9.3%
######                                                                     9.6%
#######                                                                   10.0%
#######                                                                   10.2%
#######                                                                   10.5%
#######                                                                   10.8%
- 
########                                                                  11.2%
########                                                                  11.4%
########                                                                  11.7%
########                                                                  12.0%
########                                                                  12.2%
#########                                                                 12.5%
#########                                                                 12.9%
#########                                                                 13.2%
#########                                                                 13.4%
#########                                                                 13.7%
- 
##########                                                                14.0%
##########                                                                14.2%
##########                                                                14.5%
##########                                                                14.9%
##########                                                                15.2%
###########                                                               15.4%
###########                                                               15.7%
###########                                                               16.0%
###########                                                               16.2%
###########                                                               16.5%
############                                                              16.9%
- 
############                                                              17.2%
############                                                              17.4%
############                                                              17.7%
############                                                              18.0%
#############                                                             18.4%
#############                                                             18.6%
#############                                                             18.9%
#############                                                             19.2%
#############                                                             19.4%
##############                                                            19.7%
##############                                                            20.0%
- 
##############                                                            20.2%
##############                                                            20.6%
###############                                                           20.9%
###############                                                           21.2%
###############                                                           21.4%
###############                                                           21.8%
###############                                                           22.1%
################                                                          22.4%
################                                                          22.6%
################                                                          22.9%
- 
################                                                          23.2%
################                                                          23.4%
#################                                                         23.8%
#################                                                         24.1%
#################                                                         24.4%
#################                                                         24.6%
##################                                                        25.0%
##################                                                        25.3%
##################                                                        25.6%
##################                                                        25.8%
##################                                                        26.1%
- 
##################                                                        26.4%
###################                                                       26.7%
###################                                                       27.0%
###################                                                       27.3%
###################                                                       27.5%
####################                                                      27.8%
####################                                                      28.1%
####################                                                      28.5%
####################                                                      28.7%
####################                                                      29.0%
- 
#####################                                                     29.3%
#####################                                                     29.7%
#####################                                                     29.9%
#####################                                                     30.2%
#####################                                                     30.5%
######################                                                    30.7%
######################                                                    31.0%
######################                                                    31.3%
######################                                                    31.7%
######################                                                    31.9%
#######################                                                   32.2%
- 
#######################                                                   32.5%
#######################                                                   32.7%
#######################                                                   33.0%
########################                                                  33.4%
########################                                                  33.8%
########################                                                  34.3%
#########################                                                 34.7%
#########################                                                 35.1%
#########################                                                 35.7%
#########################                                                 36.1%
##########################                                                36.5%
- 
##########################                                                36.9%
##########################                                                37.3%
###########################                                               37.7%
###########################                                               38.1%
###########################                                               38.6%
############################                                              39.0%
############################                                              39.4%
############################                                              39.8%
############################                                              40.2%
#############################                                             40.6%
#############################                                             41.1%
- 
#############################                                             41.5%
##############################                                            41.9%
##############################                                            42.3%
##############################                                            42.7%
###############################                                           43.1%
###############################                                           43.7%
###############################                                           44.0%
################################                                          44.4%
################################                                          45.0%
################################                                          45.4%
################################                                          45.8%
- 
#################################                                         46.2%
#################################                                         46.6%
#################################                                         47.0%
##################################                                        47.4%
##################################                                        47.9%
##################################                                        48.3%
###################################                                       48.7%
###################################                                       49.2%
###################################                                       49.6%
####################################                                      50.2%
####################################                                      51.0%
- 
#####################################                                     51.9%
#####################################                                     52.7%
######################################                                    53.5%
#######################################                                   54.4%
#######################################                                   55.2%
########################################                                  56.0%
########################################                                  56.8%
#########################################                                 57.8%
##########################################                                58.6%
##########################################                                59.4%
###########################################                               60.3%
- 
###########################################                               61.1%
############################################                              61.9%
############################################                              62.3%
#############################################                             62.7%
#############################################                             63.1%
#############################################                             63.5%
#############################################                             63.9%
##############################################                            64.4%
##############################################                            64.8%
###############################################                           65.3%
- 
###############################################                           65.7%
###############################################                           66.1%
###############################################                           66.5%
################################################                          66.9%
################################################                          67.5%
################################################                          67.9%
#################################################                         68.3%
#################################################                         68.7%
#################################################                         69.2%
##################################################                        69.6%
##################################################                        70.0%
- 
##################################################                        70.4%
##################################################                        70.8%
###################################################                       71.2%
###################################################                       71.7%
###################################################                       72.1%
####################################################                      72.5%
####################################################                      72.9%
####################################################                      73.3%
#####################################################                     73.9%
#####################################################                     74.3%
#####################################################                     74.7%
- 
######################################################                    75.2%
######################################################                    75.6%
######################################################                    76.0%
######################################################                    76.4%
#######################################################                   76.8%
#######################################################                   77.2%
#######################################################                   77.7%
########################################################                  78.1%
########################################################                  78.5%
########################################################                  78.9%
#########################################################                 79.4%
- 
#########################################################                 79.8%
#########################################################                 80.2%
##########################################################                80.6%
##########################################################                81.0%
##########################################################                81.4%
###########################################################               82.0%
###########################################################               82.4%
###########################################################               82.8%
###########################################################               83.2%
############################################################              83.6%
############################################################              84.0%
- 
############################################################              84.5%
#############################################################             84.9%
#############################################################             85.3%
#############################################################             85.7%
#############################################################             86.1%
##############################################################            86.5%
##############################################################            87.0%
##############################################################            87.4%
###############################################################           87.8%
###############################################################           88.2%
###############################################################           88.6%
- 
################################################################          89.2%
################################################################          89.6%
################################################################          90.0%
#################################################################         90.4%
#################################################################         90.8%
#################################################################         91.2%
##################################################################        91.7%
##################################################################        92.1%
##################################################################        92.5%
##################################################################        92.9%
###################################################################       93.3%
- 
###################################################################       93.7%
###################################################################       94.2%
####################################################################      94.6%
####################################################################      95.0%
####################################################################      95.4%
####################################################################      95.8%
#####################################################################     96.2%
#####################################################################     96.8%
#####################################################################     97.1%
######################################################################    97.5%
######################################################################    97.9%
- 
######################################################################    98.3%
#######################################################################   98.9%
#######################################################################   99.3%
#######################################################################   99.7%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.2_1.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-04-10 16:38.36 ---> saved as "5cc3531b88b1feaabc4cfa312a03309de21d703d6743de7630530e899d0155e4"

/: (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 16:38.38 ---> saved as "1d006603a68adb1b97fc01741baa82f91c615de46a1c4ce74f71f66c88d019c6"

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (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 \"\\\"macos-homebrew\\\"\"; 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 52 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-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.10.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.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.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.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:
    pkgconf

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew 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/local/bin/brew "install" "pkgconf"
- ==> Fetching downloads for: pkgconf
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle pkgconf (2.5.1)
- ==> Pouring pkgconf--2.5.1.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/pkgconf/2.5.1: 28 files, 383.2KB
- ==> Running `brew cleanup pkgconf`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).

<><> 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)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0  (cached)
-> 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.10.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.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)
-> 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  (cached)
-> 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 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 stdlib-shims.0.3.0
-> installed duration.0.2.1
-> installed result.1.5
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed diet.0.4
-> installed sha.1.15.4
-> installed stringext.1.6.0
-> installed sexplib0.v0.16.0
-> installed re.1.14.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed cstruct.6.2.0
-> installed cppo.1.8.0
-> installed io-page.3.0.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.22.1
-> installed parsexp.v0.16.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed sexplib.v0.16.0
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed cstruct-lwt.6.2.0
-> installed mirage-block.3.0.2
-> installed mirage-sleep.4.1.0
-> installed prometheus.1.3
-> installed logs.0.10.0
-> installed base.v0.16.4
-> installed mirage-block-unix.2.14.2
-> installed mirage-block-combinators.3.0.2
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> 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 16:40.49 ---> saved as "1ff2cfa7ad0c13cd090e3829dd30343cbcd64c268d1ef2cafa55b5ae6a348f0a"

/: (run (network host)
        (shell "(opam reinstall --with-test qcow-tool.0.14.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile qcow-tool            0.14.0 (pinned)
=== 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

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew 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/local/bin/brew "install" "qemu"
- ==> Fetching downloads for: qemu
- ✔︎ Bottle Manifest qemu (10.2.2)
- ✔︎ Bottle Manifest libunistring (1.4.2)
- ✔︎ Bottle Manifest gettext (1.0)
- ✔︎ Bottle Manifest capstone (5.0.7)
- ✔︎ Bottle Manifest dtc (1.7.2)
- ✔︎ Bottle Manifest pcre2 (10.47_1)
- ✔︎ Bottle Manifest glib (2.88.0)
- ✔︎ Bottle Manifest ca-certificates (2026-03-19)
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest libidn2 (2.3.8)
- ✔︎ Bottle Manifest libtasn1 (4.21.0)
- ✔︎ Bottle Manifest nettle (3.10.2)
- ✔︎ Bottle Manifest p11-kit (0.26.2)
- ✔︎ Bottle Manifest openssl@3 (3.6.2)
- ✔︎ Bottle Manifest libevent (2.1.12_1)
- ✔︎ Bottle Manifest libnghttp2 (1.68.1)
- ✔︎ Bottle Manifest unbound (1.24.2)
- ✔︎ Bottle Manifest jpeg-turbo (3.1.4.1)
- ✔︎ Bottle Manifest libpng (1.6.56)
- ✔︎ Bottle Manifest libslirp (4.9.1)
- ✔︎ Bottle Manifest libssh (0.12.0_1)
- ✔︎ Bottle Manifest libusb (1.0.29)
- ✔︎ Bottle Manifest gnutls (3.8.12)
- ✔︎ Bottle Manifest lzo (2.10)
- ✔︎ Bottle dtc (1.7.2)
- ✔︎ Bottle Manifest ncurses (6.6)
- ✔︎ Bottle Manifest pixman (0.46.4)
- ✔︎ Bottle ca-certificates (2026-03-19)
- ✔︎ Bottle Manifest snappy (1.2.2)
- ✔︎ Bottle libslirp (4.9.1)
- ✔︎ Bottle libnghttp2 (1.68.1)
- ✔︎ Bottle Manifest vde (2.3.3)
- ✔︎ Bottle libtasn1 (4.21.0)
- ✔︎ Bottle Manifest lz4 (1.10.0)
- ✔︎ Bottle snappy (1.2.2)
- ✔︎ Bottle Manifest xz (5.8.3)
- ✔︎ Bottle libusb (1.0.29)
- ✔︎ Bottle Manifest zstd (1.5.7_1)
- ✔︎ Bottle lzo (2.10)
- ✔︎ Bottle libidn2 (2.3.8)
- ✔︎ Bottle vde (2.3.3)
- ✔︎ Bottle libpng (1.6.56)
- ✔︎ Bottle libssh (0.12.0_1)
- ✔︎ Bottle pixman (0.46.4)
- ✔︎ Bottle libevent (2.1.12_1)
- ✔︎ Bottle lz4 (1.10.0)
- ✔︎ Bottle xz (5.8.3)
- ✔︎ Bottle nettle (3.10.2)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle p11-kit (0.26.2)
- ✔︎ Bottle zstd (1.5.7_1)
- ✔︎ Bottle jpeg-turbo (3.1.4.1)
- ✔︎ Bottle libunistring (1.4.2)
- ✔︎ Bottle pcre2 (10.47_1)
- ✔︎ Bottle ncurses (6.6)
- ✔︎ Bottle unbound (1.24.2)
- ✔︎ Bottle capstone (5.0.7)
- ✔︎ Bottle gnutls (3.8.12)
- ✔︎ Bottle glib (2.88.0)
- ✔︎ Bottle gettext (1.0)
- ✔︎ Bottle openssl@3 (3.6.2)
- ✔︎ Bottle qemu (10.2.2)
- ==> Installing dependencies for qemu: libunistring, gettext, capstone, dtc, pcre2, glib, ca-certificates, gmp, libidn2, libtasn1, nettle, p11-kit, openssl@3, libevent, libnghttp2, unbound, gnutls, jpeg-turbo, libpng, libslirp, libssh, libusb, lzo, ncurses, pixman, snappy, vde, lz4, xz and zstd
- ==> Installing qemu dependency: libunistring
- ==> Pouring libunistring--1.4.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libunistring/1.4.2: 59 files, 5.8MB
- ==> Installing qemu dependency: gettext
- ==> Pouring gettext--1.0.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/gettext/1.0: 2,499 files, 33.9MB
- ==> Installing qemu dependency: capstone
- ==> Pouring capstone--5.0.7.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/capstone/5.0.7: 31 files, 23MB
- ==> Installing qemu dependency: dtc
- ==> Pouring dtc--1.7.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/dtc/1.7.2: 19 files, 404.6KB
- ==> Installing qemu dependency: pcre2
- ==> Pouring pcre2--10.47_1.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/pcre2/10.47_1: 244 files, 7.3MB
- ==> Installing qemu dependency: glib
- ==> Pouring glib--2.88.0.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/glib/2.88.0: 506 files, 37MB
- ==> Installing qemu dependency: ca-certificates
- ==> Pouring ca-certificates--2026-03-19.all.bottle.tar.gz
- ==> Regenerating CA certificate bundle from keychain, this may take a while...
- 🍺  /usr/local/Cellar/ca-certificates/2026-03-19: 4 files, 237KB
- ==> Installing qemu dependency: gmp
- ==> Pouring gmp--6.3.0.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Installing qemu dependency: libidn2
- ==> Pouring libidn2--2.3.8.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libidn2/2.3.8: 80 files, 849.8KB
- ==> Installing qemu dependency: libtasn1
- ==> Pouring libtasn1--4.21.0.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libtasn1/4.21.0: 64 files, 545.7KB
- ==> Installing qemu dependency: nettle
- ==> Pouring nettle--3.10.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/nettle/3.10.2: 96 files, 2.6MB
- ==> Installing qemu dependency: p11-kit
- ==> Pouring p11-kit--0.26.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/p11-kit/0.26.2: 33 files, 4.3MB
- ==> Installing qemu dependency: openssl@3
- ==> Pouring openssl@3--3.6.2.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/openssl@3/3.6.2: 7,627 files, 37.8MB
- ==> Installing qemu dependency: libevent
- ==> Pouring libevent--2.1.12_1.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libevent/2.1.12_1: 58 files, 2.1MB
- ==> Installing qemu dependency: libnghttp2
- ==> Pouring libnghttp2--1.68.1.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libnghttp2/1.68.1: 14 files, 721.7KB
- ==> Installing qemu dependency: unbound
- ==> Pouring unbound--1.24.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/unbound/1.24.2: 59 files, 6.4MB
- ==> Installing qemu dependency: gnutls
- ==> Pouring gnutls--3.8.12.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/gnutls/3.8.12: 1,303 files, 11.3MB
- ==> Installing qemu dependency: jpeg-turbo
- ==> Pouring jpeg-turbo--3.1.4.1.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/jpeg-turbo/3.1.4.1: 47 files, 4.4MB
- ==> Installing qemu dependency: libpng
- ==> Pouring libpng--1.6.56.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libpng/1.6.56: 28 files, 1.3MB
- ==> Installing qemu dependency: libslirp
- ==> Pouring libslirp--4.9.1.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libslirp/4.9.1: 12 files, 352.8KB
- ==> Installing qemu dependency: libssh
- ==> Pouring libssh--0.12.0_1.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libssh/0.12.0_1: 25 files, 1.6MB
- ==> Installing qemu dependency: libusb
- ==> Pouring libusb--1.0.29.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/libusb/1.0.29: 23 files, 559.5KB
- ==> Installing qemu dependency: lzo
- ==> Pouring lzo--2.10.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/lzo/2.10: 32 files, 569KB
- ==> Installing qemu dependency: ncurses
- ==> Pouring ncurses--6.6.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/ncurses/6.6: 4,086 files, 9.8MB
- ==> Installing qemu dependency: pixman
- ==> Pouring pixman--0.46.4.sonoma.bottle.1.tar.gz
- 🍺  /usr/local/Cellar/pixman/0.46.4: 11 files, 1.5MB
- ==> Installing qemu dependency: snappy
- ==> Pouring snappy--1.2.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/snappy/1.2.2: 19 files, 144.2KB
- ==> Installing qemu dependency: vde
- ==> Pouring vde--2.3.3.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/vde/2.3.3: 67 files, 1.1MB
- ==> Installing qemu dependency: lz4
- ==> Pouring lz4--1.10.0.sequoia.bottle.1.tar.gz
- 🍺  /usr/local/Cellar/lz4/1.10.0: 24 files, 678.2KB
- ==> Installing qemu dependency: xz
- ==> Pouring xz--5.8.3.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/xz/5.8.3: 96 files, 2.5MB
- ==> Installing qemu dependency: zstd
- ==> Pouring zstd--1.5.7_1.sequoia.bottle.tar.gz
- 🍺  /usr/local/Cellar/zstd/1.5.7_1: 32 files, 2.5MB
- ==> Installing qemu
- ==> Pouring qemu--10.2.2.sonoma.bottle.tar.gz
- 🍺  /usr/local/Cellar/qemu/10.2.2: 172 files, 692.0MB
- ==> Running `brew cleanup qemu`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-qemu-img.1
-> retrieved ezjsonm.1.3.0  (https://github.com/mirage/ezjsonm/releases/download/v1.3.0/ezjsonm-1.3.0.tbz)
-> retrieved hex.1.5.0  (https://github.com/mirage/ocaml-hex/releases/download/v1.5.0/hex-1.5.0.tbz)
-> retrieved jsonm.1.0.2  (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> retrieved mirage-block-ramdisk.0.6  (https://github.com/mirage/mirage-block-ramdisk/releases/download/0.6/mirage-block-ramdisk-0.6.tbz)
-> installed hex.1.5.0
-> retrieved ounit.2.2.7, ounit2.2.2.7  (https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz)
-> installed mirage-block-ramdisk.0.6
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> removed   qcow-tool.0.14.0
-> installed uutf.1.0.4
-> installed ounit2.2.2.7
-> installed ounit.2.2.7
-> installed jsonm.1.0.2
-> installed ezjsonm.1.3.0
[ERROR] The compilation of qcow-tool.0.14.0 failed at "dune build -p qcow-tool -j 11 @install @runtest".

#=== ERROR while compiling qcow-tool.0.14.0 ===================================#
# context              2.5.0 | macos/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz)
# path                 ~/.opam/4.14.2/.opam-switch/build/qcow-tool.0.14.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p qcow-tool -j 11 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/qcow-tool-56916-0d7f4c.env
# output-file          ~/.opam/log/qcow-tool-56916-0d7f4c.out
### output ###
# File "cli/encode_decode.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/cli/encode_decode.t _build/default/cli/encode_decode.t.corrected
# diff --git a/_build/default/cli/encode_decode.t b/_build/default/cli/encode_decode.t.corrected
# index 3187e96..65f60ee 100644
# --- a/_build/default/cli/encode_decode.t
# +++ b/_build/default/cli/encode_decode.t.corrected
# @@ -33,6 +33,18 @@ Check a large sparse raw file (L1 table takes up more than one cluster)
#  
#  diff is very bad at large sparse files, use tar --sparse + md5sum (filename needs to be the same)
#    $ tar --mtime=@0 -c --sparse sparse.raw | md5sum > a
# +  tar: Option --mtime=@0 is not supported
# +  Usage:
# +    List:    tar -tf <archive-filename>
# +    Extract: tar -xf <archive-filename>
# +    Create:  tar -cf <archive-filename> [filenames...]
# +    Help:    tar --help
#    $ mv stream_sparse.raw sparse.raw
#    $ tar --mtime=@0 -c --sparse sparse.raw | md5sum > b
# +  tar: Option --mtime=@0 is not supported
# +  Usage:
# +    List:    tar -tf <archive-filename>
# +    Extract: tar -xf <archive-filename>
# +    Create:  tar -cf <archive-filename> [filenames...]
# +    Help:    tar --help
#    $ diff a b



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build qcow-tool 0.14.0
+- 
+- The following changes have been performed
| - remove  qcow-tool            0.14.0
| - install conf-qemu-img        1
| - install ezjsonm              1.3.0
| - install hex                  1.5.0
| - install jsonm                1.0.2
| - install mirage-block-ramdisk 0.6
| - install ounit                2.2.7
| - install ounit2               2.2.7
| - install seq                  base
| - install uutf                 1.0.4
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/local/bin/opam switch import "/Users/mac1000/.opam/4.14.2/.opam-switch/backup/state-20260410164050.export"
Or you can retry to install your package selection with:
    /usr/local/bin/opam install --restore
2026-04-10 16:46.47 ---> saved as "ae09ecae9340a56af905cb84f6c5ca23fc967c3f6d5194a1e1259950e0387d2b"

/: (run (shell  "opam reinstall --with-test --verbose 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 \"\\\"macos-homebrew\\\"\"; 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 1 package
  - install qcow-tool 0.14.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/3: [qcow-tool: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "qcow-tool" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/qcow-tool.0.14.0)
- File "cli/encode_decode.t", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/cli/encode_decode.t _build/default/cli/encode_decode.t.corrected
- diff --git a/_build/default/cli/encode_decode.t b/_build/default/cli/encode_decode.t.corrected
- index 3187e96..65f60ee 100644
- --- a/_build/default/cli/encode_decode.t
- +++ b/_build/default/cli/encode_decode.t.corrected
- @@ -33,6 +33,18 @@ Check a large sparse raw file (L1 table takes up more than one cluster)
-  
-  diff is very bad at large sparse files, use tar --sparse + md5sum (filename needs to be the same)
-    $ tar --mtime=@0 -c --sparse sparse.raw | md5sum > a
- +  tar: Option --mtime=@0 is not supported
- +  Usage:
- +    List:    tar -tf <archive-filename>
- +    Extract: tar -xf <archive-filename>
- +    Create:  tar -cf <archive-filename> [filenames...]
- +    Help:    tar --help
-    $ mv stream_sparse.raw sparse.raw
-    $ tar --mtime=@0 -c --sparse sparse.raw | md5sum > b
- +  tar: Option --mtime=@0 is not supported
- +  Usage:
- +    List:    tar -tf <archive-filename>
- +    Extract: tar -xf <archive-filename>
- +    Create:  tar -cf <archive-filename> [filenames...]
- +    Help:    tar --help
-    $ diff a b
[ERROR] The compilation of qcow-tool.0.14.0 failed at "dune build -p qcow-tool -j 11 @install @runtest".

#=== ERROR while compiling qcow-tool.0.14.0 ===================================#
# context              2.5.0 | macos/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz)
# path                 ~/.opam/4.14.2/.opam-switch/build/qcow-tool.0.14.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p qcow-tool -j 11 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/qcow-tool-63643-eaf8c0.env
# output-file          ~/.opam/log/qcow-tool-63643-eaf8c0.out
### output ###
# File "cli/encode_decode.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/cli/encode_decode.t _build/default/cli/encode_decode.t.corrected
# diff --git a/_build/default/cli/encode_decode.t b/_build/default/cli/encode_decode.t.corrected
# index 3187e96..65f60ee 100644
# --- a/_build/default/cli/encode_decode.t
# +++ b/_build/default/cli/encode_decode.t.corrected
# @@ -33,6 +33,18 @@ Check a large sparse raw file (L1 table takes up more than one cluster)
#  
#  diff is very bad at large sparse files, use tar --sparse + md5sum (filename needs to be the same)
#    $ tar --mtime=@0 -c --sparse sparse.raw | md5sum > a
# +  tar: Option --mtime=@0 is not supported
# +  Usage:
# +    List:    tar -tf <archive-filename>
# +    Extract: tar -xf <archive-filename>
# +    Create:  tar -cf <archive-filename> [filenames...]
# +    Help:    tar --help
#    $ mv stream_sparse.raw sparse.raw
#    $ tar --mtime=@0 -c --sparse sparse.raw | md5sum > b
# +  tar: Option --mtime=@0 is not supported
# +  Usage:
# +    List:    tar -tf <archive-filename>
# +    Extract: tar -xf <archive-filename>
# +    Create:  tar -cf <archive-filename> [filenames...]
# +    Help:    tar --help
#    $ diff a b



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build qcow-tool 0.14.0
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose qcow-tool.0.14.0' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose qcow-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 "\"macos-homebrew\""; 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" failed with exit status 1
2026-04-10 16:47.11: Job failed: Failed: Build failed
2026-04-10 16:47.11: Log analysis:
2026-04-10 16:47.11: >>> 
[ERROR] The compilation of qcow-tool.0.14.0 failed at "dune build -p qcow-tool -j 11 @install @runtest".
 (score = 20)
2026-04-10 16:47.11: >>> 
[ERROR] The compilation of qcow-tool.0.14.0 failed at "dune build -p qcow-tool -j 11 @install @runtest".
 (score = 20)
2026-04-10 16:47.11: The compilation of qcow-tool.0.14.0 failed at "dune build -p qcow-tool -j 11 @install @runtest".