(for PR #29929)
2026-05-20 11:19.40: New job: test embedded_ocaml_templates.0.8.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29929/head (9002fdb7d59fe104e77fb515ef69be1381d12a14)
on ubuntu-25.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/29929/head" && git reset --hard 9002fdb7
git fetch origin master
git merge --no-edit 64a847a29e96527a72f3e45822610f25e7ad0a40
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63
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 embedded_ocaml_templates.0.8.1 0.8.1
RUN opam reinstall embedded_ocaml_templates.0.8.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 "\"ubuntu-25.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'embedded_ocaml_templates.0.8.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 embedded_ocaml_templates.0.8.1) || true
RUN opam reinstall --with-test --verbose embedded_ocaml_templates.0.8.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 "\"ubuntu-25.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'embedded_ocaml_templates.0.8.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 .
2026-05-20 11:19.40: Using cache hint "ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63-embedded_ocaml_templates.0.8.1-9002fdb7d59fe104e77fb515ef69be1381d12a14"
2026-05-20 11:19.40: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63)
(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 embedded_ocaml_templates.0.8.1 0.8.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall embedded_ocaml_templates.0.8.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 \"\\\"ubuntu-25.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\" != 'embedded_ocaml_templates.0.8.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 embedded_ocaml_templates.0.8.1) || true"))
(run (shell "opam reinstall --with-test --verbose embedded_ocaml_templates.0.8.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 \"\\\"ubuntu-25.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\" != 'embedded_ocaml_templates.0.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-05-20 11:19.40: Waiting for resource in pool OCluster
2026-05-20 11:19.42: Waiting for worker…
2026-05-20 11:19.42: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 64a847a29e Merge pull request #29924 from jmid/add-dune-3.23.0-ocaml-bound
Updating 64a847a29e..9002fdb7d5
Fast-forward
.../embedded_ocaml_templates.0.8.1/opam | 49 ++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 packages/embedded_ocaml_templates/embedded_ocaml_templates.0.8.1/opam
(from ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63)
Unable to find image 'ocaml/opam:ubuntu-25.04-ocaml-5.4@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63' locally
docker.io/ocaml/opam@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63: Pulling from ocaml/opam
c62190a9ab61: Pulling fs layer
3ffa5fa4c338: Pulling fs layer
1ad98d62710f: Pulling fs layer
32b7f1733f93: Pulling fs layer
60b6d784b3f1: Pulling fs layer
5a2a6d451e1f: Pulling fs layer
6331cc613db1: Pulling fs layer
cd17da539bcb: Pulling fs layer
a78785a8707a: Pulling fs layer
017a8e839984: Pulling fs layer
269878e77d3e: Pulling fs layer
d105ce9936af: Pulling fs layer
6a816e31a608: Pulling fs layer
c561c5e7e836: Pulling fs layer
2c2bead92061: Pulling fs layer
181b5e50467a: Pulling fs layer
60b6d784b3f1: Waiting
e1747048878a: Pulling fs layer
9964000ee5c2: Pulling fs layer
2f528d56ff17: Pulling fs layer
269878e77d3e: Waiting
0cae2e739013: Pulling fs layer
5a2a6d451e1f: Waiting
e1747048878a: Waiting
4f4fb700ef54: Pulling fs layer
6331cc613db1: Waiting
cd17da539bcb: Waiting
d105ce9936af: Waiting
017a8e839984: Waiting
2f528d56ff17: Waiting
c561c5e7e836: Waiting
7b56ac9ded88: Pulling fs layer
02acd4f922b8: Pulling fs layer
9964000ee5c2: Waiting
0cae2e739013: Waiting
6a816e31a608: Waiting
4f4fb700ef54: Waiting
5820f3f0ac5b: Pulling fs layer
181b5e50467a: Waiting
a78785a8707a: Waiting
7b56ac9ded88: Waiting
32b7f1733f93: Waiting
565d3d2f91e3: Pulling fs layer
2c2bead92061: Waiting
5820f3f0ac5b: Waiting
02acd4f922b8: Waiting
6011b75baccf: Pulling fs layer
aa679525444d: Pulling fs layer
565d3d2f91e3: Waiting
6233cfda6bc6: Pulling fs layer
6011b75baccf: Waiting
e337c50fadae: Pulling fs layer
6233cfda6bc6: Waiting
aa679525444d: Waiting
68480da602a2: Pulling fs layer
fe8455ef7fdd: Pulling fs layer
e337c50fadae: Waiting
68480da602a2: Waiting
376ec1c1ff04: Pulling fs layer
fe8455ef7fdd: Waiting
62414c6876a0: Pulling fs layer
e13152495ead: Pulling fs layer
7237efe4b8d6: Pulling fs layer
62414c6876a0: Waiting
376ec1c1ff04: Waiting
e13152495ead: Waiting
dcb6948decd1: Pulling fs layer
7237efe4b8d6: Waiting
9ef3e7aa87ba: Pulling fs layer
dcb6948decd1: Waiting
cd0bb5382221: Pulling fs layer
9ef3e7aa87ba: Waiting
20d240a069ed: Pulling fs layer
cd0bb5382221: Waiting
06d7e4208a1c: Pulling fs layer
20d240a069ed: Waiting
7a657e3645e2: Pulling fs layer
06d7e4208a1c: Waiting
c921b91c9131: Pulling fs layer
7a657e3645e2: Waiting
0bf308db2801: Pulling fs layer
c921b91c9131: Waiting
a6ce20e09802: Pulling fs layer
5f4d332f89f7: Pulling fs layer
0bf308db2801: Waiting
a6ce20e09802: Waiting
5f4d332f89f7: Waiting
3ffa5fa4c338: Verifying Checksum
3ffa5fa4c338: Download complete
1ad98d62710f: Verifying Checksum
1ad98d62710f: Download complete
c62190a9ab61: Verifying Checksum
c62190a9ab61: Download complete
32b7f1733f93: Verifying Checksum
32b7f1733f93: Download complete
60b6d784b3f1: Verifying Checksum
60b6d784b3f1: Download complete
cd17da539bcb: Verifying Checksum
cd17da539bcb: Download complete
6331cc613db1: Verifying Checksum
6331cc613db1: Download complete
a78785a8707a: Verifying Checksum
a78785a8707a: Download complete
017a8e839984: Verifying Checksum
017a8e839984: Download complete
c62190a9ab61: Pull complete
3ffa5fa4c338: Pull complete
1ad98d62710f: Pull complete
269878e77d3e: Download complete
d105ce9936af: Verifying Checksum
d105ce9936af: Download complete
32b7f1733f93: Pull complete
5a2a6d451e1f: Verifying Checksum
5a2a6d451e1f: Download complete
60b6d784b3f1: Pull complete
6a816e31a608: Verifying Checksum
6a816e31a608: Download complete
c561c5e7e836: Verifying Checksum
c561c5e7e836: Download complete
181b5e50467a: Download complete
e1747048878a: Verifying Checksum
e1747048878a: Download complete
2c2bead92061: Verifying Checksum
2c2bead92061: Download complete
9964000ee5c2: Verifying Checksum
9964000ee5c2: Download complete
0cae2e739013: Verifying Checksum
0cae2e739013: Download complete
2f528d56ff17: Download complete
4f4fb700ef54: Download complete
02acd4f922b8: Download complete
7b56ac9ded88: Verifying Checksum
7b56ac9ded88: Download complete
5820f3f0ac5b: Verifying Checksum
5820f3f0ac5b: Download complete
565d3d2f91e3: Verifying Checksum
565d3d2f91e3: Download complete
6011b75baccf: Verifying Checksum
6011b75baccf: Download complete
aa679525444d: Verifying Checksum
aa679525444d: Download complete
e337c50fadae: Download complete
6233cfda6bc6: Verifying Checksum
6233cfda6bc6: Download complete
68480da602a2: Verifying Checksum
68480da602a2: Download complete
fe8455ef7fdd: Download complete
376ec1c1ff04: Verifying Checksum
62414c6876a0: Verifying Checksum
62414c6876a0: Download complete
7237efe4b8d6: Download complete
9ef3e7aa87ba: Verifying Checksum
9ef3e7aa87ba: Download complete
cd0bb5382221: Verifying Checksum
cd0bb5382221: Download complete
20d240a069ed: Verifying Checksum
20d240a069ed: Download complete
06d7e4208a1c: Download complete
7a657e3645e2: Verifying Checksum
7a657e3645e2: Download complete
dcb6948decd1: Verifying Checksum
dcb6948decd1: Download complete
0bf308db2801: Verifying Checksum
0bf308db2801: Download complete
a6ce20e09802: Verifying Checksum
a6ce20e09802: Download complete
5f4d332f89f7: Verifying Checksum
5f4d332f89f7: Download complete
5a2a6d451e1f: Pull complete
6331cc613db1: Pull complete
cd17da539bcb: Pull complete
a78785a8707a: Pull complete
017a8e839984: Pull complete
269878e77d3e: Pull complete
d105ce9936af: Pull complete
6a816e31a608: Pull complete
c561c5e7e836: Pull complete
2c2bead92061: Pull complete
181b5e50467a: Pull complete
c921b91c9131: Verifying Checksum
c921b91c9131: Download complete
e1747048878a: Pull complete
9964000ee5c2: Pull complete
2f528d56ff17: Pull complete
0cae2e739013: Pull complete
4f4fb700ef54: Pull complete
7b56ac9ded88: Pull complete
02acd4f922b8: Pull complete
5820f3f0ac5b: Pull complete
565d3d2f91e3: Pull complete
6011b75baccf: Pull complete
aa679525444d: Pull complete
6233cfda6bc6: Pull complete
e337c50fadae: Pull complete
68480da602a2: Pull complete
fe8455ef7fdd: Pull complete
376ec1c1ff04: Pull complete
62414c6876a0: Pull complete
e13152495ead: Verifying Checksum
e13152495ead: Download complete
e13152495ead: Pull complete
7237efe4b8d6: Pull complete
dcb6948decd1: Pull complete
9ef3e7aa87ba: Pull complete
cd0bb5382221: Pull complete
20d240a069ed: Pull complete
06d7e4208a1c: Pull complete
7a657e3645e2: Pull complete
c921b91c9131: Pull complete
0bf308db2801: Pull complete
a6ce20e09802: Pull complete
5f4d332f89f7: Pull complete
Digest: sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63
Status: Downloaded newer image for ocaml/opam@sha256:83de02032f9b85dce929d64c231fb77f94e15f564a87598ef1a9d0df7e592a63
2026-05-20 11:19.54 ---> using "e46652951934a813efb0d6f84cbda4f6fef1559a7ac3cd152c83e05942bad382" 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-05-20 11:19.54 ---> using "4e19d41b5ed497bc0b8097e4021e5cd7312930fbb3308c23ed27c43b39550799" 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.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[NOTE] The 'jobs' option was reset, its value was 1 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=1 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-20 11:20.03 ---> saved as "281140092245f77cc00bc33a32a5de7ffe250c401558537465b3859c2422fb48"
/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.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=ubuntu os-version=25.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-05-20 11:20.04 ---> saved as "224f41cfc0de4619656bdfb519cb7e6a40a05e19e872166c979b2acbdefe6c07"
/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-05-20 11:20.13 ---> saved as "fa9262d1888eeacf5d5c0040a2d176e2a0b3b831da1880824dd11b33c87ecf9a"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-20 11:20.22 ---> saved as "b99b566faba1755ddbc316ef8377c63a03bfeb64d65d264ab1ae624db7a576b6"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-20 11:20.32 ---> saved as "206d39568ce5d4710c1419fe81dce8c0f31013247723512ff8d7ac1e292241f5"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://security.ubuntu.com/ubuntu plucky-security InRelease
- Hit:2 http://archive.ubuntu.com/ubuntu plucky InRelease
- Hit:3 http://archive.ubuntu.com/ubuntu plucky-updates InRelease
- Hit:4 http://archive.ubuntu.com/ubuntu plucky-backports InRelease
- Reading package lists...
-
2026-05-20 11:20.34 ---> saved as "04cfe9ad2d851f5be41e499c609b93cef300ad8526c5d7035d1866f5d9f65895"
/home/opam: (run (shell "opam pin add -k version -yn embedded_ocaml_templates.0.8.1 0.8.1"))
embedded_ocaml_templates is now pinned to version 0.8.1
2026-05-20 11:20.35 ---> saved as "0e0a6f73077af3dac1c0376d236ab0f835b7dbc8333bc6bb3caa30d86e3f1137"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall embedded_ocaml_templates.0.8.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 \"\\\"ubuntu-25.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\" != 'embedded_ocaml_templates.0.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
embedded_ocaml_templates.0.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
- install containers 3.18 [required by embedded_ocaml_templates]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.23.1 [required by embedded_ocaml_templates]
- install dune-configurator 3.23.1 [required by containers]
- install either 1.0.0 [required by containers]
- install embedded_ocaml_templates 0.8.1 (pinned)
- install gen 1.1 [required by sedlex]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by uutf]
- install ocamlfind 1.9.8 [required by uutf]
- install pprint 20230830 [required by embedded_ocaml_templates]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 [required by embedded_ocaml_templates]
- install sedlex 3.7 [required by embedded_ocaml_templates]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by uutf]
- install uutf 1.0.4 [required by embedded_ocaml_templates]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved containers.3.18 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.23.1, dune-configurator.3.23.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved embedded_ocaml_templates.0.8.1 (https://github.com/EmileTrotignon/embedded_ocaml_templates/archive/refs/tags/0.8.1.tar.gz)
-> retrieved gen.1.1 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved pprint.20230830 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.23.1
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed gen.1.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed pprint.20230830
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.23.1
-> installed containers.3.18
-> installed ppxlib.0.38.0
-> installed sedlex.3.7
-> installed embedded_ocaml_templates.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-20 11:21.29 ---> saved as "dcea7412448f8b6b8cdc413d4a4a852126edda3b8c7b9f21bb6535c90145f1c4"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test embedded_ocaml_templates.0.8.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile embedded_ocaml_templates 0.8.1 (pinned)
=== install 18 packages
- install base v0.17.3 [required by ppx_inline_test]
- install jane-street-headers v0.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install ocaml_intrinsics_kernel v0.17.2 [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_enumerate v0.17.0 [required by ppx_base]
- 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_assert]
- install ppx_inline_test v0.17.1 [required by embedded_ocaml_templates]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ppx_sexp_conv v0.17.1 [required by ppx_base]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install stdio v0.17.0 [required by ppx_optcomp]
- install time_now v0.17.0 [required by ppx_inline_test]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (https://opam.ocaml.org/cache)
-> retrieved embedded_ocaml_templates.0.8.1 (https://github.com/EmileTrotignon/embedded_ocaml_templates/archive/refs/tags/0.8.1.tar.gz)
-> retrieved jane-street-headers.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml_intrinsics_kernel.v0.17.2 (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.17.0 (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.17.0
-> retrieved ppx_base.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.17.0 (https://opam.ocaml.org/cache)
-> installed ocaml_intrinsics_kernel.v0.17.2
-> retrieved ppx_enumerate.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.17.2 (https://opam.ocaml.org/cache)
-> 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)
-> 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_jane.v0.17.4 (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.17.0 (https://opam.ocaml.org/cache)
-> removed embedded_ocaml_templates.0.8.1
-> installed ppxlib_jane.v0.17.4
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> 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 embedded_ocaml_templates.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-20 11:21.58 ---> saved as "27d445b60f647b246214ae4e45a791adcfd39f13107d858bfe3cc880c8c9cc02"
/home/opam: (run (shell "opam reinstall --with-test --verbose embedded_ocaml_templates.0.8.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 \"\\\"ubuntu-25.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\" != 'embedded_ocaml_templates.0.8.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 embedded_ocaml_templates 0.8.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [embedded_ocaml_templates.0.8.1: extract]
-> retrieved embedded_ocaml_templates.0.8.1 (cached)
Processing 2/4: [embedded_ocaml_templates: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "embedded_ocaml_templates" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/embedded_ocaml_templates.0.8.1)
-> compiled embedded_ocaml_templates.0.8.1
-> removed embedded_ocaml_templates.0.8.1
-> installed embedded_ocaml_templates.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-20 11:22.06 ---> saved as "2acb6f803da9191893c72836b38a4063489813116527dc7fb4532f0bed28d8bc"
Job succeeded
2026-05-20 11:22.12: Job succeeded