- github
- ocaml
- opam-repository
- 19c70f
- compilers,4.14,dune-configurator.3.22.0~alpha2,revdeps,shakuhachi.0.1.0
(not at the head of any monitored branch or PR)
2026-03-16 19:15.31: New job: test shakuhachi.0.1.0 with dune-configurator.3.22.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/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-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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-configurator.3.22.0~alpha2 3.22.0~alpha2
RUN opam reinstall dune-configurator.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-configurator.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.1.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.1.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.1.0) || true
RUN opam reinstall --with-test --verbose shakuhachi.0.1.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.1.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:15.31: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-dune-configurator.3.22.0~alpha2-shakuhachi.0.1.0-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:15.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(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-configurator.3.22.0~alpha2 3.22.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.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-configurator.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.1.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.1.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.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose shakuhachi.0.1.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.1.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:15.31: Waiting for resource in pool OCluster
2026-03-17 00:37.44: Waiting for worker…
2026-03-17 00:40.04: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 63% (11814/18461)
Updating files: 64% (11816/18461)
Updating files: 65% (12000/18461)
Updating files: 66% (12185/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-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 00:40.08 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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 00:40.08 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" 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 00:40.08 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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 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-03-17 00:40.08 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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 00:40.08 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 00:40.10 ---> using "bac94271bd2933048ab9ec083de7359406ae7b709f9e625d1aacde394e5b6b85" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 00:40.10 ---> using "1963dd823dac22306d550e5e9c9f971346ae5d465407ab924aff86b04a5120b3" 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 (5611 kB/s)
- Reading package lists...
-
2026-03-17 00:40.10 ---> using "2bbae9754f2da55382df5a713573b4f2579b518f80eaef97920d7868fdc429fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.22.0~alpha2 3.22.0~alpha2"))
dune-configurator is now pinned to version 3.22.0~alpha2
2026-03-17 00:40.10 ---> using "f8e40a83da9892aad73dee81865c4f15b894fd506ea93a49d392900925751de3" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.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-configurator.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-configurator.3.22.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.22.0~alpha2 [required by dune-configurator]
- install dune-configurator 3.22.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.22.0~alpha2, dune-configurator.3.22.0~alpha2 (cached)
-> installed dune.3.22.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 00:40.10 ---> using "67b904f2d73d6788680639795bd2fb0e77bfc952d186028cfe5ace97eb311540" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall shakuhachi.0.1.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.1.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.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 38 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 cstruct 6.2.0 [required by hex]
- install dune-compiledb 0.6.0 [required by 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.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 parsexp v0.16.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.16.0 [required by dune-compiledb]
- install sexplib0 v0.16.0 [required by dune-compiledb]
- install shakuhachi 0.1.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 ... 20623 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 ... 20623 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)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> installed conf-sqlite3.1
-> installed conf-taglib_c.2
-> 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.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 (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.16.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 bigstringaf.0.10.0
-> retrieved ppxlib.0.37.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved re.1.14.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved shakuhachi.0.1.0 (https://opam.ocaml.org/cache)
-> 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)
-> installed otaglibc.0.1.0
-> retrieved uutf.1.0.4 (cached)
-> installed stdlib-shims.0.3.0
-> installed magic-mime.1.3.1
-> installed ocaml-syntax-shims.1.0.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.16.0
-> installed angstrom.0.16.1
-> installed num.1.6
-> installed re.1.14.0
-> retrieved xdg.3.22.0~alpha2 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed cmdliner.2.1.0
-> installed ocamlbuild.0.16.1
-> installed ocamlfind.1.9.8
-> installed parsexp.v0.16.0
-> installed xdg.3.22.0~alpha2
-> installed sexplib.v0.16.0
-> installed yojson.3.0.0
-> 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 ppxlib.0.37.0
-> installed uunf.17.0.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed shakuhachi.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 00:41.22 ---> saved as "269df2aeba553c5e8490db1bc76d122d7ec3e7e2cad82d047cbf02beb339a9f1"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test shakuhachi.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile shakuhachi 0.1.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.1.0 (https://opam.ocaml.org/cache)
-> installed alcotest.1.9.1
-> installed ounit2.2.2.7
-> removed shakuhachi.0.1.0
-> installed qcheck-core.0.27
-> installed qcheck-alcotest.0.27
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> installed shakuhachi.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 00:41.38 ---> saved as "a8a9deeb5b8a6b842892aae76da8dc7216215df53d2a5187aba91346481e51c4"
/home/opam: (run (shell "opam reinstall --with-test --verbose shakuhachi.0.1.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.1.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.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [shakuhachi.0.1.0: extract]
-> retrieved shakuhachi.0.1.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/4.14/.opam-switch/build/shakuhachi.0.1.0)
- (cd _build/default/test && ./test_metadata.exe)
- qcheck random seed: 315301183
- Testing `Metadata'.
- This run has ID `R4BKWHE5'.
-
- [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.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/shakuhachi.0.1.0/_build/default/test/_build/_tests/Metadata'.
- Test Successful in 0.024s. 23 tests run.
- (cd _build/default/test && ./test_query.exe)
- qcheck random seed: 858315170
- Testing `Queries'.
- This run has ID `FKNF77FW'.
-
- [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.1.0/_build/default/test/_build/_tests/Queries'.
- Test Successful in 0.183s. 30 tests run.
- (cd _build/default/test && ./test_skhclibs.exe)
- qcheck random seed: 337340704
- Testing `Skhclibs'.
- This run has ID `BRRUKHME'.
-
- [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.1.0/_build/default/test/_build/_tests/Skhclibs'.
- Test Successful in 0.127s. 18 tests run.
- (cd _build/default/test && ./test_db.exe)
- qcheck random seed: 546873304
- Testing `Queries'.
- This run has ID `TAKNWY7I'.
-
- [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.1.0/_build/default/test/_build/_tests/Queries'.
- Test Successful in 0.961s. 20 tests run.
-> compiled shakuhachi.0.1.0
-> removed shakuhachi.0.1.0
-> installed shakuhachi.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 00:41.53 ---> saved as "2ed9f582c4ff10c0ca0a9d78f980fe8864d165ed677aab8484c121d40a181daf"
Job succeeded
2026-03-17 00:42.10: Job succeeded