- github
- ocaml
- opam-repository
- 4deebe
- distributions,alpine-3.21-ocaml-5.3,ppxlib.0.36.1,tests
(not at the head of any monitored branch or PR)
2025-07-14 12:34.28: New job: test ppxlib.0.36.1, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28160/head (4deebea6099dbe492b2820180da0b1e729bdf5c6)
on alpine-3.21-ocaml-5.3/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/28160/head" && git reset --hard 4deebea6
git fetch origin master
git merge --no-edit ab64da8511384eb17e33f1a279f920ed72d7d958
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.21-ocaml-5.3@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380
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 ppxlib.0.36.1 0.36.1
RUN opam reinstall ppxlib.0.36.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 "\"alpine-3.21\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ppxlib.0.36.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 ppxlib.0.36.1) || true
RUN opam reinstall --with-test --verbose ppxlib.0.36.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 "\"alpine-3.21\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ppxlib.0.36.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-07-14 12:34.28: Using cache hint "ocaml/opam:alpine-3.21-ocaml-5.3@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380-ppxlib.0.36.1-4deebea6099dbe492b2820180da0b1e729bdf5c6"
2025-07-14 12:34.28: Using OBuilder spec:
((from ocaml/opam:alpine-3.21-ocaml-5.3@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380)
(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 ppxlib.0.36.1 0.36.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.36.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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppxlib.0.36.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 ppxlib.0.36.1) || true"))
(run (shell "opam reinstall --with-test --verbose ppxlib.0.36.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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppxlib.0.36.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-07-14 12:34.28: Waiting for resource in pool OCluster
2025-07-14 12:39.57: Waiting for worker…
2025-07-14 12:42.26: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at ab64da8511 Merge pull request #28162 from vbmithr/release-logs-async-1.4
Merge made by the 'ort' strategy.
packages/ppxlib-bench/ppxlib-bench.0.36.1/opam | 45 ++++++++++++++++++
packages/ppxlib-tools/ppxlib-tools.0.36.1/opam | 46 ++++++++++++++++++
packages/ppxlib/ppxlib.0.36.1/opam | 64 ++++++++++++++++++++++++++
3 files changed, 155 insertions(+)
create mode 100644 packages/ppxlib-bench/ppxlib-bench.0.36.1/opam
create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.36.1/opam
create mode 100644 packages/ppxlib/ppxlib.0.36.1/opam
(from ocaml/opam:alpine-3.21-ocaml-5.3@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380)
Unable to find image 'ocaml/opam:alpine-3.21-ocaml-5.3@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380' locally
docker.io/ocaml/opam@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380: Pulling from ocaml/opam
f18232174bc9: Already exists
e435b1bc6765: Already exists
504218c123c0: Already exists
3d1adc3444db: Already exists
949b4e53049e: Already exists
8f30d8d0a846: Already exists
1c2148a11545: Already exists
0688ce6bab1b: Already exists
9fff074a1f8d: Already exists
2f670f1f18e5: Pulling fs layer
4327a1eff3e9: Pulling fs layer
6416d634e0f0: Pulling fs layer
226a04ebb5cc: Pulling fs layer
524ffc10718d: Pulling fs layer
edbef0ed17ce: Pulling fs layer
4f4fb700ef54: Pulling fs layer
f41102d57d16: Pulling fs layer
74c0a3cca53d: Pulling fs layer
226a04ebb5cc: Waiting
524ffc10718d: Waiting
20433c03b8ee: Pulling fs layer
d15cae79f6ee: Pulling fs layer
c49df74bbb30: Pulling fs layer
f41102d57d16: Waiting
c7e2533797d3: Pulling fs layer
f7a7b488445e: Pulling fs layer
4100580b8204: Pulling fs layer
fbc8271f8aed: Pulling fs layer
2f3cf6786764: Pulling fs layer
eabb0eb9a599: Pulling fs layer
ed0e937dd1f9: Pulling fs layer
d15cae79f6ee: Waiting
20433c03b8ee: Waiting
c49df74bbb30: Waiting
74233ff0361f: Pulling fs layer
74c0a3cca53d: Waiting
e0f8996903d5: Pulling fs layer
4f4fb700ef54: Waiting
c7e2533797d3: Waiting
2decd1769587: Pulling fs layer
74233ff0361f: Waiting
f7a7b488445e: Waiting
e2fe16af1f37: Pulling fs layer
2f3cf6786764: Waiting
edbef0ed17ce: Waiting
fbc8271f8aed: Waiting
8596850f1643: Pulling fs layer
ed0e937dd1f9: Waiting
9b056d789ba8: Pulling fs layer
2decd1769587: Waiting
e0f8996903d5: Waiting
e2fe16af1f37: Waiting
4100580b8204: Waiting
34f858a58fca: Pulling fs layer
eabb0eb9a599: Waiting
9b056d789ba8: Waiting
fd0d461ca9a0: Pulling fs layer
34f858a58fca: Waiting
9a5bbc9e3f8a: Pulling fs layer
be625428d6f7: Pulling fs layer
fd0d461ca9a0: Waiting
9a5bbc9e3f8a: Waiting
b3c1eae29c97: Pulling fs layer
a87d975376c4: Pulling fs layer
be625428d6f7: Waiting
a87d975376c4: Waiting
b3c1eae29c97: Waiting
4327a1eff3e9: Verifying Checksum
4327a1eff3e9: Download complete
2f670f1f18e5: Verifying Checksum
2f670f1f18e5: Download complete
2f670f1f18e5: Pull complete
4327a1eff3e9: Pull complete
226a04ebb5cc: Verifying Checksum
226a04ebb5cc: Download complete
6416d634e0f0: Verifying Checksum
6416d634e0f0: Download complete
6416d634e0f0: Pull complete
226a04ebb5cc: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
f41102d57d16: Verifying Checksum
f41102d57d16: Download complete
524ffc10718d: Verifying Checksum
524ffc10718d: Download complete
524ffc10718d: Pull complete
edbef0ed17ce: Verifying Checksum
edbef0ed17ce: Download complete
edbef0ed17ce: Pull complete
4f4fb700ef54: Pull complete
f41102d57d16: Pull complete
74c0a3cca53d: Verifying Checksum
74c0a3cca53d: Download complete
74c0a3cca53d: Pull complete
20433c03b8ee: Verifying Checksum
20433c03b8ee: Download complete
20433c03b8ee: Pull complete
c7e2533797d3: Download complete
f7a7b488445e: Verifying Checksum
f7a7b488445e: Download complete
d15cae79f6ee: Verifying Checksum
d15cae79f6ee: Download complete
d15cae79f6ee: Pull complete
fbc8271f8aed: Verifying Checksum
fbc8271f8aed: Download complete
4100580b8204: Verifying Checksum
4100580b8204: Download complete
c49df74bbb30: Verifying Checksum
c49df74bbb30: Download complete
c49df74bbb30: Pull complete
c7e2533797d3: Pull complete
2f3cf6786764: Download complete
f7a7b488445e: Pull complete
4100580b8204: Pull complete
fbc8271f8aed: Pull complete
2f3cf6786764: Pull complete
eabb0eb9a599: Download complete
eabb0eb9a599: Pull complete
ed0e937dd1f9: Verifying Checksum
ed0e937dd1f9: Download complete
ed0e937dd1f9: Pull complete
e0f8996903d5: Download complete
e2fe16af1f37: Verifying Checksum
e2fe16af1f37: Download complete
8596850f1643: Download complete
74233ff0361f: Verifying Checksum
74233ff0361f: Download complete
34f858a58fca: Verifying Checksum
34f858a58fca: Download complete
9b056d789ba8: Download complete
fd0d461ca9a0: Verifying Checksum
fd0d461ca9a0: Download complete
be625428d6f7: Verifying Checksum
be625428d6f7: Download complete
b3c1eae29c97: Download complete
a87d975376c4: Verifying Checksum
a87d975376c4: Download complete
9a5bbc9e3f8a: Verifying Checksum
9a5bbc9e3f8a: Download complete
74233ff0361f: Pull complete
e0f8996903d5: Pull complete
2decd1769587: Verifying Checksum
2decd1769587: Download complete
2decd1769587: Pull complete
e2fe16af1f37: Pull complete
8596850f1643: Pull complete
9b056d789ba8: Pull complete
34f858a58fca: Pull complete
fd0d461ca9a0: Pull complete
9a5bbc9e3f8a: Pull complete
be625428d6f7: Pull complete
b3c1eae29c97: Pull complete
a87d975376c4: Pull complete
Digest: sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380
Status: Downloaded newer image for ocaml/opam@sha256:04615dc1fa88c0285b28799f65b32f2814c854db498aea42fb9ff8c430a28380
2025-07-14 12:42.33 ---> using "b1eb2a8af4058a254870e5cad61297a06793cbcf25fc0fa70ddab0692ceef147" 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-07-14 12:42.33 ---> using "f90bea3b7be5a08acf31f971fe08166ea0b6887e051d4185a72887753e95f288" 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
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-07-14 12:42.33 ---> using "0c0910a2065348510fd9a14ab773af9c0401a891b8793063dadf725650d6d580" 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=alpine os-version=3.21.3
# 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.3
# invariant ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-07-14 12:42.33 ---> using "ae6fe910af3a0d934e0bed2932a7be302144c4e66a369bbdbb9b9e98100de621" 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-07-14 12:42.33 ---> using "704896035dfdb2586465b0073576bf9202dcc3e7a25b8cb4610bf941f6d60ff2" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-07-14 12:42.34 ---> using "d3df1fbc865e7cd75ef7eab13db68e51323c0dd1e4d61b60a6ec5c877079a1fb" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-07-14 12:42.58 ---> saved as "3148bbe95c755d4eb5fc11d3c6bf7aab6ab61c67e4181b8140cc4175f5dfb521"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.21.3-649-g4e81a83352a [https://dl-cdn.alpinelinux.org/alpine/v3.21/main]
- v3.21.3-649-g4e81a83352a [https://dl-cdn.alpinelinux.org/alpine/v3.21/community]
- v3.23.0_alpha20250612-2263-g09cb1e4b285 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v3.23.0_alpha20250612-2270-gfd663fe75c2 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v3.23.0_alpha20250612-2273-g9759061c958 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 59063 distinct packages available
2025-07-14 12:43.00 ---> saved as "7f829de0528616f48a7e0801e3684fedbee7e29ccf43c17145aed7699feb4ace"
/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.36.1 0.36.1"))
ppxlib is now pinned to version 0.36.1
2025-07-14 12:43.01 ---> saved as "fe5e5181428728abef8f311b3fc2bc2938cbfa38241d1caef14fe9ce107f44cf"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.36.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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppxlib.0.36.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ppxlib.0.36.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 6 packages
- install dune 3.19.1 [required by ppxlib]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.36.1 (pinned)
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.19.1 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.36.1 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.19.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.36.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-14 12:44.21 ---> saved as "ff56ac84adac60ec69a028852b30475979ec49e7af8d5c3ce48db4b71b30980f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ppxlib.0.36.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ppxlib 0.36.1 (pinned)
=== install 4 packages
- install cinaps v0.15.1 [required by ppxlib]
- install ocamlfind 1.9.8 [required by ppxlib]
- install re 1.13.2 [required by ppxlib]
- install seq base [required by re]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cinaps.v0.15.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved re.1.13.2 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> installed re.1.13.2
-> installed cinaps.v0.15.1
-> removed ppxlib.0.36.1
-> installed ocamlfind.1.9.8
-> installed ppxlib.0.36.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-14 12:45.08 ---> saved as "d5670bcc299a688d70a30fafa7c8b54ea8e4c1903332d183485ecbf90816e3ba"
/home/opam: (run (shell "opam reinstall --with-test --verbose ppxlib.0.36.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 \"\\\"alpine-3.21\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppxlib.0.36.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 ppxlib 0.36.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ppxlib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppxlib" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/ppxlib.0.36.1)
-> compiled ppxlib.0.36.1
-> removed ppxlib.0.36.1
-> installed ppxlib.0.36.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-14 12:45.44 ---> saved as "456e2f924d43221bbd034cb778abf1126ed547812bba31a86e5d42121be69557"
Job succeeded
2025-07-14 12:45.55: Job succeeded