(not at the head of any monitored branch or PR)
2026-03-16 19:16.01: New job: test shakuhachi.0.2.0 with dune.3.22.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
                              on debian-13-ocaml-5.4/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/29547/head" && git reset --hard 19c70fd6
git fetch origin master
git merge --no-edit 4f056bfedf536e66065c3783e694e6aa0b38261a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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~alpha2 3.22.0~alpha2
RUN opam reinstall dune.3.22.0~alpha2; \
    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~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall shakuhachi.0.2.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" != 'shakuhachi.0.2.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 shakuhachi.0.2.0) || true
RUN opam reinstall --with-test --verbose shakuhachi.0.2.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" != 'shakuhachi.0.2.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-03-16 19:16.01: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-dune.3.22.0~alpha2-shakuhachi.0.2.0-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:16.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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~alpha2 3.22.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.0~alpha2;\
             \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~alpha2' && 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 shakuhachi.0.2.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\" != 'shakuhachi.0.2.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 shakuhachi.0.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose shakuhachi.0.2.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\" != 'shakuhachi.0.2.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-03-16 19:16.01: Waiting for resource in pool OCluster
2026-03-17 02:21.26: Waiting for worker…
2026-03-17 02:23.41: Got resource from pool OCluster
Building on phoebe
All commits already cached
Updating files:  66% (12256/18461)
Updating files:  67% (12369/18461)
Updating files:  68% (12554/18461)
Updating files:  69% (12739/18461)
Updating files:  70% (12923/18461)
Updating files:  71% (13108/18461)
Updating files:  72% (13292/18461)
Updating files:  73% (13477/18461)
Updating files:  74% (13662/18461)
Updating files:  75% (13846/18461)
Updating files:  76% (14031/18461)
Updating files:  77% (14215/18461)
Updating files:  78% (14400/18461)
Updating files:  79% (14585/18461)
Updating files:  80% (14769/18461)
Updating files:  81% (14954/18461)
Updating files:  82% (15139/18461)
Updating files:  83% (15323/18461)
Updating files:  84% (15508/18461)
Updating files:  85% (15692/18461)
Updating files:  86% (15877/18461)
Updating files:  87% (16062/18461)
Updating files:  88% (16246/18461)
Updating files:  89% (16431/18461)
Updating files:  90% (16615/18461)
Updating files:  91% (16800/18461)
Updating files:  92% (16985/18461)
Updating files:  93% (17169/18461)
Updating files:  94% (17354/18461)
Updating files:  95% (17538/18461)
Updating files:  96% (17723/18461)
Updating files:  97% (17908/18461)
Updating files:  98% (18092/18461)
Updating files:  99% (18277/18461)
Updating files: 100% (18461/18461)
Updating files: 100% (18461/18461), done.
HEAD is now at 4f056bfedf Merge pull request #29543 from Zaneham/add-olint-0.1.0
Updating 4f056bfedf..19c70fd6a7
Fast-forward
 .../chrome-trace/chrome-trace.3.22.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.22.0~alpha2/opam          | 52 +++++++++++++++
 .../dune-action-trace.3.22.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.22.0~alpha2/opam             | 45 +++++++++++++
 .../dune-configurator.3.22.0~alpha2/opam           | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.22.0~alpha2/opam           | 50 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam   | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam      | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.0~alpha2/opam    | 37 +++++++++++
 packages/dune/dune.3.22.0~alpha2/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.0~alpha2/opam                | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam  | 43 +++++++++++++
 packages/ordering/ordering.3.22.0~alpha2/opam      | 38 +++++++++++
 packages/stdune/stdune.3.22.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.22.0~alpha2/opam     | 38 +++++++++++
 packages/xdg/xdg.3.22.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.22.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.22.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.22.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.22.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.22.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-17 02:24.32 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-17 02:24.32 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 02:24.32 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-17 02:24.32 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-17 02:24.32 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 02:24.34 ---> using "5aac9760b2a7888c5a0c51e12c4e2f8b78e92b665688f09ee1858f54c46e2fba" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 02:24.34 ---> using "eb2bdb7d05f153d109c9af88f52221b082fcc4d1be6951027ec15e8041a9f010" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 2s (5818 kB/s)
- Reading package lists...
- 
2026-03-17 02:24.34 ---> using "44c5375013a613ff9fdb37faa9a067ee60e0498629acd41e746d1271325aac5f" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
dune is now pinned to version 3.22.0~alpha2
2026-03-17 02:24.34 ---> using "c5266de2923995af5958824fa0bbd774e926b612e3108d8b694bf848e52cd8a4" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.0~alpha2;\
                        \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~alpha2' && 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~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha2  (cached)
-> installed dune.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 02:24.34 ---> using "594988136db5893b5885a5b5da12256dc2762c7912d3a5057429975bed9d7c1c" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall shakuhachi.0.2.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\" != 'shakuhachi.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
shakuhachi.0.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 40 packages
  - install angstrom            0.16.1        [required by shakuhachi]
  - install astring             0.8.5         [required by fpath]
  - install bigstringaf         0.10.0        [required by angstrom]
  - install cmdliner            2.1.0         [required by shakuhachi]
  - install conf-pkg-config     4             [required by conf-taglib_c, conf-sqlite3]
  - install conf-sqlite3        1             [required by sqlite3]
  - install conf-taglib_c       2             [required by otaglibc]
  - install cppo                1.8.0         [required by ppx_deriving]
  - install csexp               1.5.2         [required by dune-configurator]
  - install cstruct             6.2.0         [required by hex]
  - install dune-compiledb      0.6.0         [required by sqlite3]
  - install dune-configurator   3.22.0~alpha2 [required by otaglibc, sqlite3]
  - install ezjsonm             1.3.0         [required by dune-compiledb]
  - install fmt                 0.11.0        [required by cstruct]
  - install fpath               0.7.3         [required by dune-compiledb]
  - install hex                 1.5.0         [required by ezjsonm]
  - install jsonm               1.0.2         [required by ezjsonm]
  - install magic-mime          1.3.1         [required by shakuhachi]
  - install num                 1.6           [required by sexplib]
  - install ocaml-compiler-libs v0.17.0       [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0         [required by angstrom]
  - install ocamlbuild          0.16.1        [required by uunf]
  - install ocamlfind           1.9.8         [required by uunf]
  - install otaglibc            0.1.0         [required by shakuhachi]
  - install parsexp             v0.17.0       [required by sexplib]
  - install ppx_derivers        1.2.1         [required by ppx_deriving]
  - install ppx_deriving        6.1.1         [required by ppx_deriving_yojson]
  - install ppx_deriving_yojson 3.10.0        [required by shakuhachi]
  - install ppxlib              0.37.0        [required by ppx_deriving_yojson]
  - install re                  1.14.0        [required by shakuhachi]
  - install sexplib             v0.17.0       [required by dune-compiledb]
  - install sexplib0            v0.17.0       [required by dune-compiledb]
  - install shakuhachi          0.2.0
  - install sqlite3             5.4.0         [required by shakuhachi]
  - install stdlib-shims        0.3.0         [required by ppxlib]
  - install topkg               1.1.1         [required by uunf]
  - install uunf                17.0.0        [required by shakuhachi]
  - install uutf                1.0.4         [required by uunf]
  - install xdg                 3.22.0~alpha2 [required by shakuhachi]
  - install yojson              3.0.0         [required by shakuhachi]

The following system packages will first need to be installed:
    libsqlite3-dev libtag-c-dev 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" "libsqlite3-dev" "libtag-c-dev" "pkg-config"
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../libsqlite3-0_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-0:amd64 (3.46.1-7+deb13u1) over (3.46.1-7) ...
- Setting up libsqlite3-0:amd64 (3.46.1-7+deb13u1) ...
- 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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../1-libsqlite3-dev_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Selecting previously unselected package libtag2:amd64.
- Preparing to unpack .../2-libtag2_2.0.2-2_amd64.deb ...
- Unpacking libtag2:amd64 (2.0.2-2) ...
- Selecting previously unselected package libtag-c2:amd64.
- Preparing to unpack .../3-libtag-c2_2.0.2-2_amd64.deb ...
- Unpacking libtag-c2:amd64 (2.0.2-2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../4-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libtag-dev:amd64.
- Preparing to unpack .../5-libtag-dev_2.0.2-2_amd64.deb ...
- Unpacking libtag-dev:amd64 (2.0.2-2) ...
- Selecting previously unselected package libtag-c-dev:amd64.
- Preparing to unpack .../6-libtag-c-dev_2.0.2-2_amd64.deb ...
- Unpacking libtag-c-dev:amd64 (2.0.2-2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libtag2:amd64 (2.0.2-2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Setting up libtag-c2:amd64 (2.0.2-2) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libtag-c-dev:amd64 (2.0.2-2) ...
- Setting up libtag-dev:amd64 (2.0.2-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> installed conf-sqlite3.1
-> installed conf-taglib_c.2
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0~alpha2, xdg.3.22.0~alpha2  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.2.1.0
-> installed cppo.1.8.0
-> installed dune-configurator.3.22.0~alpha2
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved otaglibc.0.1.0  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> installed xdg.3.22.0~alpha2
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved shakuhachi.0.2.0  (cached)
-> retrieved sqlite3.5.4.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uunf.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed bigstringaf.0.10.0
-> retrieved yojson.3.0.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed otaglibc.0.1.0
-> installed magic-mime.1.3.1
-> installed sexplib0.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed num.1.6
-> installed angstrom.0.16.1
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed parsexp.v0.17.0
-> installed ocamlfind.1.9.8
-> installed sexplib.v0.17.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed ezjsonm.1.3.0
-> installed dune-compiledb.0.6.0
-> installed sqlite3.5.4.0
-> installed uunf.17.0.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed shakuhachi.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 02:26.35 ---> saved as "ac1082f0b674d1c5b3ab4b1faf9949ed5e9588e9da1c21dc7b79a87f5ea12edb"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test shakuhachi.0.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile shakuhachi      0.2.0
=== install 7 packages
  - install   alcotest        1.9.1 [required by shakuhachi]
  - install   ounit2          2.2.7 [required by qcheck-ounit]
  - install   qcheck          0.27  [required by shakuhachi]
  - install   qcheck-alcotest 0.27  [required by shakuhachi]
  - install   qcheck-core     0.27  [required by qcheck, qcheck-alcotest]
  - install   qcheck-ounit    0.27  [required by qcheck]
  - install   seq             base  [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.27, qcheck-alcotest.0.27, qcheck-core.0.27, qcheck-ounit.0.27  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved shakuhachi.0.2.0  (https://opam.ocaml.org/cache)
-> installed alcotest.1.9.1
-> installed ounit2.2.2.7
-> removed   shakuhachi.0.2.0
-> installed qcheck-core.0.27
-> installed qcheck-alcotest.0.27
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> installed shakuhachi.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 02:27.15 ---> saved as "82bbed81fc4a05182a00abb07c0fe39935ecde301667b63e924a8a675f4f8bd0"

/home/opam: (run (shell  "opam reinstall --with-test --verbose shakuhachi.0.2.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\" != 'shakuhachi.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile shakuhachi 0.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [shakuhachi.0.2.0: extract]
-> retrieved shakuhachi.0.2.0  (cached)
Processing  2/4: [shakuhachi: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "shakuhachi" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0)
- (cd _build/default/test && ./test_metadata.exe)
- qcheck random seed: 506327338
- Testing `Metadata'.
- This run has ID `Z2ILC61Q'.
- 
-   [OK]          empty               0   empty.
-   [OK]          empty               1   empty (is empty).
-   [OK]          set/get id          0   Set title.
-   [OK]          set/get id          1   Set title-sort.
-   [OK]          set/get id          2   Set artist.
-   [OK]          set/get id          3   Add artist.
-   [OK]          set/get id          4   Set artist-sort.
-   [OK]          set/get id          5   Set album-artist.
-   [OK]          set/get id          6   Add album-artist.
-   [OK]          set/get id          7   Set composer.
-   [OK]          set/get id          8   Add composer.
-   [OK]          set/get id          9   Set album.
-   [OK]          set/get id         10   Set album-sort.
-   [OK]          set/get id         11   Set track.
-   [OK]          set/get id         12   Set comment.
-   [OK]          set/get id         13   Add comment.
-   [OK]          set/get id         14   Set genre.
-   [OK]          set/get id         15   Set year.
-   [OK]          set/get id         16   Set disc.
-   [OK]          patch               0   empty.
-   [OK]          patch               1   apply empty.
-   [OK]          patch               2   apply disjoint.
-   [OK]          patch               3   apply not-disjoint.
-   [OK]          misc                0   track parsing.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Metadata'.
- Test Successful in 0.034s. 24 tests run.
- (cd _build/default/test && ./test_config.exe)
- Testing `Config'.
- This run has ID `KF8KN705'.
- 
-   [OK]          Plugin          0   1.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Config'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test && ./test_query.exe)
- qcheck random seed: 122884824
- Testing `Queries'.
- This run has ID `544L90CM'.
- 
-   [OK]          empty-query          0   Empty query.
-   [OK]          empty-query          1   , query.
-   [OK]          empty-query          2   ^ query.
-   [OK]          empty-query          3   ^ , query.
-   [OK]          empty-query          4   , ^ query.
-   [OK]          substrings           0   LiSA.
-   [OK]          equal                0   struturally diff.
-   [OK]          match                0   totaulogy - musics.
-   [OK]          match                1   absurdity - musics.
-   [OK]          sexp                 0   sexp substring - space.
-   [OK]          sexp                 1   sexp substring - nospace.
-   [OK]          sexp                 2   sexp substring - space quoted.
-   [OK]          sexp                 3   sexp field title - nospace.
-   [OK]          sexp                 4   sexp field title - nospace quoted.
-   [OK]          sexp                 5   sexp field title - space quoted.
-   [OK]          sexp                 6   sexp field int year - value.
-   [OK]          sexp                 7   sexp field int year - range.
-   [OK]          sexp                 8   sexp field int year - range some none.
-   [OK]          sexp                 9   sexp field int year - range none some.
-   [OK]          sexp                10   sexp field int year - range some some.
-   [OK]          sexp                11   sexp field int year - negative value.
-   [OK]          sexp                12   sexp field bool - true.
-   [OK]          sexp                13   sexp field bool - true (1).
-   [OK]          sexp                14   sexp field bool - false.
-   [OK]          sexp                15   sexp field bool - false (0).
-   [OK]          sexp                16   sexp not substring.
-   [OK]          sexp                17   sexp not substring - quoted.
-   [OK]          sexp                18   sexp not substring - quoted space.
-   [OK]          sexp                19   sexp not variable 1.
-   [OK]          properties           0   query to_sexp/of_sexp identity.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Queries'.
- Test Successful in 0.108s. 30 tests run.
- (cd _build/default/test && ./test_skhclibs.exe)
- qcheck random seed: 394536251
- Testing `Skhclibs'.
- This run has ID `ZHE4F1PN'.
- 
-   [OK]          realpath            0   root.
-   [OK]          realpath            1   /hello.
-   [OK]          realpath            2   empty.
-   [OK]          realpath            3   component.
-   [OK]          realpath            4   component - 2.
-   [OK]          dir-artist          0   album artist.
-   [OK]          dir-artist          1   album artist (2 album artists).
-   [OK]          dir-artist          2   album artist (1 aa - 2 artists).
-   [OK]          dir-artist          3   album artist (/).
-   [OK]          dir-artist          4   artist (fallback).
-   [OK]          dir-artist          5   artist (2 artists).
-   [OK]          dir-artist          6   artist (no metadata).
-   [OK]          dir-artist          7   artist (aa - artist - empty string).
-   [OK]          artist              0   set rating (equal).
-   [OK]          artist              1   set rating (diff).
-   [OK]          playlist            0   create.
-   [OK]          playlist            1   add.
-   [OK]          playlist            2   delete.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Skhclibs'.
- Test Successful in 0.121s. 18 tests run.
- (cd _build/default/test && ./test_db.exe)
- qcheck random seed: 355673818
- Testing `Queries'.
- This run has ID `VS3KJ5QV'.
- 
-   [OK]          artist                   0   all.
-   [OK]          artist                   1   insert (0).
-   [OK]          artist                   2   insert.
-   [OK]          artist                   3   update.
-   [OK]          album                    0   all.
-   [OK]          album                    1   insert.
-   [OK]          album                    2   update.
-   [OK]          music                    0   all.
-   [OK]          music                    1   insert.
-   [OK]          music                    2   update.
-   [OK]          playlist                 0   all.
-   [OK]          playlist                 1   insert.
-   [OK]          playlist                 2   update.
-   [OK]          playlist-musics          0   all.
-   [OK]          playlist-musics          1   playlists.
-   [OK]          playlist-musics          2   musics.
-   [OK]          complex                  0   query - musics (empty).
-   [OK]          complex                  1   query - musics.
-   [OK]          complex                  2   query - musics (one without album).
-   [OK]          complex                  3   query - albums (empty).
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Queries'.
- Test Successful in 1.107s. 20 tests run.
[ERROR] The compilation of shakuhachi.0.2.0 failed at "dune build -p shakuhachi -j 71 @install @runtest".

#=== ERROR while compiling shakuhachi.0.2.0 ===================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | file:///home/opam/opam-repository
# path                 ~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p shakuhachi -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/shakuhachi-7-31fdd0.env
# output-file          ~/.opam/log/shakuhachi-7-31fdd0.out
### output ###
# (cd _build/default/test && ./test_metadata.exe)
# qcheck random seed: 506327338
# Testing `Metadata'.
# This run has ID `Z2ILC61Q'.
# 
#   [OK]          empty               0   empty.
#   [OK]          empty               1   empty (is empty).
#   [OK]          set/get id          0   Set title.
#   [OK]          set/get id          1   Set title-sort.
#   [OK]          set/get id          2   Set artist.
#   [OK]          set/get id          3   Add artist.
#   [OK]          set/get id          4   Set artist-sort.
#   [OK]          set/get id          5   Set album-artist.
#   [OK]          set/get id          6   Add album-artist.
#   [OK]          set/get id          7   Set composer.
#   [OK]          set/get id          8   Add composer.
#   [OK]          set/get id          9   Set album.
#   [OK]          set/get id         10   Set album-sort.
#   [OK]          set/get id         11   Set track.
#   [OK]          set/get id         12   Set comment.
#   [OK]          set/get id         13   Add comment.
#   [OK]          set/get id         14   Set genre.
#   [OK]          set/get id         15   Set year.
#   [OK]          set/get id         16   Set disc.
#   [OK]          patch               0   empty.
#   [OK]          patch               1   apply empty.
#   [OK]          patch               2   apply disjoint.
#   [OK]          patch               3   apply not-disjoint.
#   [OK]          misc                0   track parsing.
# 
# Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Metadata'.
# Test Successful in 0.034s. 24 tests run.
# (cd _build/default/test && ./test_config.exe)
# Testing `Config'.
# This run has ID `KF8KN705'.
# 
#   [OK]          Plugin          0   1.
# 
# Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Config'.
# Test Successful in 0.000s. 1 test run.
# (cd _build/default/test && ./test_query.exe)
# qcheck random seed: 122884824
# Testing `Queries'.
# This run has ID `544L90CM'.
# 
#   [OK]          empty-query          0   Empty query.
#   [OK]          empty-query          1   , query.
#   [OK]          empty-query          2   ^ query.
#   [OK]          empty-query          3   ^ , query.
#   [OK]          empty-query          4   , ^ query.
#   [OK]          substrings           0   LiSA.
#   [OK]          equal                0   struturally diff.
#   [OK]          match                0   totaulogy - musics.
#   [OK]          match                1   absurdity - musics.
#   [OK]          sexp                 0   sexp substring - space.
#   [OK]          sexp                 1   sexp substring - nospace.
#   [OK]          sexp                 2   sexp substring - space quoted.
#   [OK]          sexp                 3   sexp field title - nospace.
#   [OK]          sexp                 4   sexp field title - nospace quoted.
#   [OK]          sexp                 5   sexp field title - space quoted.
#   [OK]          sexp                 6   sexp field int year - value.
#   [OK]          sexp                 7   sexp field int year - range.
#   [OK]          sexp                 8   sexp field int year - range some none.
#   [OK]          sexp                 9   sexp field int year - range none some.
#   [OK]          sexp                10   sexp field int year - range some some.
#   [OK]          sexp                11   sexp field int year - negative value.
#   [OK]          sexp                12   sexp field bool - true.
#   [OK]          sexp                13   sexp field bool - true (1).
#   [OK]          sexp                14   sexp field bool - false.
#   [OK]          sexp                15   sexp field bool - false (0).
#   [OK]          sexp                16   sexp not substring.
#   [OK]          sexp                17   sexp not substring - quoted.
#   [OK]          sexp                18   sexp not substring - quoted space.
#   [OK]          sexp                19   sexp not variable 1.
#   [OK]          properties           0   query to_sexp/of_sexp identity.
# 
# Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Queries'.
# Test Successful in 0.108s. 30 tests run.
# (cd _build/default/test && ./test_skhclibs.exe)
# qcheck random seed: 394536251
# Testing `Skhclibs'.
# This run has ID `ZHE4F1PN'.
# 
#   [OK]          realpath            0   root.
#   [OK]          realpath            1   /hello.
#   [OK]          realpath            2   empty.
#   [OK]          realpath            3   component.
#   [OK]          realpath            4   component - 2.
#   [OK]          dir-artist          0   album artist.
#   [OK]          dir-artist          1   album artist (2 album artists).
#   [OK]          dir-artist          2   album artist (1 aa - 2 artists).
#   [OK]          dir-artist          3   album artist (/).
#   [OK]          dir-artist          4   artist (fallback).
#   [OK]          dir-artist          5   artist (2 artists).
#   [OK]          dir-artist          6   artist (no metadata).
#   [OK]          dir-artist          7   artist (aa - artist - empty string).
#   [OK]          artist              0   set rating (equal).
#   [OK]          artist              1   set rating (diff).
#   [OK]          playlist            0   create.
#   [OK]          playlist            1   add.
#   [OK]          playlist            2   delete.
# 
# Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Skhclibs'.
# Test Successful in 0.121s. 18 tests run.
# (cd _build/default/test && ./test_db.exe)
# qcheck random seed: 355673818
# Testing `Queries'.
# This run has ID `VS3KJ5QV'.
# 
#   [OK]          artist                   0   all.
#   [OK]          artist                   1   insert (0).
#   [OK]          artist                   2   insert.
#   [OK]          artist                   3   update.
#   [OK]          album                    0   all.
#   [OK]          album                    1   insert.
#   [OK]          album                    2   update.
#   [OK]          music                    0   all.
#   [OK]          music                    1   insert.
#   [OK]          music                    2   update.
#   [OK]          playlist                 0   all.
#   [OK]          playlist                 1   insert.
#   [OK]          playlist                 2   update.
#   [OK]          playlist-musics          0   all.
#   [OK]          playlist-musics          1   playlists.
#   [OK]          playlist-musics          2   musics.
#   [OK]          complex                  0   query - musics (empty).
#   [OK]          complex                  1   query - musics.
#   [OK]          complex                  2   query - musics (one without album).
#   [OK]          complex                  3   query - albums (empty).
# 
# Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Queries'.
# Test Successful in 1.107s. 20 tests run.
# File "test/dune", line 52, characters 7-18:
# 52 |  (name test_format)
#             ^^^^^^^^^^^
# (cd _build/default/test && ./test_format.exe)
# qcheck random seed: 453834387
# Testing `Fformat'.
# This run has ID `EO4X0TWV'.
# 
#   [OK]          Music             0   title.
#   [OK]          Music             1   title sort.
#   [OK]          Music             2   artist.
#   [FAIL]        Music             3   album.
#   [OK]          Music             4   art.
#   [OK]          Music             5   flag.
#   [OK]          Music             6   id.
#   [OK]          Music             7   size.
#   [OK]          Music             8   track.
#   [OK]          Music             9   year.
#   [OK]          Music            10   disc.
#   [OK]          Music            11   plays.
#   [OK]          Music            12   rating.
#   [OK]          Music            13   album-count.
#   [OK]          Music            14   avg duration.
#   [OK]          Music            15   avg rating.
#   [OK]          Music            16   avg size.
#   [OK]          Music            17   artist_1.
#   [OK]          Album             0   title.
#   [OK]          Album             1   sort name.
#   [OK]          Album             2   artist.
#   [OK]          Album             3   album.
#   [OK]          Album             4   album artist.
#   [OK]          Album             5   composers.
#   [OK]          Album             6   genre.
#   [OK]          Album             7   path.
#   [OK]          Album             8   ext.
#   [OK]          Album             9   id.
#   [OK]          Album            10   track.
#   [OK]          Album            11   year.
#   [OK]          Album            12   disc.
#   [OK]          Album            13   plays.
#   [OK]          Album            14   size.
#   [OK]          Album            15   rating.
#   [OK]          Album            16   album_count.
#   [OK]          Album            17   length.
#   [OK]          Album            18   art.
#   [OK]          Album            19   flag.
#   [OK]          Album            20   avg_duration.
#   [OK]          Album            21   avg_rating.
#   [OK]          Album            22   avg_size.
#   [OK]          Artist            0   title.
#   [OK]          Artist            1   artist sort.
#   [OK]          Artist            2   artist.
#   [OK]          Artist            3   album.
#   [OK]          Artist            4   album_artist.
#   [OK]          Artist            5   composer.
#   [OK]          Artist            6   genre.
#   [OK]          Artist            7   path.
#   [OK]          Artist            8   ext.
#   [OK]          Artist            9   id.
#   [OK]          Artist           10   track.
#   [OK]          Artist           11   year.
#   [OK]          Artist           12   disc.
#   [OK]          Artist           13   plays.
#   [OK]          Artist           14   size.
#   [OK]          Artist           15   rating.
#   [OK]          Artist           16   album_count.
#   [OK]          Artist           17   length.
#   [OK]          Artist           18   art.
#   [OK]          Artist           19   flag.
#   [OK]          Artist           20   avg_duration.
#   [OK]          Artist           21   avg_rating.
#   [OK]          Artist           22   test_avg_size.
#   [OK]          Filename          0   title with /.
#   [OK]          Filename          1   album cover.
# 
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL]        Music             3   album.                                   │
# └──────────────────────────────────────────────────────────────────────────────┘
# 
# test `album` failed on ≥ 1 cases:
# ("%id", {"id":0,"path":"he0.^Cur","album_id":null,"size":360848587861938410,"play_count":3746899827386909519,"flag":true,"rating":-2420614798654346738,"duration":2491107638060838660,"bitrate":4433826136973152023,"samplerate":2027084994218027291,"channels":2187069699871602191,"has_cover":false,"played_at":-1.8425728435738672e+192,"created_at":-6.382151201077994e-141,"updated_at":-1.0439419256464622e+213}, {"id":0,"name":"\nNS5R\\","sort_name":"","year":814154051530066131,"compilation":true,"flag":true,"rating":4121643815339348376,"comment":"d$","genre":"^g?I","cover_path":null,"created_at":1.0392251753820977e-249,"updated_at":-1.508180138931432e-47}) (after 21 shrink steps)
# 
# [exception] test `album` failed on ≥ 1 cases:
# ("%id", {"id":0,"path":"he0.^Cur","album_id":null,"size":360848587861938410,"play_count":3746899827386909519,"flag":true,"rating":-2420614798654346738,"duration":2491107638060838660,"bitrate":4433826136973152023,"samplerate":2027084994218027291,"channels":2187069699871602191,"has_cover":false,"played_at":-1.8425728435738672e+192,"created_at":-6.382151201077994e-141,"updated_at":-1.0439419256464622e+213}, {"id":0,"name":"\nNS5R\\","sort_name":"","year":814154051530066131,"compilation":true,"flag":true,"rating":4121643815339348376,"comment":"d$","genre":"^g?I","cover_path":null,"created_at":1.0392251753820977e-249,"updated_at":-1.508180138931432e-47}) (after 21 shrink steps)
# 
#             Raised at QCheck2.Test.check_result in file "src/core/QCheck2.ml", line 2197, characters 6-38
#             Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
#             Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#             
# Logs saved to `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Fformat/Music.003.output'.
#  ──────────────────────────────────────────────────────────────────────────────
# 
# Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Fformat'.
# 1 failure! in 10.048s. 66 tests run.

- File "test/dune", line 52, characters 7-18:
- 52 |  (name test_format)
-             ^^^^^^^^^^^
- (cd _build/default/test && ./test_format.exe)
- qcheck random seed: 453834387
- Testing `Fformat'.
- This run has ID `EO4X0TWV'.
- 
-   [OK]          Music             0   title.
-   [OK]          Music             1   title sort.
-   [OK]          Music             2   artist.
-   [FAIL]        Music             3   album.
-   [OK]          Music             4   art.
-   [OK]          Music             5   flag.
-   [OK]          Music             6   id.
-   [OK]          Music             7   size.
-   [OK]          Music             8   track.
-   [OK]          Music             9   year.
-   [OK]          Music            10   disc.
-   [OK]          Music            11   plays.
-   [OK]          Music            12   rating.
-   [OK]          Music            13   album-count.
-   [OK]          Music            14   avg duration.
-   [OK]          Music            15   avg rating.
-   [OK]          Music            16   avg size.
-   [OK]          Music            17   artist_1.
-   [OK]          Album             0   title.
-   [OK]          Album             1   sort name.
-   [OK]          Album             2   artist.
-   [OK]          Album             3   album.
-   [OK]          Album             4   album artist.
-   [OK]          Album             5   composers.
-   [OK]          Album             6   genre.
-   [OK]          Album             7   path.
-   [OK]          Album             8   ext.
-   [OK]          Album             9   id.
-   [OK]          Album            10   track.
-   [OK]          Album            11   year.
-   [OK]          Album            12   disc.
-   [OK]          Album            13   plays.
-   [OK]          Album            14   size.
-   [OK]          Album            15   rating.
-   [OK]          Album            16   album_count.
-   [OK]          Album            17   length.
-   [OK]          Album            18   art.
-   [OK]          Album            19   flag.
-   [OK]          Album            20   avg_duration.
-   [OK]          Album            21   avg_rating.
-   [OK]          Album            22   avg_size.
-   [OK]          Artist            0   title.
-   [OK]          Artist            1   artist sort.
-   [OK]          Artist            2   artist.
-   [OK]          Artist            3   album.
-   [OK]          Artist            4   album_artist.
-   [OK]          Artist            5   composer.
-   [OK]          Artist            6   genre.
-   [OK]          Artist            7   path.
-   [OK]          Artist            8   ext.
-   [OK]          Artist            9   id.
-   [OK]          Artist           10   track.
-   [OK]          Artist           11   year.
-   [OK]          Artist           12   disc.
-   [OK]          Artist           13   plays.
-   [OK]          Artist           14   size.
-   [OK]          Artist           15   rating.
-   [OK]          Artist           16   album_count.
-   [OK]          Artist           17   length.
-   [OK]          Artist           18   art.
-   [OK]          Artist           19   flag.
-   [OK]          Artist           20   avg_duration.
-   [OK]          Artist           21   avg_rating.
-   [OK]          Artist           22   test_avg_size.
-   [OK]          Filename          0   title with /.
-   [OK]          Filename          1   album cover.
- 
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL]        Music             3   album.                                   │
- └──────────────────────────────────────────────────────────────────────────────┘
- 
- test `album` failed on ≥ 1 cases:
- ("%id", {"id":0,"path":"he0.^Cur","album_id":null,"size":360848587861938410,"play_count":3746899827386909519,"flag":true,"rating":-2420614798654346738,"duration":2491107638060838660,"bitrate":4433826136973152023,"samplerate":2027084994218027291,"channels":2187069699871602191,"has_cover":false,"played_at":-1.8425728435738672e+192,"created_at":-6.382151201077994e-141,"updated_at":-1.0439419256464622e+213}, {"id":0,"name":"\nNS5R\\","sort_name":"","year":814154051530066131,"compilation":true,"flag":true,"rating":4121643815339348376,"comment":"d$","genre":"^g?I","cover_path":null,"created_at":1.0392251753820977e-249,"updated_at":-1.508180138931432e-47}) (after 21 shrink steps)
- 
- [exception] test `album` failed on ≥ 1 cases:
- ("%id", {"id":0,"path":"he0.^Cur","album_id":null,"size":360848587861938410,"play_count":3746899827386909519,"flag":true,"rating":-2420614798654346738,"duration":2491107638060838660,"bitrate":4433826136973152023,"samplerate":2027084994218027291,"channels":2187069699871602191,"has_cover":false,"played_at":-1.8425728435738672e+192,"created_at":-6.382151201077994e-141,"updated_at":-1.0439419256464622e+213}, {"id":0,"name":"\nNS5R\\","sort_name":"","year":814154051530066131,"compilation":true,"flag":true,"rating":4121643815339348376,"comment":"d$","genre":"^g?I","cover_path":null,"created_at":1.0392251753820977e-249,"updated_at":-1.508180138931432e-47}) (after 21 shrink steps)
- 
-             Raised at QCheck2.Test.check_result in file "src/core/QCheck2.ml", line 2197, characters 6-38
-             Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
-             Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-             
- Logs saved to `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Fformat/Music.003.output'.
-  ──────────────────────────────────────────────────────────────────────────────
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Fformat'.
- 1 failure! in 10.048s. 66 tests run.


<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build shakuhachi 0.2.0
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose shakuhachi.0.2.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 shakuhachi.0.2.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" != 'shakuhachi.0.2.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-03-17 02:28.57: Job failed: Failed: Build failed
2026-03-17 02:28.57: Log analysis:
2026-03-17 02:28.57: >>> 
[ERROR] The compilation of shakuhachi.0.2.0 failed at "dune build -p shakuhachi -j 71 @install @runtest".
 (score = 20)
2026-03-17 02:28.57: The compilation of shakuhachi.0.2.0 failed at "dune build -p shakuhachi -j 71 @install @runtest".