Build:
  1. 0
2026-01-24 14:48.05: New job: test shakuhachi.0.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29275/head (34d492666d34169ccd17a3c6aa5a45fb62641a87)
                              on debian-13-ocaml-4.14/arm32v7

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29275/head" && git reset --hard 34d49266
git fetch origin master
git merge --no-edit 8e1b9a49e880d409b435a16017fd056e29befb09
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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 shakuhachi.0.2.0 0.2.0
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-01-24 14:48.05: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28-shakuhachi.0.2.0-34d492666d34169ccd17a3c6aa5a45fb62641a87"
2026-01-24 14:48.05: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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 shakuhachi.0.2.0 0.2.0"))
 (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-01-24 14:48.05: Waiting for resource in pool OCluster
2026-01-24 14:48.05: Waiting for worker…
2026-01-24 14:58.17: Got resource from pool OCluster
Building on ainia.caelum.ci.dev
All commits already cached
Updating files:  69% (13439/19265)
Updating files:  70% (13486/19265)
Updating files:  71% (13679/19265)
Updating files:  72% (13871/19265)
Updating files:  73% (14064/19265)
Updating files:  74% (14257/19265)
Updating files:  75% (14449/19265)
Updating files:  76% (14642/19265)
Updating files:  77% (14835/19265)
Updating files:  78% (15027/19265)
Updating files:  79% (15220/19265)
Updating files:  80% (15412/19265)
Updating files:  81% (15605/19265)
Updating files:  82% (15798/19265)
Updating files:  83% (15990/19265)
Updating files:  84% (16183/19265)
Updating files:  85% (16376/19265)
Updating files:  86% (16568/19265)
Updating files:  87% (16761/19265)
Updating files:  88% (16954/19265)
Updating files:  89% (17146/19265)
Updating files:  90% (17339/19265)
Updating files:  91% (17532/19265)
Updating files:  92% (17724/19265)
Updating files:  93% (17917/19265)
Updating files:  94% (18110/19265)
Updating files:  95% (18302/19265)
Updating files:  96% (18495/19265)
Updating files:  97% (18688/19265)
Updating files:  98% (18880/19265)
Updating files:  99% (19073/19265)
Updating files: 100% (19265/19265)
Updating files: 100% (19265/19265), done.
HEAD is now at 8e1b9a49e8 Merge pull request #29269 from mseri/ocurl
Updating 8e1b9a49e8..34d492666d
Fast-forward
 packages/shakuhachi/shakuhachi.0.2.0/opam | 54 +++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
 create mode 100644 packages/shakuhachi/shakuhachi.0.2.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28' locally
docker.io/ocaml/opam@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28: Pulling from ocaml/opam
11c42a85d7bc: Pulling fs layer
11c42a85d7bc: Verifying Checksum
11c42a85d7bc: Download complete
11c42a85d7bc: Pull complete
Digest: sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28
Status: Downloaded newer image for ocaml/opam@sha256:eb9388516aa9ee39c5d9d8b3aa5163725a8f704e7e746fe91b941299e6f6ce28
2026-01-24 14:58.19 ---> using "f93190b1bd3420d0691c4747bc4982474ba9fd2940d67a3c601dbb26b29112f1" from cache

/: (shell /usr/bin/linux32 /bin/sh -c)

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-24 14:58.19 ---> using "291361e95fb5d8c42b3334390f4fafc2b4a12039d6aeb6397587e696a53567cd" 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.

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-24 14:58.19 ---> using "eca8a9c1cae54ead1743b15a02d588ededa9bd283259ce4bbcbafb93143eb0a9" 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=arm32 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                 79
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-24 14:58.19 ---> using "60e7af4a8956c44788aee08560c1f61ed2a03f10870357f3557fb03eda90f869" 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-01-24 14:58.19 ---> using "ab689220024a8543bbd8248212fa5cf3a2ff19360077009bdc9d861035b4b59f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-24 14:58.20 ---> using "5215d496a5c20aa87a91f423516feedfafbdf8315173c8d2de6ca28fa91b79b8" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-24 14:58.20 ---> using "224e1db06c0f02ecacc404abf6a7b996bd5d46a2382c213b4b0687617d2d95b3" 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 armhf Packages [9238 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main armhf Packages [92.2 kB]
- Fetched 9561 kB in 1s (7332 kB/s)
- Reading package lists...
- 
2026-01-24 14:58.20 ---> using "1f17e8f212af07edce5fe2e7f54c24938d5e12b741524bb0a56d3cd19d3e9239" from cache

/home/opam: (run (shell "opam pin add -k version -yn shakuhachi.0.2.0 0.2.0"))
shakuhachi is now pinned to version 0.2.0
2026-01-24 14:58.20 ---> using "1fb0d74061b955fbe33a71a1ca292750871c031adc5eaab2f1b673d3eb620f85" 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 29 packages
  - install angstrom            0.16.1         [required by shakuhachi]
  - 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 dune                3.21.0         [required by shakuhachi]
  - install dune-configurator   3.21.0         [required by otaglibc, sqlite3]
  - install magic-mime          1.3.1          [required by shakuhachi]
  - 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 uunf]
  - install ocamlfind           1.9.8          [required by uunf]
  - install otaglibc            0.1.0          [required by shakuhachi]
  - 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 sexplib0            v0.17.0        [required by ppxlib]
  - install shakuhachi          0.2.0 (pinned)
  - install sqlite3             5.3.1          [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 xdg                 3.21.0         [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"
- Selecting previously unselected package libpkgconf3:armhf.
- (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 ... 20348 files and directories currently installed.)
- Preparing to unpack .../0-libpkgconf3_1.8.1-4_armhf.deb ...
- Unpacking libpkgconf3:armhf (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:armhf.
- Preparing to unpack .../1-libsqlite3-dev_3.46.1-7_armhf.deb ...
- Unpacking libsqlite3-dev:armhf (3.46.1-7) ...
- Selecting previously unselected package libtag2:armhf.
- Preparing to unpack .../2-libtag2_2.0.2-2_armhf.deb ...
- Unpacking libtag2:armhf (2.0.2-2) ...
- Selecting previously unselected package libtag-c2:armhf.
- Preparing to unpack .../3-libtag-c2_2.0.2-2_armhf.deb ...
- Unpacking libtag-c2:armhf (2.0.2-2) ...
- Selecting previously unselected package zlib1g-dev:armhf.
- Preparing to unpack .../4-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_armhf.deb ...
- Unpacking zlib1g-dev:armhf (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libtag-dev:armhf.
- Preparing to unpack .../5-libtag-dev_2.0.2-2_armhf.deb ...
- Unpacking libtag-dev:armhf (2.0.2-2) ...
- Selecting previously unselected package libtag-c-dev:armhf.
- Preparing to unpack .../6-libtag-c-dev_2.0.2-2_armhf.deb ...
- Unpacking libtag-c-dev:armhf (2.0.2-2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_armhf.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:armhf.
- Preparing to unpack .../8-pkgconf_1.8.1-4_armhf.deb ...
- Unpacking pkgconf:armhf (1.8.1-4) ...
- Selecting previously unselected package pkg-config:armhf.
- Preparing to unpack .../9-pkg-config_1.8.1-4_armhf.deb ...
- Unpacking pkg-config:armhf (1.8.1-4) ...
- Setting up libtag2:armhf (2.0.2-2) ...
- Setting up libpkgconf3:armhf (1.8.1-4) ...
- Setting up libsqlite3-dev:armhf (3.46.1-7) ...
- Setting up libtag-c2:armhf (2.0.2-2) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:armhf (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up pkgconf:armhf (1.8.1-4) ...
- Setting up pkg-config:armhf (1.8.1-4) ...
- Setting up libtag-c-dev:armhf (2.0.2-2) ...
- Setting up libtag-dev:armhf (2.0.2-2) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (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
-> installed conf-sqlite3.1
-> installed conf-taglib_c.2
-> retrieved dune.3.21.0, dune-configurator.3.21.0, xdg.3.21.0  (cached)
-> retrieved magic-mime.1.3.1  (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 otaglibc.0.1.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved shakuhachi.0.2.0  (cached)
-> retrieved sqlite3.5.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uunf.17.0.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed xdg.3.21.0
-> installed dune-configurator.3.21.0
-> installed bigstringaf.0.10.0
-> installed otaglibc.0.1.0
-> installed angstrom.0.16.1
-> installed sqlite3.5.3.1
-> 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-01-24 14:58.20 ---> using "d029114c1c2eb0773b55145d43a705c35ed864db425cff291d6b8571aa99949b" from cache

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test shakuhachi.0.2.0) || true"))
The following actions will be performed:
=== recompile 2 packages
  - recompile shakuhachi      0.2.0 (pinned)
  - recompile uunf            17.0.0         [uses uutf]
=== install 10 packages
  - install   alcotest        1.9.1          [required by shakuhachi]
  - install   astring         0.8.5          [required by alcotest]
  - install   fmt             0.11.0         [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]
  - install   uutf            1.0.4          [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (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://codeberg.org/EruEri/shakuhachi/archive/0.2.0.tar.gz)
-> retrieved uunf.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> installed qcheck-core.0.27
-> installed ounit2.2.2.7
-> installed astring.0.8.5
-> removed   shakuhachi.0.2.0
-> removed   uunf.17.0.0
-> installed uutf.1.0.4
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.27
-> installed uunf.17.0.0
-> installed shakuhachi.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 14:59.05 ---> saved as "ffbe130f10f356f1ea9654fdad4c77f05c87f6236ff2497f9c58fad7ee0f77ae"

/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 (pinned)

<><> 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" "79" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/shakuhachi.0.2.0)
- (cd _build/default/test && ./test_metadata.exe)
- qcheck random seed: 514402387
- Testing `Metadata'.
- This run has ID `7LK5PNG2'.
- 
-   [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/4.14/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Metadata'.
- Test Successful in 0.012s. 24 tests run.
- (cd _build/default/test && ./test_config.exe)
- Testing `Config'.
- This run has ID `3C72ICJ9'.
- 
-   [OK]          Plugin          0   1.
- 
- Full test results in `~/.opam/4.14/.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: 522834528
- Testing `Queries'.
- This run has ID `5KOTFVLF'.
- 
-   [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/4.14/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Queries'.
- Test Successful in 0.122s. 30 tests run.
- (cd _build/default/test && ./test_db.exe)
- qcheck random seed: 736446054
- Testing `Queries'.
- This run has ID `1YA9MUIV'.
- 
-   [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/4.14/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Queries'.
- Test Successful in 0.433s. 20 tests run.
- (cd _build/default/test && ./test_skhclibs.exe)
- qcheck random seed: 29378473
- Testing `Skhclibs'.
- This run has ID `D2JZCNZU'.
- 
-   [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/4.14/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Skhclibs'.
- Test Successful in 0.048s. 18 tests run.
- (cd _build/default/test && ./test_format.exe)
- qcheck random seed: 243283463
- Testing `Fformat'.
- This run has ID `9YJYZIVW'.
- 
-   [OK]          Music             0   title.
-   [OK]          Music             1   title sort.
-   [OK]          Music             2   artist.
-   [OK]          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.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/shakuhachi.0.2.0/_build/default/test/_build/_tests/Fformat'.
- Test Successful in 8.142s. 66 tests run.
-> compiled  shakuhachi.0.2.0
-> removed   shakuhachi.0.2.0
-> installed shakuhachi.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 14:59.25 ---> saved as "8b57e31862b3e17c4a1db48c4c5fbcc2d08c23e4a680f1298267ca93f5e4f3f9"
Job succeeded
2026-01-24 14:59.32: Job succeeded