Build:
- 0
2026-01-24 02:24.01: New job: test csexp-query.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29273/head (d713f87aee82de4b84991e9395eb0ed6a3bd8479)
on ubuntu-22.04-ocaml-5.4/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/29273/head" && git reset --hard d713f87a
git fetch origin master
git merge --no-edit 8e1b9a49e880d409b435a16017fd056e29befb09
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf
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 csexp-query.0.1.0 0.1.0
RUN opam reinstall csexp-query.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'csexp-query.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test csexp-query.0.1.0) || true
RUN opam reinstall --with-test --verbose csexp-query.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'csexp-query.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-01-24 02:24.01: Using cache hint "ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf-csexp-query.0.1.0-d713f87aee82de4b84991e9395eb0ed6a3bd8479"
2026-01-24 02:24.01: Using OBuilder spec:
((from ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf)
(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 csexp-query.0.1.0 0.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall csexp-query.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'csexp-query.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test csexp-query.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose csexp-query.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'csexp-query.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-24 02:24.01: Waiting for resource in pool OCluster
2026-01-24 12:18.55: Waiting for worker…
2026-01-24 12:24.51: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 8e1b9a49e8 Merge pull request #29269 from mseri/ocurl
Updating 8e1b9a49e8..d713f87aee
Fast-forward
packages/csexp-query/csexp-query.0.1.0/opam | 37 +++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
create mode 100644 packages/csexp-query/csexp-query.0.1.0/opam
(from ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf)
Unable to find image 'ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf' locally
docker.io/ocaml/opam@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf: Pulling from ocaml/opam
7e49dc6156b0: Already exists
65bdcb90cd9a: Already exists
8a57a4c399f1: Already exists
59c09820d352: Already exists
0b0f4f66ef34: Already exists
e90294888346: Already exists
ce0c8e352950: Already exists
e1c547e72f55: Already exists
f65f7d0d5a6b: Already exists
5bf8f7b5ae47: Already exists
4c0063a04a4f: Already exists
8f78cdfec5cd: Already exists
576b7ada738c: Already exists
08e02ba26792: Already exists
2178ec162f17: Already exists
1e3cdad8c2cf: Already exists
b8bc66c50efe: Already exists
b8bc66c50efe: Already exists
4f4fb700ef54: Already exists
c97176e241e4: Already exists
4e3fb299a44e: Already exists
918a18accca5: Already exists
4f4fb700ef54: Already exists
a67fbef18c3b: Already exists
493e62f841d2: Already exists
63f963a03809: Already exists
11fba2bf1c32: Already exists
6566e414ef98: Already exists
242773756c53: Already exists
347353cb20e5: Already exists
a3406a4edb0c: Already exists
410a36612209: Already exists
2d65b6db5b4b: Already exists
f3e3808d15ca: Already exists
7acec8b986fd: Already exists
a6c7dcc7803f: Already exists
92d000ad2eb2: Already exists
a9b5fc1c0e92: Already exists
8bc304301dd4: Already exists
0712946836c1: Already exists
47bb5b5c05ac: Already exists
d05226ef3202: Already exists
9204c000513f: Already exists
19ed4e99d5ff: Already exists
bfa9cec314e2: Already exists
ace257d32dbc: Already exists
d6fdef0c42fe: Already exists
2bd2e738cdab: Already exists
Digest: sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf
Status: Downloaded newer image for ocaml/opam@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf
2026-01-24 12:29.08 ---> using "7a9f40bfd6eae0cbe23271c7b8d132ab75e85de213c7201e41623cbd6253ba55" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-24 12:29.08 ---> using "926b0655d58339c537aa321f8fc2fdcef2b993df8965d321ec70da99eb2b5c3f" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-24 12:29.31 ---> saved as "54f52e8c1399881bbd925b8ec12fb5040eaac39601c4b658ee5b73127b36767e"
/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=ubuntu os-version=22.04
# 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-24 12:29.32 ---> saved as "9b9e671bfff016091ff12800bad7352e12f1d70a7f266477da6fb83c24ee8c55"
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-24 12:29.42 ---> saved as "94c6f41262fcbcf13b6e484a6dff3aaa0d364e81b2dc8f7084456a6d04dbc861"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-24 12:29.56 ---> saved as "17fc452410a61c4f4a70d3edc55cb8d00fb37f29216300255be12b988d9c304f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-24 12:30.18 ---> saved as "2d651c87454db4861c99cea2493af61bdc870e059c77522908fc3bb9b8a431c2"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
- Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
- Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
- Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
- Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3971 kB]
- Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [86.7 kB]
- Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1604 kB]
- Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [6486 kB]
- Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3640 kB]
- Get:10 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [61.5 kB]
- Get:11 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1292 kB]
- Fetched 17.5 MB in 1s (12.7 MB/s)
- Reading package lists...
-
2026-01-24 12:30.21 ---> saved as "b692598983f32afff948277a0452dd1cf1534ffc48247f976e8f853c0b2dfa37"
/home/opam: (run (shell "opam pin add -k version -yn csexp-query.0.1.0 0.1.0"))
csexp-query is now pinned to version 0.1.0
2026-01-24 12:30.22 ---> saved as "3a15b83c62023f1b080675464e9fd6a93cb913e8432efd03a2fc7a27522b89af"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall csexp-query.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'csexp-query.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
csexp-query.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install csexp 1.5.2 [required by csexp-query]
- install csexp-query 0.1.0 (pinned)
- install dune 3.21.0 [required by csexp-query]
- install dune-build-info 3.21.0 [required by csexp-query]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved csexp-query.0.1.0 (cached)
-> retrieved dune.3.21.0, dune-build-info.3.21.0 (cached)
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed dune-build-info.3.21.0
-> installed csexp-query.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 12:31.07 ---> saved as "a3c1b83010e1d7d4e174ff2108a4039e0fd046ccb93b091376dea4e288fc50ee"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test csexp-query.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile csexp-query 0.1.0 (pinned)
=== install 25 packages
- install base v0.17.3 [required by ppx_expect]
- install dune-configurator 3.21.0 [required by base]
- install jane-street-headers v0.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ppx_assert v0.17.0 [required by jst-config]
- install ppx_base v0.17.0 [required by time_now]
- install ppx_cold v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_enumerate v0.17.0 [required by ppx_base]
- install ppx_expect v0.17.3 [required by csexp-query]
- install ppx_globalize v0.17.2 [required by ppx_base]
- install ppx_hash v0.17.0 [required by ppx_base]
- install ppx_here v0.17.0 [required by ppx_expect]
- install ppx_inline_test v0.17.1 [required by ppx_expect]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ppx_sexp_conv v0.17.1 [required by ppx_base]
- install ppxlib 0.37.0 [required by ppx_expect]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install sexplib0 v0.17.0 [required by base]
- install stdio v0.17.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install time_now v0.17.0 [required by ppx_inline_test]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (https://opam.ocaml.org/cache)
-> retrieved dune-configurator.3.21.0 (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.17.0 (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.17.0
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.17.0 (https://opam.ocaml.org/cache)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ppx_compare.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.17.0 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_expect.v0.17.3 (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.17.2 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ppx_hash.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.17.1 (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.21.0
-> retrieved ppx_optcomp.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.17.0 (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> removed csexp-query.0.1.0
-> installed stdlib-shims.0.3.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed csexp-query.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 12:32.07 ---> saved as "bd442c985408c2246141ea0681547617d4e971dcb7210a97e7e08dde84058209"
/home/opam: (run (shell "opam reinstall --with-test --verbose csexp-query.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'csexp-query.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile csexp-query 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [csexp-query: touch empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "touch" "empty" (CWD=/home/opam/.opam/5.4/.opam-switch/build/csexp-query.0.1.0)
Processing 2/4: [csexp-query: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "csexp-query" "-j" "71" "--workspace=empty" (CWD=/home/opam/.opam/5.4/.opam-switch/build/csexp-query.0.1.0)
Processing 2/4: [csexp-query: rm empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "empty" (CWD=/home/opam/.opam/5.4/.opam-switch/build/csexp-query.0.1.0)
Processing 2/4: [csexp-query: touch empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "touch" "empty" (CWD=/home/opam/.opam/5.4/.opam-switch/build/csexp-query.0.1.0)
Processing 2/4: [csexp-query: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "csexp-query" "-j" "71" "--workspace=empty" (CWD=/home/opam/.opam/5.4/.opam-switch/build/csexp-query.0.1.0)
Processing 2/4: [csexp-query: rm empty]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "empty" (CWD=/home/opam/.opam/5.4/.opam-switch/build/csexp-query.0.1.0)
-> compiled csexp-query.0.1.0
-> removed csexp-query.0.1.0
-> installed csexp-query.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-24 12:32.17 ---> saved as "aec66cbc956dc24f9dabdaf1a5d46a3867362a0b5117149e1f9b3999775caca0"
Job succeeded
2026-01-24 12:32.22: Job succeeded