- github
- ocaml
- opam-repository
- dd5533
- compilers,4.14,dune-configurator.3.20.0~alpha2,revdeps,benchpress.0.1
(not at the head of any monitored branch or PR)
2025-08-05 14:00.26: New job: test benchpress.0.1 with dune-configurator.3.20.0~alpha2, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
on debian-12-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/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune-configurator.3.20.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-configurator.3.20.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 benchpress.0.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'benchpress.0.1' && 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 benchpress.0.1) || true
RUN opam reinstall --with-test --verbose benchpress.0.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'benchpress.0.1' && 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 .
2025-08-05 14:00.26: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune-configurator.3.20.0~alpha2-benchpress.0.1-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:00.26: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha2 3.20.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.20.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-12\\\"\"; 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.20.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 benchpress.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'benchpress.0.1' && 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 benchpress.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose benchpress.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'benchpress.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-05 14:00.26: Waiting for resource in pool OCluster
2025-08-05 20:23.38: Waiting for worker…
2025-08-05 20:26.25: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 46% (8298/17995)
Updating files: 47% (8458/17995)
Updating files: 48% (8638/17995)
Updating files: 49% (8818/17995)
Updating files: 50% (8998/17995)
Updating files: 51% (9178/17995)
Updating files: 52% (9358/17995)
Updating files: 53% (9538/17995)
Updating files: 54% (9718/17995)
Updating files: 55% (9898/17995)
Updating files: 56% (10078/17995)
Updating files: 57% (10258/17995)
Updating files: 58% (10438/17995)
Updating files: 59% (10618/17995)
Updating files: 60% (10797/17995)
Updating files: 61% (10977/17995)
Updating files: 62% (11157/17995)
Updating files: 63% (11337/17995)
Updating files: 64% (11517/17995)
Updating files: 65% (11697/17995)
Updating files: 66% (11877/17995)
Updating files: 67% (12057/17995)
Updating files: 68% (12237/17995)
Updating files: 69% (12417/17995)
Updating files: 70% (12597/17995)
Updating files: 71% (12777/17995)
Updating files: 72% (12957/17995)
Updating files: 73% (13137/17995)
Updating files: 74% (13317/17995)
Updating files: 75% (13497/17995)
Updating files: 76% (13677/17995)
Updating files: 77% (13857/17995)
Updating files: 78% (14037/17995)
Updating files: 79% (14217/17995)
Updating files: 80% (14396/17995)
Updating files: 81% (14576/17995)
Updating files: 82% (14756/17995)
Updating files: 83% (14936/17995)
Updating files: 84% (15116/17995)
Updating files: 85% (15296/17995)
Updating files: 86% (15476/17995)
Updating files: 87% (15656/17995)
Updating files: 88% (15836/17995)
Updating files: 89% (16016/17995)
Updating files: 90% (16196/17995)
Updating files: 91% (16376/17995)
Updating files: 92% (16556/17995)
Updating files: 93% (16736/17995)
Updating files: 94% (16916/17995)
Updating files: 95% (17096/17995)
Updating files: 96% (17276/17995)
Updating files: 97% (17456/17995)
Updating files: 98% (17636/17995)
Updating files: 99% (17816/17995)
Updating files: 100% (17995/17995)
Updating files: 100% (17995/17995), done.
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha2/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha2/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha2/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha2/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha2/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/dune-site/dune-site.3.20.0~alpha2/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha2/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha2/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha2/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha2/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha2/opam | 41 ++++++++++++
15 files changed, 704 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally
docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam
a77c4f4a24ac: Already exists
9d1a03aa3c71: Pulling fs layer
baba434270f2: Pulling fs layer
2a8a0f93626e: Pulling fs layer
f6ba2ed01176: Pulling fs layer
f6ba2ed01176: Waiting
2a8a0f93626e: Verifying Checksum
2a8a0f93626e: Download complete
baba434270f2: Verifying Checksum
baba434270f2: Download complete
f6ba2ed01176: Download complete
9d1a03aa3c71: Download complete
9d1a03aa3c71: Pull complete
baba434270f2: Pull complete
2a8a0f93626e: Pull complete
f6ba2ed01176: Pull complete
Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
2025-08-05 20:26.34 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 20:26.34 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" 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 development 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
2025-08-05 20:26.34 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# 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
2025-08-05 20:26.34 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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/"))
2025-08-05 20:26.34 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 20:26.36 ---> using "d7c14fc292f88db48f1d08b5e5bee64699faa33d6c6497ea4d0ded851936243b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 20:26.36 ---> using "4d064c1160c8dcca737cd7528eeaed565bdc230fcc7555f114d63e3df515c34a" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [19.6 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 402 kB in 0s (820 kB/s)
- Reading package lists...
-
2025-08-05 20:26.36 ---> using "f43accf761343248e80f7b61b22936d9bfc3109749567c716c34e25a997df933" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.20.0~alpha2 3.20.0~alpha2"))
dune-configurator is now pinned to version 3.20.0~alpha2
2025-08-05 20:26.36 ---> using "498f610c53b8e71303caac3cc5fc8285da935f9b9ddc7e38d587c4c9eebb2041" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.20.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-12\\\"\"; 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.20.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.20.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.20.0~alpha2 [required by dune-configurator]
- install dune-configurator 3.20.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.0~alpha2, dune-configurator.3.20.0~alpha2 (cached)
-> installed dune.3.20.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 20:26.36 ---> using "3e71451dcd4420bb892311c68f87187f8d40fb27d797094012ca2caa9183ec4e" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall benchpress.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'benchpress.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
benchpress.0.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 27 packages
- install base-bytes base [required by csv, printbox]
- install base64 3.5.1 [required by benchpress]
- install benchpress 0.1
- install cmdliner 1.3.0 [required by benchpress]
- install conf-gnuplot 0.1 [required by gnuplot]
- install conf-pkg-config 4 [required by conf-sqlite3]
- install conf-sqlite3 1 [required by sqlite3]
- install containers 2.8.1 [required by benchpress]
- install csv 2.4 [required by benchpress]
- install decoders 0.3.0 [required by benchpress]
- install gnuplot 0.7 [required by benchpress]
- install ISO8601 0.2.6 [required by gnuplot]
- install iter 1.9 [required by benchpress]
- install logs 0.9.0 [required by benchpress]
- install ocaml-protoc 2.4 [required by benchpress]
- install ocamlbuild 0.16.1 [required by logs, uuidm]
- install ocamlfind 1.9.8 [required by logs, uuidm]
- install pbrt 2.4 [required by ocaml-protoc]
- install printbox 0.5 [required by benchpress]
- install re 1.13.2 [required by benchpress]
- install result 1.5 [required by benchpress]
- install seq base [required by re, containers, sqlite3_utils]
- install sqlite3 5.3.1 [required by benchpress]
- install sqlite3_utils 0.3.1 [required by benchpress]
- install stdlib-shims 0.3.0 [required by ocaml-protoc]
- install topkg 1.1.0 [required by logs, uuidm]
- install uuidm 0.9.10 [required by benchpress]
The following system packages will first need to be installed:
gnuplot-x11 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" "gnuplot-x11" "libsqlite3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libargon2-1: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 ... 18747 files and directories currently installed.)
- Preparing to unpack .../00-libargon2-1_0~20171227-0.3+deb12u1_amd64.deb ...
- Unpacking libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../01-dmsetup_2%3a1.02.185-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../02-libdevmapper1.02.1_2%3a1.02.185-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../03-libjson-c5_0.16-2_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.16-2) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../04-libcryptsetup12_2%3a2.6.1-4~deb12u2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Selecting previously unselected package libfdisk1:amd64.
- Preparing to unpack .../05-libfdisk1_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libfdisk1:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../06-libkmod2_30+20221128-1_amd64.deb ...
- Unpacking libkmod2:amd64 (30+20221128-1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../07-libapparmor1_3.0.8-3_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.8-3) ...
- Selecting previously unselected package libip4tc2:amd64.
- Preparing to unpack .../08-libip4tc2_1.8.9-2_amd64.deb ...
- Unpacking libip4tc2:amd64 (1.8.9-2) ...
- Selecting previously unselected package libsystemd-shared:amd64.
- Preparing to unpack .../09-libsystemd-shared_252.38-1~deb12u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (252.38-1~deb12u1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_252.38-1~deb12u1_amd64.deb ...
- Unpacking systemd (252.38-1~deb12u1) ...
- Setting up libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Setting up libjson-c5:amd64 (0.16-2) ...
- Setting up libfdisk1:amd64 (2.38.1-5+deb12u3) ...
- Setting up libkmod2:amd64 (30+20221128-1) ...
- Setting up libapparmor1:amd64 (3.0.8-3) ...
- Setting up libip4tc2:amd64 (1.8.9-2) ...
- Setting up libsystemd-shared:amd64 (252.38-1~deb12u1) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Setting up libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Setting up systemd (252.38-1~deb12u1) ...
- Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service.
- Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service.
- Initializing machine ID from random generator.
- Creating group 'systemd-journal' with GID 999.
- Creating group 'systemd-network' with GID 998.
- Creating user 'systemd-network' (systemd Network Management) with UID 998 and GID 998.
- Setting up dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package systemd-sysv.
- (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 ... 19663 files and directories currently installed.)
- Preparing to unpack .../00-systemd-sysv_252.38-1~deb12u1_amd64.deb ...
- Unpacking systemd-sysv (252.38-1~deb12u1) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../01-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../02-dbus-bin_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-bin (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../03-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../04-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-daemon (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../05-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../06-dbus_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../07-libnss-systemd_252.38-1~deb12u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (252.38-1~deb12u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../08-libpam-systemd_252.38-1~deb12u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (252.38-1~deb12u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../09-systemd-timesyncd_252.38-1~deb12u1_amd64.deb ...
- Unpacking systemd-timesyncd (252.38-1~deb12u1) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../10-hicolor-icon-theme_0.17-2_all.deb ...
- Unpacking hicolor-icon-theme (0.17-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../11-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u2_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../12-libglib2.0-0_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../13-libicu72_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../14-libxml2_2.9.14+dfsg-1.3~deb12u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../15-shared-mime-info_2.2-1_amd64.deb ...
- Unpacking shared-mime-info (2.2-1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../16-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u2_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../17-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../18-adwaita-icon-theme_43-1_all.deb ...
- Unpacking adwaita-icon-theme (43-1) ...
- Selecting previously unselected package aglfn.
- Preparing to unpack .../19-aglfn_1.7+git20191031.4036a9c-2_all.deb ...
- Unpacking aglfn (1.7+git20191031.4036a9c-2) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../20-at-spi2-common_2.46.0-5_all.deb ...
- Unpacking at-spi2-common (2.46.0-5) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../21-libxi6_2%3a1.8-1+b1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8-1+b1) ...
- Selecting previously unselected package libatspi2.0-0:amd64.
- Preparing to unpack .../22-libatspi2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatspi2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../23-x11-common_1%3a7.7+23_all.deb ...
- Unpacking x11-common (1:7.7+23) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../24-libxtst6_2%3a1.2.3-1.1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.3-1.1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../25-dbus-user-session_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-user-session (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../26-libdconf1_0.40.0-4_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-4) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../27-dconf-service_0.40.0-4_amd64.deb ...
- Unpacking dconf-service (0.40.0-4) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../28-dconf-gsettings-backend_0.40.0-4_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../29-gsettings-desktop-schemas_43.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (43.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../30-at-spi2-core_2.46.0-5_amd64.deb ...
- Unpacking at-spi2-core (2.46.0-5) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../31-fontconfig_2.14.1-4_amd64.deb ...
- Unpacking fontconfig (2.14.1-4) ...
- Selecting previously unselected package gnuplot-data.
- Preparing to unpack .../32-gnuplot-data_5.4.4+dfsg1-2_all.deb ...
- Unpacking gnuplot-data (5.4.4+dfsg1-2) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../33-libpixman-1-0_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.42.2-1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../34-libxcb-render0_1.15-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../35-libxcb-shm0_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../36-libxrender1_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../37-libcairo2_1.16.0-7_amd64.deb ...
- Unpacking libcairo2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblua5.4-0:amd64.
- Preparing to unpack .../38-liblua5.4-0_5.4.4-3+deb12u1_amd64.deb ...
- Unpacking liblua5.4-0:amd64 (5.4.4-3+deb12u1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../39-libfribidi0_1.0.8-2.1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.8-2.1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../40-libgraphite2-3_1.3.14-1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../41-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../42-libthai-data_0.1.29-1_all.deb ...
- Unpacking libthai-data (0.1.29-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../43-libdatrie1_0.2.13-2+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-2+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../44-libthai0_0.1.29-1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../45-libpango-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../46-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../47-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../48-libpcre2-32-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.42-1) ...
- Selecting previously unselected package libwxbase3.2-1:amd64.
- Preparing to unpack .../49-libwxbase3.2-1_3.2.2+dfsg-2_amd64.deb ...
- Unpacking libwxbase3.2-1:amd64 (3.2.2+dfsg-2) ...
- Selecting previously unselected package libatk1.0-0:amd64.
- Preparing to unpack .../50-libatk1.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk1.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libatk-bridge2.0-0:amd64.
- Preparing to unpack .../51-libatk-bridge2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../52-libcairo-gobject2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../53-liblcms2-2_2.14-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.14-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../54-libcolord2_1.4.6-2.2_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.6-2.2) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../55-libavahi-common-data_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../56-libavahi-common3_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../57-libavahi-client3_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../58-libcups2_2.4.2-3+deb12u8_amd64.deb ...
- Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../59-libepoxy0_1.5.10-1_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../60-libwayland-client0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../61-libwayland-cursor0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../62-libwayland-egl1_1.21.0-1_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.21.0-1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../63-libxcomposite1_1%3a0.4.5-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.5-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../64-libxfixes3_1%3a6.0.0-2_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../65-libxcursor1_1%3a1.2.1-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.1-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../66-libxdamage1_1%3a1.1.6-1_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../67-libxinerama1_2%3a1.1.4-3_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../68-xkb-data_2.35.1-1_all.deb ...
- Unpacking xkb-data (2.35.1-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../69-libxkbcommon0_1.5.0-1_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.5.0-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../70-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../71-libgtk-3-common_3.24.38-2~deb12u3_all.deb ...
- Unpacking libgtk-3-common (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libgtk-3-0:amd64.
- Preparing to unpack .../72-libgtk-3-0_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-0:amd64 (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libnotify4:amd64.
- Preparing to unpack .../73-libnotify4_0.8.1-1_amd64.deb ...
- Unpacking libnotify4:amd64 (0.8.1-1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../74-libice6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../75-libsm6_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libwxgtk3.2-1:amd64.
- Preparing to unpack .../76-libwxgtk3.2-1_3.2.2+dfsg-2_amd64.deb ...
- Unpacking libwxgtk3.2-1:amd64 (3.2.2+dfsg-2) ...
- Selecting previously unselected package gnuplot-x11.
- Preparing to unpack .../77-gnuplot-x11_5.4.4+dfsg1-2+b2_amd64.deb ...
- Unpacking gnuplot-x11 (5.4.4+dfsg1-2+b2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../78-libgdk-pixbuf2.0-bin_2.42.10+dfsg-1+deb12u2_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../79-libglib2.0-data_2.74.6-2+deb12u6_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../80-libgtk-3-bin_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../81-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../82-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../83-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../84-libsqlite3-dev_3.40.1-2+deb12u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.40.1-2+deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../85-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../86-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../87-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../88-xdg-user-dirs_0.18-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-1) ...
- Setting up libgraphite2-3:amd64 (1.3.14-1) ...
- Setting up liblcms2-2:amd64 (2.14-2) ...
- Setting up libpixman-1-0:amd64 (0.42.2-1) ...
- Setting up fontconfig (2.14.1-4) ...
- Regenerating fonts cache...
- done.
- Setting up systemd-sysv (252.38-1~deb12u1) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1) ...
- Setting up libicu72:amd64 (72.1-3+deb12u1) ...
- Setting up hicolor-icon-theme (0.17-2) ...
- Setting up libxi6:amd64 (2:1.8-1+b1) ...
- Setting up libxrender1:amd64 (1:0.9.10-1.1) ...
- Setting up libdatrie1:amd64 (0.2.13-2+b1) ...
- Setting up xdg-user-dirs (0.18-1) ...
- Setting up libxcb-render0:amd64 (1.15-1) ...
- Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u2) ...
- Setting up x11-common (1:7.7+23) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of restart.
- Setting up libnss-systemd:amd64 (252.38-1~deb12u1) ...
- Setting up xkb-data (2.35.1-1) ...
- Setting up libxcb-shm0:amd64 (1.15-1) ...
- Setting up libcairo2:amd64 (1.16.0-7) ...
- Setting up libcolord2:amd64 (1.4.6-2.2) ...
- Setting up libdconf1:amd64 (0.40.0-4) ...
- Setting up libpcre2-32-0:amd64 (10.42-1) ...
- Setting up libglib2.0-data (2.74.6-2+deb12u6) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libsqlite3-dev:amd64 (3.40.1-2+deb12u1) ...
- Setting up libepoxy0:amd64 (1.5.10-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2) ...
- Setting up aglfn (1.7+git20191031.4036a9c-2) ...
- Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Setting up libfribidi0:amd64 (1.0.8-2.1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3) ...
- Setting up systemd-timesyncd (252.38-1~deb12u1) ...
- Creating group 'systemd-timesync' with GID 997.
- Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.
- Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service.
- Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up at-spi2-common (2.46.0-5) ...
- Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Setting up liblua5.4-0:amd64 (5.4.4-3+deb12u1) ...
- Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Setting up libthai-data (0.1.29-1) ...
- Setting up libcairo-gobject2:amd64 (1.16.0-7) ...
- Setting up libatk1.0-0:amd64 (2.46.0-5) ...
- Setting up libwayland-egl1:amd64 (1.21.0-1) ...
- Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Setting up dbus-bin (1.14.10-1~deb12u1) ...
- Setting up libxkbcommon0:amd64 (1.5.0-1) ...
- Setting up libwayland-client0:amd64 (1.21.0-1) ...
- Setting up gnuplot-data (5.4.4+dfsg1-2) ...
- Setting up libice6:amd64 (2:1.0.10-1) ...
- Setting up libxtst6:amd64 (2:1.2.3-1.1) ...
- Setting up libxcursor1:amd64 (1:1.2.1-1) ...
- Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ...
- Setting up dbus-daemon (1.14.10-1~deb12u1) ...
- Setting up libatspi2.0-0:amd64 (2.46.0-5) ...
- Setting up libwxbase3.2-1:amd64 (3.2.2+dfsg-2) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Setting up libthai0:amd64 (0.1.29-1) ...
- Setting up dbus (1.14.10-1~deb12u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.2-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Setting up libwayland-cursor0:amd64 (1.21.0-1) ...
- Setting up libpam-systemd:amd64 (252.38-1~deb12u1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up dbus-user-session (1.14.10-1~deb12u1) ...
- Setting up adwaita-icon-theme (43-1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up libnotify4:amd64 (0.8.1-1) ...
- Setting up libcups2:amd64 (2.4.2-3+deb12u8) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u2) ...
- Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up dconf-service (0.40.0-4) ...
- Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Setting up libgtk-3-common (3.24.38-2~deb12u3) ...
- Setting up gsettings-desktop-schemas (43.0-1) ...
- Setting up libgtk-3-0:amd64 (3.24.38-2~deb12u3) ...
- Setting up libgtk-3-bin (3.24.38-2~deb12u3) ...
- Setting up at-spi2-core (2.46.0-5) ...
- Setting up libwxgtk3.2-1:amd64 (3.2.2+dfsg-2) ...
- Setting up gnuplot-x11 (5.4.4+dfsg1-2+b2) ...
- update-alternatives: using /usr/bin/gnuplot-x11 to provide /usr/bin/gnuplot (gnuplot) in auto mode
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.1 (cached)
-> retrieved benchpress.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved containers.2.8.1 (cached)
-> installed conf-pkg-config.4
-> retrieved csv.2.4 (cached)
-> retrieved decoders.0.3.0 (cached)
-> installed conf-gnuplot.0.1
-> installed conf-sqlite3.1
-> retrieved gnuplot.0.7 (cached)
-> retrieved ISO8601.0.2.6 (cached)
-> retrieved iter.1.9 (cached)
-> retrieved logs.0.9.0 (cached)
-> retrieved ocaml-protoc.2.4, pbrt.2.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved printbox.0.5 (cached)
-> retrieved re.1.13.2 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> installed decoders.0.3.0
-> installed base64.3.5.1
-> installed ISO8601.0.2.6
-> retrieved sqlite3.5.3.1 (cached)
-> retrieved sqlite3_utils.0.3.1 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.0 (cached)
-> retrieved uuidm.0.9.10 (cached)
-> installed iter.1.9
-> installed stdlib-shims.0.3.0
-> installed result.1.5
-> installed gnuplot.0.7
-> installed pbrt.2.4
-> installed re.1.13.2
-> installed sqlite3.5.3.1
-> installed sqlite3_utils.0.3.1
-> installed containers.2.8.1
-> installed ocaml-protoc.2.4
-> installed cmdliner.1.3.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed printbox.0.5
-> installed csv.2.4
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed logs.0.9.0
-> installed uuidm.0.9.10
-> installed benchpress.0.1
Done.
<><> pbrt.2.4 installed successfully ><><><><><><><><><><><><><><><><><><><><><>
=> Pbrt: runtime library for ocaml-protoc.
A shim library named "ocaml-protoc" still exists, to ease the
migration.
<><> ocaml-protoc.2.4 installed successfully ><><><><><><><><><><><><><><><><><>
=> The runtime library is now called "pbrt".
# To update the current shell environment, run: eval $(opam env)
2025-08-05 20:28.13 ---> saved as "804a61f5224e19573657935f2010436f55f986b8a4aa6653ec1147cdf13c782a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test benchpress.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile benchpress 0.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved benchpress.0.1 (https://opam.ocaml.org/cache)
-> removed benchpress.0.1
-> installed benchpress.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 20:28.29 ---> saved as "d2c244ada759d3d294f8689524b50bfc92de68d61926ee41ba54ec5b710c7358"
/home/opam: (run (shell "opam reinstall --with-test --verbose benchpress.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'benchpress.0.1' && 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 benchpress 0.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [benchpress.0.1: extract]
-> retrieved benchpress.0.1 (cached)
Processing 2/4: [benchpress: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "@install" "-p" "benchpress" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/benchpress.0.1)
- (cd _build/default/src/core && /home/opam/.opam/4.14/bin/ocaml-protoc -binary -I . -pp api.proto -ml_out .)
- Generating ./api_types.mli
- Generating ./api_types.ml
- Generating ./api_pb.mli
- Generating ./api_pb.ml
- Generating ./api_pp.mli
- Generating ./api_pp.ml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3-32-34-50 -safe-string -g -bin-annot -I src/core/.benchpress.objs/byte -I /home/opam/.opam/4.14/lib/ISO8601 -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/containers/sexp -I /home/opam/.opam/4.14/lib/containers/thread -I /home/opam/.opam/4.14/lib/containers/unix -I /home/opam/.opam/4.14/lib/csv -I /home/opam/.opam/4.14/lib/decoders -I /home/opam/.opam/4.14/lib/gnuplot -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/ocaml-protoc -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/pbrt -I /home/opam/.opam/4.14/lib/printbox -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/perl -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/sqlite3_utils -I /home/opam/.opam/4.14/lib/uuidm -intf-suffix .ml -no-alias-deps -open Benchpress -o src/core/.benchpress.objs/byte/benchpress__Ulimit.cmo -c -impl src/core/Ulimit.ml)
- File "src/core/Ulimit.ml", line 55, characters 16-22:
- 55 | let prefix_cmd ?prefix ~cmd =
- ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3-32-34-50 -safe-string -g -I src/core/.benchpress.objs/byte -I src/core/.benchpress.objs/native -I /home/opam/.opam/4.14/lib/ISO8601 -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/containers/sexp -I /home/opam/.opam/4.14/lib/containers/thread -I /home/opam/.opam/4.14/lib/containers/unix -I /home/opam/.opam/4.14/lib/csv -I /home/opam/.opam/4.14/lib/decoders -I /home/opam/.opam/4.14/lib/gnuplot -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/ocaml-protoc -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/pbrt -I /home/opam/.opam/4.14/lib/printbox -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/perl -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/sqlite3_utils -I /home/opam/.opam/4.14/lib/uuidm -intf-suffix .ml -no-alias-deps -open Benchpress -o src/core/.benchpress.objs/native/benchpress__Ulimit.cmx -c -impl src/core/Ulimit.ml)
- File "src/core/Ulimit.ml", line 55, characters 16-22:
- 55 | let prefix_cmd ?prefix ~cmd =
- ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3-32-34-50 -safe-string -g -bin-annot -I src/core/.benchpress.objs/byte -I /home/opam/.opam/4.14/lib/ISO8601 -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/containers/sexp -I /home/opam/.opam/4.14/lib/containers/thread -I /home/opam/.opam/4.14/lib/containers/unix -I /home/opam/.opam/4.14/lib/csv -I /home/opam/.opam/4.14/lib/decoders -I /home/opam/.opam/4.14/lib/gnuplot -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/ocaml-protoc -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/pbrt -I /home/opam/.opam/4.14/lib/printbox -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/perl -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/sqlite3_utils -I /home/opam/.opam/4.14/lib/uuidm -no-alias-deps -open Benchpress -o src/core/.benchpress.objs/byte/benchpress__Bin_utils.cmo -c -impl src/core/Bin_utils.ml)
- File "src/core/Bin_utils.ml", line 36, characters 13-17:
- 36 | Term.(ret (pure aux $ args $ debug))
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -a+8 -safe-string -open Benchpress -g -bin-annot -I src/bin/.benchpress_bin.eobjs/byte -I /home/opam/.opam/4.14/lib/ISO8601 -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/containers/sexp -I /home/opam/.opam/4.14/lib/containers/thread -I /home/opam/.opam/4.14/lib/containers/unix -I /home/opam/.opam/4.14/lib/csv -I /home/opam/.opam/4.14/lib/decoders -I /home/opam/.opam/4.14/lib/gnuplot -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/ocaml-protoc -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/pbrt -I /home/opam/.opam/4.14/lib/printbox -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/perl -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/sqlite3_utils -I /home/opam/.opam/4.14/lib/uuidm -I src/core/.benchpress.objs/byte -no-alias-deps -o src/bin/.benchpress_bin.eobjs/byte/benchpress_bin.cmo -c -impl src/bin/benchpress_bin.ml)
- File "src/bin/benchpress_bin.ml", line 55, characters 10-14:
- 55 | Term.(pure aux $ j $ pp_results $ dyn $ paths $ dir_file $ defs $ task $ timeout $ memory
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 57, characters 4-13:
- 57 | Term.info ~doc "run"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 82, characters 10-14:
- 82 | Term.(pure aux $ abs $ pure () ), Term.info ~doc "list-files"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 82, characters 27-31:
- 82 | Term.(pure aux $ abs $ pure () ), Term.info ~doc "list-files"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 82, characters 38-47:
- 82 | Term.(pure aux $ abs $ pure () ), Term.info ~doc "list-files"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 111, characters 10-14:
- 111 | Term.(pure aux $ check $ bad $ csv $ summary $ no_color $ debug $ file),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 112, characters 4-13:
- 112 | Term.info ~doc "show"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 144, characters 10-14:
- 144 | Term.(pure aux $ debug $ file),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 145, characters 4-13:
- 145 | Term.info ~doc "plot"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 196, characters 10-14:
- 196 | Term.(pure aux $ n $ dir), Term.info ~doc "sample"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 196, characters 31-40:
- 196 | Term.(pure aux $ n $ dir), Term.info ~doc "sample"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 220, characters 10-14:
- 220 | Term.(pure run $ which),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 221, characters 4-13:
- 221 | Term.info ~doc "dir"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 249, characters 10-14:
- 249 | Term.(pure aux $ with_default $ files $ pure () ), Term.info ~doc "check-config"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 249, characters 44-48:
- 249 | Term.(pure aux $ with_default $ files $ pure () ), Term.info ~doc "check-config"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 249, characters 55-64:
- 249 | Term.(pure aux $ with_default $ files $ pure () ), Term.info ~doc "check-config"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 265, characters 10-14:
- 265 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "prover-show"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 265, characters 59-68:
- 265 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "prover-show"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 279, characters 10-14:
- 279 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "prover-list"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 279, characters 50-59:
- 279 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "prover-list"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 295, characters 10-14:
- 295 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "task-show"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 295, characters 59-68:
- 295 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "task-show"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 309, characters 10-14:
- 309 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "task-list"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 309, characters 50-59:
- 309 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "task-list"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 336, characters 10-14:
- 336 | Term.(pure run $ debug $ port), Term.info ~doc "task-running"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 336, characters 36-45:
- 336 | Term.(pure run $ debug $ port), Term.info ~doc "task-running"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 350, characters 10-14:
- 350 | Term.(pure Sql_res.run $ Bin_utils.definitions_term $ files),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 351, characters 4-13:
- 351 | Term.info ~doc "sql-convert"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 367, characters 15-19:
- 367 | Term.(ret (pure (fun () -> `Help (`Pager, None)) $ pure ())),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 367, characters 55-59:
- 367 | Term.(ret (pure (fun () -> `Help (`Pager, None)) $ pure ())),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 368, characters 4-13:
- 368 | Term.info ~version:"dev" ~man ~doc "benchpress"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 370, characters 2-27:
- 370 | Cmdliner.Term.eval_choice help [
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3-32-34-50 -safe-string -g -I src/core/.benchpress.objs/byte -I src/core/.benchpress.objs/native -I /home/opam/.opam/4.14/lib/ISO8601 -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/containers/sexp -I /home/opam/.opam/4.14/lib/containers/thread -I /home/opam/.opam/4.14/lib/containers/unix -I /home/opam/.opam/4.14/lib/csv -I /home/opam/.opam/4.14/lib/decoders -I /home/opam/.opam/4.14/lib/gnuplot -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/ocaml-protoc -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/pbrt -I /home/opam/.opam/4.14/lib/printbox -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/perl -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/sqlite3_utils -I /home/opam/.opam/4.14/lib/uuidm -intf-suffix .ml -no-alias-deps -open Benchpress -o src/core/.benchpress.objs/native/benchpress__Bin_utils.cmx -c -impl src/core/Bin_utils.ml)
- File "src/core/Bin_utils.ml", line 36, characters 13-17:
- 36 | Term.(ret (pure aux $ args $ debug))
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -a+8 -safe-string -open Benchpress -g -I src/bin/.benchpress_bin.eobjs/byte -I src/bin/.benchpress_bin.eobjs/native -I /home/opam/.opam/4.14/lib/ISO8601 -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/containers/sexp -I /home/opam/.opam/4.14/lib/containers/thread -I /home/opam/.opam/4.14/lib/containers/unix -I /home/opam/.opam/4.14/lib/csv -I /home/opam/.opam/4.14/lib/decoders -I /home/opam/.opam/4.14/lib/gnuplot -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/ocaml-protoc -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/pbrt -I /home/opam/.opam/4.14/lib/printbox -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/re/perl -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sqlite3 -I /home/opam/.opam/4.14/lib/sqlite3_utils -I /home/opam/.opam/4.14/lib/uuidm -I src/core/.benchpress.objs/byte -I src/core/.benchpress.objs/native -intf-suffix .ml -no-alias-deps -o src/bin/.benchpress_bin.eobjs/native/benchpress_bin.cmx -c -impl src/bin/benchpress_bin.ml)
- File "src/bin/benchpress_bin.ml", line 55, characters 10-14:
- 55 | Term.(pure aux $ j $ pp_results $ dyn $ paths $ dir_file $ defs $ task $ timeout $ memory
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 57, characters 4-13:
- 57 | Term.info ~doc "run"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 82, characters 10-14:
- 82 | Term.(pure aux $ abs $ pure () ), Term.info ~doc "list-files"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 82, characters 27-31:
- 82 | Term.(pure aux $ abs $ pure () ), Term.info ~doc "list-files"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 82, characters 38-47:
- 82 | Term.(pure aux $ abs $ pure () ), Term.info ~doc "list-files"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 111, characters 10-14:
- 111 | Term.(pure aux $ check $ bad $ csv $ summary $ no_color $ debug $ file),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 112, characters 4-13:
- 112 | Term.info ~doc "show"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 144, characters 10-14:
- 144 | Term.(pure aux $ debug $ file),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 145, characters 4-13:
- 145 | Term.info ~doc "plot"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 196, characters 10-14:
- 196 | Term.(pure aux $ n $ dir), Term.info ~doc "sample"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 196, characters 31-40:
- 196 | Term.(pure aux $ n $ dir), Term.info ~doc "sample"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 220, characters 10-14:
- 220 | Term.(pure run $ which),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 221, characters 4-13:
- 221 | Term.info ~doc "dir"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 249, characters 10-14:
- 249 | Term.(pure aux $ with_default $ files $ pure () ), Term.info ~doc "check-config"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 249, characters 44-48:
- 249 | Term.(pure aux $ with_default $ files $ pure () ), Term.info ~doc "check-config"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 249, characters 55-64:
- 249 | Term.(pure aux $ with_default $ files $ pure () ), Term.info ~doc "check-config"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 265, characters 10-14:
- 265 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "prover-show"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 265, characters 59-68:
- 265 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "prover-show"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 279, characters 10-14:
- 279 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "prover-list"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 279, characters 50-59:
- 279 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "prover-list"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 295, characters 10-14:
- 295 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "task-show"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 295, characters 59-68:
- 295 | Term.(pure run $ Bin_utils.definitions_term $ names ), Term.info ~doc "task-show"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 309, characters 10-14:
- 309 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "task-list"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 309, characters 50-59:
- 309 | Term.(pure run $ Bin_utils.definitions_term), Term.info ~doc "task-list"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 336, characters 10-14:
- 336 | Term.(pure run $ debug $ port), Term.info ~doc "task-running"
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 336, characters 36-45:
- 336 | Term.(pure run $ debug $ port), Term.info ~doc "task-running"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 350, characters 10-14:
- 350 | Term.(pure Sql_res.run $ Bin_utils.definitions_term $ files),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 351, characters 4-13:
- 351 | Term.info ~doc "sql-convert"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 367, characters 15-19:
- 367 | Term.(ret (pure (fun () -> `Help (`Pager, None)) $ pure ())),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 367, characters 55-59:
- 367 | Term.(ret (pure (fun () -> `Help (`Pager, None)) $ pure ())),
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "src/bin/benchpress_bin.ml", line 368, characters 4-13:
- 368 | Term.info ~version:"dev" ~man ~doc "benchpress"
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "src/bin/benchpress_bin.ml", line 370, characters 2-27:
- 370 | Cmdliner.Term.eval_choice help [
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
-> compiled benchpress.0.1
-> removed benchpress.0.1
-> installed benchpress.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 20:28.46 ---> saved as "3f67bd2ead9bf62c465b7546fc5ef8d1aa958d8345f60c1366d8850c38dd6c42"
Job succeeded
2025-08-05 20:29.14: Job succeeded