Build:
- 0
2026-03-26 15:23.48: New job: test current_web.0.7.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29606/head (4e07f997e5a403e3e284236003dd2dff6b1992f9)
on debian-testing-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/29606/head" && git reset --hard 4e07f997
git fetch origin master
git merge --no-edit 46f289cd3749314bbebddeede62fc05f9858f680
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-4.14@sha256:52bd1ed0f9d8db1c41f681def046e3c723a38b37d19886e5601dde824c4c04b8
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 current_web.0.7.4 0.7.4
RUN opam reinstall current_web.0.7.4; \
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-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_web.0.7.4' && 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 current_web.0.7.4) || true
RUN opam reinstall --with-test --verbose current_web.0.7.4; \
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-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_web.0.7.4' && 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-26 15:23.48: Using cache hint "ocaml/opam:debian-testing-ocaml-4.14@sha256:52bd1ed0f9d8db1c41f681def046e3c723a38b37d19886e5601dde824c4c04b8-current_web.0.7.4-4e07f997e5a403e3e284236003dd2dff6b1992f9"
2026-03-26 15:23.48: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-4.14@sha256:52bd1ed0f9d8db1c41f681def046e3c723a38b37d19886e5601dde824c4c04b8)
(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 current_web.0.7.4 0.7.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_web.0.7.4;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'current_web.0.7.4' && 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 current_web.0.7.4) || true"))
(run (shell "opam reinstall --with-test --verbose current_web.0.7.4;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'current_web.0.7.4' && 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-26 15:23.48: Waiting for resource in pool OCluster
2026-03-26 15:34.11: Waiting for worker…
2026-03-26 15:36.52: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 93% (17418/18552)
Updating files: 94% (17439/18552)
Updating files: 95% (17625/18552)
Updating files: 96% (17810/18552)
Updating files: 97% (17996/18552)
Updating files: 98% (18181/18552)
Updating files: 99% (18367/18552)
Updating files: 100% (18552/18552)
Updating files: 100% (18552/18552), done.
HEAD is now at 46f289cd37 Merge pull request #29563 from NathanReb/release-ppxlib-0.38.0
Updating 46f289cd37..4e07f997e5
Fast-forward
packages/current/current.0.7.4/opam | 94 ++++++++++++++++++
packages/current_docker/current_docker.0.7.4/opam | 83 ++++++++++++++++
.../current_examples/current_examples.0.7.4/opam | 98 +++++++++++++++++++
packages/current_git/current_git.0.7.4/opam | 88 +++++++++++++++++
packages/current_github/current_github.0.7.4/opam | 97 +++++++++++++++++++
packages/current_gitlab/current_gitlab.0.7.4/opam | 59 ++++++++++++
packages/current_rpc/current_rpc.0.7.4/opam | 84 +++++++++++++++++
packages/current_slack/current_slack.0.7.4/opam | 77 +++++++++++++++
packages/current_ssh/current_ssh.0.7.4/opam | 43 +++++++++
packages/current_web/current_web.0.7.4/opam | 105 +++++++++++++++++++++
10 files changed, 828 insertions(+)
create mode 100644 packages/current/current.0.7.4/opam
create mode 100644 packages/current_docker/current_docker.0.7.4/opam
create mode 100644 packages/current_examples/current_examples.0.7.4/opam
create mode 100644 packages/current_git/current_git.0.7.4/opam
create mode 100644 packages/current_github/current_github.0.7.4/opam
create mode 100644 packages/current_gitlab/current_gitlab.0.7.4/opam
create mode 100644 packages/current_rpc/current_rpc.0.7.4/opam
create mode 100644 packages/current_slack/current_slack.0.7.4/opam
create mode 100644 packages/current_ssh/current_ssh.0.7.4/opam
create mode 100644 packages/current_web/current_web.0.7.4/opam
(from ocaml/opam:debian-testing-ocaml-4.14@sha256:52bd1ed0f9d8db1c41f681def046e3c723a38b37d19886e5601dde824c4c04b8)
2026-03-26 15:36.54 ---> using "135807f0b7e464d9bbf587870af9cb25380ced13e37bb8199b9e2502132477ff" 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-26 15:36.54 ---> using "2101e463c03efc376eb2af62e5a4e70a8dfd8e15f52bed2816e0c6b008da2100" 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-26 15:36.54 ---> using "30ac8b54559b377d06fb045df81412c2dcbe30806221d529bc33918e6bd50b9a" 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=unknown
# 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-26 15:36.54 ---> using "518f69de5429590d0f1a9e244b96d5e90fbd07a26d67f16a52eac6f568a02a1e" 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-26 15:36.54 ---> using "b57213bb51733f2b3a698c29da26d41ccd4f1b6ea32fc3cbcdf8324f0669debd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 15:36.55 ---> using "669b0d1c6af3ef3799dfd4c55d6165b5fbae8f311664aaff674ddc21d6c4e787" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:37.15 ---> saved as "c89e7acb883a8bf729484f71a2b920dfc1bda872bd8efe3035236c38979739a9"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [137 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [40.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Err:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index
- Couldn't find the start of the patch series
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Ign:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages [9691 kB]
- Fetched 9976 kB in 2s (5375 kB/s)
- Reading package lists...
-
2026-03-26 15:37.18 ---> saved as "66bb819525251f07b052bf8e143c5a5b0ed5818dfae7431ee1835d555ae54b6c"
/home/opam: (run (shell "opam pin add -k version -yn current_web.0.7.4 0.7.4"))
current_web is now pinned to version 0.7.4
2026-03-26 15:37.19 ---> saved as "289422f3a48cb71f17b8ad9836c6af35c0952787844e556a6c93124254a09e95"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_web.0.7.4;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'current_web.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
current_web.0.7.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 102 packages
- install angstrom 0.16.1 [required by multipart_form-lwt]
- install ansi 0.7.0 [required by current_web]
- install asetmap 0.8.1 [required by prometheus-app]
- install asn1-combinators 0.2.6 [required by x509]
- install astring 0.8.5 [required by current_web]
- install base v0.16.4 [required by ppx_sexp_conv]
- install base-bytes base [required by csv]
- install base64 3.5.2 [required by current_web]
- install bigstringaf 0.10.0 [required by multipart_form-lwt]
- install bos 0.2.1 [required by current_web]
- install bstr 0.0.4 [required by prettym]
- install ca-certs 0.2.3 [required by conduit-lwt-unix]
- install cmdliner 2.1.0 [required by current_web]
- install cohttp 6.2.1 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.2.1 [required by prometheus-app, cohttp-lwt-unix, session-cohttp-lwt]
- install cohttp-lwt-unix 6.2.1 [required by current_web]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by current_web]
- install conf-gmp 5 [required by zarith, conf-gmp-powm-sec]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-graphviz 0.1 [required by current_web]
- install conf-libev 4-13 [required by current]
- install conf-pkg-config 4 [required by conf-sqlite3]
- install conf-sqlite3 1 [required by sqlite3]
- install cppo 1.8.0 [required by ppx_deriving]
- install crunch 4.0.0 [required by current_web]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by current_web]
- install csv 2.4 [required by current_web]
- install current 0.7.4 [required by current_web]
- install current_incr 0.6.1 [required by current]
- install current_web 0.7.4 (pinned)
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.22.0 [required by current_web]
- install dune-compiledb 0.6.0 [required by sqlite3]
- install dune-configurator 3.22.0 [required by sqlite3]
- install duration 0.2.1 [required by current, mirage-crypto-rng-lwt]
- install eqaf 0.9 [required by mirage-crypto]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by current_web]
- install fpath 0.7.3 [required by current_web]
- install gmap 0.3.0 [required by x509]
- install hex 1.5.0 [required by ezjsonm]
- install http 6.2.1 [required by cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install jsonm 1.0.2 [required by ezjsonm]
- install ke 0.6 [required by multipart_form-lwt]
- install logs 0.10.0 [required by current_web]
- install lwt 6.1.1 [required by current_web]
- install lwt-dllist 1.1.0 [required by current]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install mirage-crypto 0.11.3 [required by current_web]
- install mirage-crypto-ec 0.11.3 [required by x509]
- install mirage-crypto-pk 0.11.3 [required by x509]
- install mirage-crypto-rng 0.11.3 [required by current_web]
- install mirage-crypto-rng-lwt 0.11.3 [required by current_web]
- install mtime 2.1.0 [required by mirage-crypto-rng-lwt]
- install multipart_form 0.8.0 [required by multipart_form-lwt]
- install multipart_form-lwt 0.8.0 [required by current_web]
- 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 bos]
- install ocamlfind 1.9.8 [required by bos]
- install ocplib-endian 1.2 [required by lwt]
- install parsexp v0.16.0 [required by sexplib]
- install pbkdf 1.2.0 [required by x509]
- install pecu 0.7 [required by multipart_form]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by current_web]
- install ppx_deriving_yojson 3.9.1 [required by current_web]
- install ppx_sexp_conv v0.16.0 [required by current_web]
- install ppxlib 0.35.0 [required by ppx_deriving_yojson]
- install prettym 0.0.4 [required by multipart_form]
- install prometheus 1.3 [required by current_web]
- install prometheus-app 1.3 [required by current_web]
- install ptime 1.2.0 [required by crunch]
- install re 1.14.0 [required by current_web]
- install result 1.5 [required by current_web]
- install routes 2.0.0 [required by current_web]
- install rresult 0.7.0 [required by bos]
- install seq base [required by tyxml]
- install session 0.5.0 [required by current_web]
- install session-cohttp 0.5.0 [required by session-cohttp-lwt]
- install session-cohttp-lwt 0.5.0 [required by current_web]
- install sexplib v0.16.0 [required by current_web]
- install sexplib0 v0.16.0 [required by cohttp-lwt, cohttp, conduit-lwt]
- install sqlite3 5.4.0 [required by current_web]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install topkg 1.1.1 [required by bos]
- install tyxml 4.6.0 [required by current_web]
- install unstrctrd 0.4 [required by multipart_form]
- install uri 4.4.0 [required by current_web]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by tyxml, multipart_form]
- install x509 0.16.5 [required by ca-certs]
- install yojson 3.0.0 [required by current_web]
- install zarith 1.14 [required by asn1-combinators, mirage-crypto-pk]
The following system packages will first need to be installed:
graphviz libev-dev libgmp-dev libsqlite3-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" "graphviz" "libev-dev" "libgmp-dev" "libsqlite3-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package libpng16-16t64: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 ... 20866 files and directories currently installed.)
- Preparing to unpack .../00-libpng16-16t64_1.6.55-1_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.55-1) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../01-libfreetype6_2.14.2+dfsg-1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.14.2+dfsg-1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../02-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../03-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fonts-liberation.
- Preparing to unpack .../04-fonts-liberation_1%3a2.1.5-3_all.deb ...
- Unpacking fonts-liberation (1:2.1.5-3) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../05-fontconfig-config_2.17.1-5_amd64.deb ...
- Unpacking fontconfig-config (2.17.1-5) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../06-libfontconfig1_2.17.1-5_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.17.1-5) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../07-fontconfig_2.17.1-5_amd64.deb ...
- Unpacking fontconfig (2.17.1-5) ...
- Selecting previously unselected package fonts-liberation-sans-narrow.
- Preparing to unpack .../08-fonts-liberation-sans-narrow_1%3a1.07.6-4_all.deb ...
- Unpacking fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Selecting previously unselected package libcdt6:amd64.
- Preparing to unpack .../09-libcdt6_14.1.2-1_amd64.deb ...
- Unpacking libcdt6:amd64 (14.1.2-1) ...
- Selecting previously unselected package libcgraph8:amd64.
- Preparing to unpack .../10-libcgraph8_14.1.2-1_amd64.deb ...
- Unpacking libcgraph8:amd64 (14.1.2-1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../11-libltdl7_2.5.4-9_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-9) ...
- Selecting previously unselected package libpathplan4:amd64.
- Preparing to unpack .../12-libpathplan4_14.1.2-1_amd64.deb ...
- Unpacking libpathplan4:amd64 (14.1.2-1) ...
- Selecting previously unselected package libxdot4:amd64.
- Preparing to unpack .../13-libxdot4_14.1.2-1_amd64.deb ...
- Unpacking libxdot4:amd64 (14.1.2-1) ...
- Selecting previously unselected package libgvc7:amd64.
- Preparing to unpack .../14-libgvc7_14.1.2-1_amd64.deb ...
- Unpacking libgvc7:amd64 (14.1.2-1) ...
- Selecting previously unselected package libgvpr2:amd64.
- Preparing to unpack .../15-libgvpr2_14.1.2-1_amd64.deb ...
- Unpacking libgvpr2:amd64 (14.1.2-1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../16-libpixman-1-0_0.46.4-1+b1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.46.4-1+b1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../17-libxcb-render0_1.17.0-2+b2_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b2) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../18-libxcb-shm0_1.17.0-2+b2_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b2) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../19-libxrender1_1%3a0.9.12-1+b1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1+b1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../20-libcairo2_1.18.4-3_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-3) ...
- Selecting previously unselected package libaom3:amd64.
- Preparing to unpack .../21-libaom3_3.13.1-2_amd64.deb ...
- Unpacking libaom3:amd64 (3.13.1-2) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../22-libdav1d7_1.5.3-1+b1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.3-1+b1) ...
- Selecting previously unselected package libabsl20240722:amd64.
- Preparing to unpack .../23-libabsl20240722_20240722.0-4_amd64.deb ...
- Unpacking libabsl20240722:amd64 (20240722.0-4) ...
- Selecting previously unselected package libgav1-2:amd64.
- Preparing to unpack .../24-libgav1-2_0.20.0-2_amd64.deb ...
- Unpacking libgav1-2:amd64 (0.20.0-2) ...
- Selecting previously unselected package librav1e0.8:amd64.
- Preparing to unpack .../25-librav1e0.8_0.8.1-7_amd64.deb ...
- Unpacking librav1e0.8:amd64 (0.8.1-7) ...
- Selecting previously unselected package libsvtav1enc2:amd64.
- Preparing to unpack .../26-libsvtav1enc2_2.3.0+dfsg-1_amd64.deb ...
- Unpacking libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../27-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libyuv0:amd64.
- Preparing to unpack .../28-libyuv0_0.0.1922.20260106-1_amd64.deb ...
- Unpacking libyuv0:amd64 (0.0.1922.20260106-1) ...
- Selecting previously unselected package libavif16:amd64.
- Preparing to unpack .../29-libavif16_1.4.0-1_amd64.deb ...
- Unpacking libavif16:amd64 (1.4.0-1) ...
- Selecting previously unselected package libsharpyuv0:amd64.
- Preparing to unpack .../30-libsharpyuv0_1.5.0-0.1+b1_amd64.deb ...
- Unpacking libsharpyuv0:amd64 (1.5.0-0.1+b1) ...
- Selecting previously unselected package libde265-0:amd64.
- Preparing to unpack .../31-libde265-0_1.0.16-1+b1_amd64.deb ...
- Unpacking libde265-0:amd64 (1.0.16-1+b1) ...
- Selecting previously unselected package libheif-plugin-libde265:amd64.
- Preparing to unpack .../32-libheif-plugin-libde265_1.21.2-3+b1_amd64.deb ...
- Unpacking libheif-plugin-libde265:amd64 (1.21.2-3+b1) ...
- Selecting previously unselected package libheif-plugin-dav1d:amd64.
- Preparing to unpack .../33-libheif-plugin-dav1d_1.21.2-3+b1_amd64.deb ...
- Unpacking libheif-plugin-dav1d:amd64 (1.21.2-3+b1) ...
- Selecting previously unselected package libheif1:amd64.
- Preparing to unpack .../34-libheif1_1.21.2-3+b1_amd64.deb ...
- Unpacking libheif1:amd64 (1.21.2-3+b1) ...
- Selecting previously unselected package libimagequant0:amd64.
- Preparing to unpack .../35-libimagequant0_4.4.1-1+b1_amd64.deb ...
- Unpacking libimagequant0:amd64 (4.4.1-1+b1) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../36-libdeflate0_1.23-2+b1_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2+b1) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../37-libjbig0_2.1-6.1+b3_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-6.1+b3) ...
- Selecting previously unselected package liblerc4:amd64.
- Preparing to unpack .../38-liblerc4_4.1.0+ds-1_amd64.deb ...
- Unpacking liblerc4:amd64 (4.1.0+ds-1) ...
- Selecting previously unselected package libwebp7:amd64.
- Preparing to unpack .../39-libwebp7_1.5.0-0.1+b1_amd64.deb ...
- Unpacking libwebp7:amd64 (1.5.0-0.1+b1) ...
- Selecting previously unselected package libtiff6:amd64.
- Preparing to unpack .../40-libtiff6_4.7.1-1_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.1-1) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../41-libxpm4_1%3a3.5.17-1+b4_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.17-1+b4) ...
- Selecting previously unselected package libgd3:amd64.
- Preparing to unpack .../42-libgd3_2.3.3-13+b1_amd64.deb ...
- Unpacking libgd3:amd64 (2.3.3-13+b1) ...
- Selecting previously unselected package libgvplugin-gd8:amd64.
- Preparing to unpack .../43-libgvplugin-gd8_14.1.2-1_amd64.deb ...
- Unpacking libgvplugin-gd8:amd64 (14.1.2-1) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../44-libglib2.0-0t64_2.88.0-1_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.88.0-1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../45-libfribidi0_1.0.16-5_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-5) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../46-libgraphite2-3_1.3.14-11+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-11+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../47-libharfbuzz0b_12.3.2-2+b2_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (12.3.2-2+b2) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../48-libthai-data_0.1.30-1_all.deb ...
- Unpacking libthai-data (0.1.30-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../49-libdatrie1_0.2.14-1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.14-1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../50-libthai0_0.1.30-1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.30-1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../51-libpango-1.0-0_1.57.0-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.57.0-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../52-libpangoft2-1.0-0_1.57.0-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.57.0-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../53-libpangocairo-1.0-0_1.57.0-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.57.0-1) ...
- Selecting previously unselected package libgvplugin-pango8:amd64.
- Preparing to unpack .../54-libgvplugin-pango8_14.1.2-1_amd64.deb ...
- Unpacking libgvplugin-pango8:amd64 (14.1.2-1) ...
- Selecting previously unselected package graphviz.
- Preparing to unpack .../55-graphviz_14.1.2-1_amd64.deb ...
- Unpacking graphviz (14.1.2-1) ...
- Selecting previously unselected package libev4t64:amd64.
- Preparing to unpack .../56-libev4t64_1%3a4.33-2.1+b2_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b2) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../57-libev-dev_1%3a4.33-2.1+b2_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../58-libglib2.0-data_2.88.0-1_all.deb ...
- Unpacking libglib2.0-data (2.88.0-1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../59-libgmpxx4ldbl_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../60-libgmp-dev_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libheif-plugin-aomenc:amd64.
- Preparing to unpack .../61-libheif-plugin-aomenc_1.21.2-3+b1_amd64.deb ...
- Unpacking libheif-plugin-aomenc:amd64 (1.21.2-3+b1) ...
- Selecting previously unselected package libnuma1:amd64.
- Preparing to unpack .../62-libnuma1_2.0.19-1+b1_amd64.deb ...
- Unpacking libnuma1:amd64 (2.0.19-1+b1) ...
- Selecting previously unselected package libx265-215:amd64.
- Preparing to unpack .../63-libx265-215_4.1-4+b1_amd64.deb ...
- Unpacking libx265-215:amd64 (4.1-4+b1) ...
- Selecting previously unselected package libheif-plugin-x265:amd64.
- Preparing to unpack .../64-libheif-plugin-x265_1.21.2-3+b1_amd64.deb ...
- Unpacking libheif-plugin-x265:amd64 (1.21.2-3+b1) ...
- Selecting previously unselected package libpkgconf7:amd64.
- Preparing to unpack .../65-libpkgconf7_2.5.1-4_amd64.deb ...
- Unpacking libpkgconf7:amd64 (2.5.1-4) ...
- Preparing to unpack .../66-libsqlite3-0_3.46.1-9+b1_amd64.deb ...
- Unpacking libsqlite3-0:amd64 (3.46.1-9+b1) over (3.46.1-9) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../67-libsqlite3-dev_3.46.1-9+b1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-9+b1) ...
- Selecting previously unselected package libxml2-16:amd64.
- Preparing to unpack .../68-libxml2-16_2.15.1+dfsg-2+b1_amd64.deb ...
- Unpacking libxml2-16:amd64 (2.15.1+dfsg-2+b1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../69-pkgconf-bin_2.5.1-4_amd64.deb ...
- Unpacking pkgconf-bin (2.5.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../70-pkgconf_2.5.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (2.5.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../71-pkg-config_2.5.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (2.5.1-4) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../72-shared-mime-info_2.4-5+b3_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b3) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../73-xdg-user-dirs_0.19-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.19-1) ...
- Setting up libxdot4:amd64 (14.1.2-1) ...
- Setting up libgraphite2-3:amd64 (1.3.14-11+b1) ...
- Setting up libcdt6:amd64 (14.1.2-1) ...
- Setting up libpixman-1-0:amd64 (0.46.4-1+b1) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b2) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1+b1) ...
- Setting up libaom3:amd64 (3.13.1-2) ...
- Setting up liblerc4:amd64 (4.1.0+ds-1) ...
- Setting up libxpm4:amd64 (1:3.5.17-1+b4) ...
- Setting up libxrender1:amd64 (1:0.9.12-1+b1) ...
- Setting up libdatrie1:amd64 (0.2.14-1) ...
- Setting up xdg-user-dirs (0.19-1) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b2) ...
- Setting up libxml2-16:amd64 (2.15.1+dfsg-2+b1) ...
- Setting up libsqlite3-0:amd64 (3.46.1-9+b1) ...
- Setting up libpkgconf7:amd64 (2.5.1-4) ...
- Setting up libdeflate0:amd64 (1.23-2+b1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b2) ...
- Setting up libabsl20240722:amd64 (20240722.0-4) ...
- Setting up libjbig0:amd64 (2.1-6.1+b3) ...
- Setting up librav1e0.8:amd64 (0.8.1-7) ...
- Setting up libglib2.0-0t64:amd64 (2.88.0-1) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.88.0-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-9+b1) ...
- Setting up libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Setting up libpathplan4:amd64 (14.1.2-1) ...
- Setting up libfribidi0:amd64 (1.0.16-5) ...
- Setting up shared-mime-info (2.4-5+b3) ...
- Setting up libimagequant0:amd64 (4.4.1-1+b1) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.55-1) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up pkgconf-bin (2.5.1-4) ...
- Setting up libltdl7:amd64 (2.5.4-9) ...
- Setting up libcgraph8:amd64 (14.1.2-1) ...
- Setting up libwebp7:amd64 (1.5.0-0.1+b1) ...
- Setting up libgav1-2:amd64 (0.20.0-2) ...
- Setting up libnuma1:amd64 (2.0.19-1+b1) ...
- Setting up libgvpr2:amd64 (14.1.2-1) ...
- Setting up libdav1d7:amd64 (1.5.3-1+b1) ...
- Setting up libtiff6:amd64 (4.7.1-1) ...
- Setting up fonts-liberation (1:2.1.5-3) ...
- Setting up libthai-data (0.1.30-1) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b2) ...
- Setting up fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Setting up libde265-0:amd64 (1.0.16-1+b1) ...
- Setting up libx265-215:amd64 (4.1-4+b1) ...
- Setting up libyuv0:amd64 (0.0.1922.20260106-1) ...
- Setting up libavif16:amd64 (1.4.0-1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up fontconfig-config (2.17.1-5) ...
- Setting up pkgconf:amd64 (2.5.1-4) ...
- Setting up libthai0:amd64 (0.1.30-1) ...
- Setting up libfreetype6:amd64 (2.14.2+dfsg-1) ...
- Setting up pkg-config:amd64 (2.5.1-4) ...
- Setting up libgvc7:amd64 (14.1.2-1) ...
- Setting up libharfbuzz0b:amd64 (12.3.2-2+b2) ...
- Setting up libfontconfig1:amd64 (2.17.1-5) ...
- Setting up fontconfig (2.17.1-5) ...
- Regenerating fonts cache...
- done.
- Setting up libpango-1.0-0:amd64 (1.57.0-1) ...
- Setting up libcairo2:amd64 (1.18.4-3) ...
- Setting up libpangoft2-1.0-0:amd64 (1.57.0-1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.57.0-1) ...
- Setting up libgvplugin-pango8:amd64 (14.1.2-1) ...
- Setting up libheif-plugin-libde265:amd64 (1.21.2-3+b1) ...
- Setting up libheif1:amd64 (1.21.2-3+b1) ...
- Setting up libgd3:amd64 (2.3.3-13+b1) ...
- Setting up libheif-plugin-dav1d:amd64 (1.21.2-3+b1) ...
- Setting up libheif-plugin-x265:amd64 (1.21.2-3+b1) ...
- Setting up libheif-plugin-aomenc:amd64 (1.21.2-3+b1) ...
- Setting up libgvplugin-gd8:amd64 (14.1.2-1) ...
- Setting up graphviz (14.1.2-1) ...
- Processing triggers for libc-bin (2.42-11+b1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved ansi.0.7.0 (cached)
-> retrieved asetmap.0.8.1 (cached)
-> retrieved asn1-combinators.0.2.6 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved bstr.0.0.4 (cached)
-> retrieved ca-certs.0.2.3 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved conf-libev.4-13 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved crunch.4.0.0 (cached)
-> installed conf-gmp.5
-> installed conf-graphviz.0.1
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-sqlite3.1
-> retrieved cstruct.6.2.0 (cached)
-> retrieved csv.2.4 (cached)
-> retrieved current.0.7.4, current_web.0.7.4 (cached)
-> installed conf-libev.4-13
-> retrieved current_incr.0.6.1 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.22.0, dune-configurator.3.22.0 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hex.1.5.0 (cached)
-> installed cmdliner.2.1.0
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved ke.0.6 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3, mirage-crypto-rng-lwt.0.11.3 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved multipart_form.0.8.0, multipart_form-lwt.0.8.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved pbkdf.1.2.0 (cached)
-> retrieved pecu.0.7 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_deriving_yojson.3.9.1 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved prettym.0.0.4 (cached)
-> retrieved prometheus.1.3, prometheus-app.1.3 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved routes.2.0.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved session.0.5.0, session-cohttp.0.5.0, session-cohttp-lwt.0.5.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved sqlite3.5.4.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved tyxml.4.6.0 (cached)
-> retrieved unstrctrd.0.4 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved x509.0.16.5 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed duration.0.2.1
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed bstr.0.0.4
-> installed cppo.1.8.0
-> installed crunch.4.0.0
-> installed cstruct.6.2.0
-> installed csv.2.4
-> installed current_incr.0.6.1
-> installed domain-name.0.5.0
-> installed gmap.0.3.0
-> installed http.6.2.1
-> installed ke.0.6
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed pecu.0.7
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed asn1-combinators.0.2.6
-> installed eqaf.0.9
-> installed hex.1.5.0
-> installed routes.2.0.0
-> installed prettym.0.0.4
-> installed ipaddr.5.6.2
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.22.0
-> installed parsexp.v0.16.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed sexplib.v0.16.0
-> installed unstrctrd.0.4
-> installed dune-compiledb.0.6.0
-> installed mirage-crypto.0.11.3
-> installed pbkdf.1.2.0
-> installed tyxml.4.6.0
-> installed uri.4.4.0
-> installed ansi.0.7.0
-> installed lwt.6.1.1
-> installed prometheus.1.3
-> installed sqlite3.5.4.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.0.11.3
-> installed multipart_form.0.8.0
-> installed session.0.5.0
-> installed mirage-crypto-rng-lwt.0.11.3
-> installed multipart_form-lwt.0.8.0
-> installed base.v0.16.4
-> installed mirage-crypto-pk.0.11.3
-> installed bos.0.2.1
-> installed mirage-crypto-ec.0.11.3
-> installed x509.0.16.5
-> installed ca-certs.0.2.3
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.2
-> installed ppx_deriving_yojson.3.9.1
-> installed current.0.7.4
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed session-cohttp.0.5.0
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed session-cohttp-lwt.0.5.0
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed prometheus-app.1.3
-> installed current_web.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:40.11 ---> saved as "dcb70bcad3a39a21d0bd897c07e576d645a45dd863824e5c82a277ec26db6b53"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test current_web.0.7.4) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile current_web 0.7.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved current_web.0.7.4 (https://github.com/ocurrent/ocurrent/releases/download/v0.7.4/ocurrent-0.7.4.tbz)
-> removed current_web.0.7.4
-> installed current_web.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:40.24 ---> saved as "dd3c507e7aa29cbfd1900071a261b53f1be33ffa9e57b10edb6fa357a85a6734"
/home/opam: (run (shell "opam reinstall --with-test --verbose current_web.0.7.4;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'current_web.0.7.4' && 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 current_web 0.7.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [current_web.0.7.4: extract]
-> retrieved current_web.0.7.4 (cached)
Processing 2/4: [current_web: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current_web" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/current_web.0.7.4)
-> compiled current_web.0.7.4
-> removed current_web.0.7.4
-> installed current_web.0.7.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:40.40 ---> saved as "50541fa59b568b02ab52faca834ce8a792e29f94a559c81dc4401226c7062459"
Job succeeded
2026-03-26 15:40.47: Job succeeded