Build:
- 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 alpine-3.22-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29275/head" && git reset --hard 34d49266
git fetch origin master
git merge --no-edit 8e1b9a49e880d409b435a16017fd056e29befb09
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
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 "\"alpine-3.22\""; 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 "\"alpine-3.22\""; 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:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216-shakuhachi.0.2.0-34d492666d34169ccd17a3c6aa5a45fb62641a87"
2026-01-24 14:48.05: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
(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 \"\\\"alpine-3.22\\\"\"; 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 \"\\\"alpine-3.22\\\"\"; 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:50.35: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
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:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
2026-01-24 14:50.38 ---> using "d1cef22083ba59d6db4e2f107091c68dd70ebdcc64c3894ad7db7be62ad17f4a" 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-01-24 14:50.38 ---> using "d2cb172e755b5e8a0ee24e133445a3ea22478f4e48886729c76cbcde08270342" 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-01-24 14:51.03 ---> saved as "4b7ed401555204d1f183307388cb649d473c8a52ff80ce2f5a4e8504a88269c7"
/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=alpine os-version=3.22.2
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-24 14:51.04 ---> saved as "9b1883465557a61ecd00e6282d59de098d32d80cc71a923a8ed0faa5af1a02e7"
/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:51.14 ---> saved as "be1c70f0be6391803fdc2f3adb75bd0fc31dd6c9a80328fabfc5d1e074dcb1ff"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-24 14:51.26 ---> saved as "52ca3ad266a7ec1c914c5f6e30c6f5a28c29c3533cc20385d2a6b68edc49af72"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-24 14:51.45 ---> saved as "7a114b8d45b1d0ada44bb907c422a69279752aa07434f00231f948ce3952064f"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.22.2-359-g43fdb3472ad [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.2-355-g40b35fa3c9f [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v20251224-2064-g8bbc37b6c83 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20251224-2067-gfa03e78eb49 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20251224-2062-g6d823f975ac [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 60782 distinct packages available
2026-01-24 14:51.47 ---> saved as "6504a7bdfb469e62858204a1e31911b04bf8e067ac27dd592982f6e2a4c5b138"
/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:51.48 ---> saved as "84ae8de304d88916463ae75efb850712004f8204c74094212336f40ca79b0c98"
/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 \"\\\"alpine-3.22\\\"\"; 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:
sqlite-dev taglib-dev zlib-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
2. Display the recommended apk 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 "apk" "add" "sqlite-dev" "taglib-dev" "zlib-dev"
- (1/6) Installing sqlite (3.49.2-r1)
- (2/6) Installing sqlite-dev (3.49.2-r1)
- (3/6) Installing libtag (2.0.2-r0)
- (4/6) Installing libtag_c (2.0.2-r0)
- (5/6) Installing taglib-dev (2.0.2-r0)
- (6/6) Installing zlib-dev (1.3.1-r2)
- Executing busybox-1.37.0-r20.trigger
- OK: 311 MiB in 108 packages
<><> 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)
-> retrieved ppx_deriving_yojson.3.10.0 (cached)
-> installed cmdliner.2.1.0
-> 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 uunf.17.0.0
-> installed dune.3.21.0
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> 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 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:52.53 ---> saved as "e1fe97bd436df24e44b24a8d26d70573c306f285d840319de198b41129bdd4b7"
/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 astring.0.8.5
-> installed ounit2.2.2.7
-> installed qcheck-core.0.27
-> installed qcheck-ounit.0.27
-> removed shakuhachi.0.2.0
-> removed uunf.17.0.0
-> installed uutf.1.0.4
-> 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:53.20 ---> saved as "bd98d58852614444eecf488ca04502f201144034f6c5e7994fa90f36726dc8df"
/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 \"\\\"alpine-3.22\\\"\"; 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" "255" "@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: 320165666
- Testing `Metadata'.
- This run has ID `BVX1PU0G'.
-
- [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.018s. 24 tests run.
- (cd _build/default/test && ./test_config.exe)
- Testing `Config'.
- This run has ID `M3L5DDA2'.
-
- [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: 148941378
- Testing `Queries'.
- This run has ID `13PL37BN'.
-
- [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.160s. 30 tests run.
- (cd _build/default/test && ./test_skhclibs.exe)
- qcheck random seed: 306623347
- Testing `Skhclibs'.
- This run has ID `QNK1WKNY'.
-
- [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.103s. 18 tests run.
- (cd _build/default/test && ./test_db.exe)
- qcheck random seed: 156530219
- Testing `Queries'.
- This run has ID `C52VSUPN'.
-
- [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.777s. 20 tests run.
- (cd _build/default/test && ./test_format.exe)
- qcheck random seed: 778334442
- Testing `Fformat'.
- This run has ID `9F3OWVPH'.
-
- [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 4.877s. 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:53.34 ---> saved as "e3119eae3918e1a137897aa8151556b018e34869adacba4223d684db76d176c5"
Job succeeded
2026-01-24 14:53.40: Job succeeded