(for PR #29945)
2026-05-23 16:28.34: New job: test lua-ml.0.9.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29945/head (8b623f363e6484cb1c885863fdf867c2295cd713)
on debian-unstable-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/29945/head" && git reset --hard 8b623f36
git fetch origin master
git merge --no-edit 493123878a032e3f829b102f34e8690b3b2a4fd4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-5.4@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3
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 lua-ml.0.9.5 0.9.5
RUN opam reinstall lua-ml.0.9.5; \
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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lua-ml.0.9.5' && 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 lua-ml.0.9.5) || true
RUN opam reinstall --with-test --verbose lua-ml.0.9.5; \
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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lua-ml.0.9.5' && 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-23 16:28.34: Using cache hint "ocaml/opam:debian-unstable-ocaml-5.4@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3-lua-ml.0.9.5-8b623f363e6484cb1c885863fdf867c2295cd713"
2026-05-23 16:28.34: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-5.4@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3)
(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 lua-ml.0.9.5 0.9.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lua-ml.0.9.5;\
\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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lua-ml.0.9.5' && 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 lua-ml.0.9.5) || true"))
(run (shell "opam reinstall --with-test --verbose lua-ml.0.9.5;\
\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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lua-ml.0.9.5' && 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-23 16:28.34: Waiting for resource in pool OCluster
2026-05-23 16:28.34: Waiting for worker…
2026-05-23 16:28.35: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
HEAD is now at 493123878a Merge pull request #29931 from chetmurthy/release-pa_ppx-package-suite-at-8.05.01
Updating 493123878a..8b623f363e
Fast-forward
packages/lua-ml/lua-ml.0.9.5/opam | 41 +++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 packages/lua-ml/lua-ml.0.9.5/opam
(from ocaml/opam:debian-unstable-ocaml-5.4@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3)
Unable to find image 'ocaml/opam:debian-unstable-ocaml-5.4@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3' locally
docker.io/ocaml/opam@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3: Pulling from ocaml/opam
6396b26de0b9: Pulling fs layer
8c82bcadd3a0: Pulling fs layer
ca9ba9b6a990: Pulling fs layer
dfbd3066f125: Pulling fs layer
a3bc130db4a1: Pulling fs layer
cf60c98b3dbc: Pulling fs layer
d1500e13335b: Pulling fs layer
55554ae4fedf: Pulling fs layer
a3bc130db4a1: Waiting
9b57e5080160: Pulling fs layer
cf60c98b3dbc: Waiting
2b35ff6cb6b7: Pulling fs layer
ea4ee44b05d8: Pulling fs layer
55554ae4fedf: Waiting
f2476a9ff551: Pulling fs layer
d1500e13335b: Waiting
dfbd3066f125: Waiting
9b57e5080160: Waiting
0ce778c03b0d: Pulling fs layer
2b35ff6cb6b7: Waiting
ea4ee44b05d8: Waiting
82dd3c03dd21: Pulling fs layer
f2476a9ff551: Waiting
3bc42f891c9f: Pulling fs layer
0ce778c03b0d: Waiting
82dd3c03dd21: Waiting
faf6bc77cdfd: Pulling fs layer
3bc42f891c9f: Waiting
300378a7a8a6: Pulling fs layer
faf6bc77cdfd: Waiting
e3dc1b219159: Pulling fs layer
ff2eb9f80099: Pulling fs layer
300378a7a8a6: Waiting
e3dc1b219159: Waiting
efba89bd5ac4: Pulling fs layer
ff2eb9f80099: Waiting
998970eba85f: Pulling fs layer
4f4fb700ef54: Pulling fs layer
efba89bd5ac4: Waiting
2c8894103979: Pulling fs layer
52f259cf9b36: Pulling fs layer
4f4fb700ef54: Waiting
233ccfca7f44: Pulling fs layer
998970eba85f: Waiting
2c8894103979: Waiting
52f259cf9b36: Waiting
e0fd7439447b: Pulling fs layer
233ccfca7f44: Waiting
b68a95ae0828: Pulling fs layer
e0fd7439447b: Waiting
994a2d45df13: Pulling fs layer
b68a95ae0828: Waiting
92ed7b928883: Pulling fs layer
994a2d45df13: Waiting
86c4fb2c5b4b: Pulling fs layer
97d86ccfdf58: Pulling fs layer
92ed7b928883: Waiting
33e6928b9b0a: Pulling fs layer
59967a26da68: Pulling fs layer
97d86ccfdf58: Waiting
86c4fb2c5b4b: Waiting
33e6928b9b0a: Waiting
fa0f5ef65631: Pulling fs layer
59967a26da68: Waiting
3ff43863ede4: Pulling fs layer
859ff2a7f156: Pulling fs layer
fa0f5ef65631: Waiting
b9f443d7cd73: Pulling fs layer
3ff43863ede4: Waiting
859ff2a7f156: Waiting
d41719d01204: Pulling fs layer
53fef9fc4072: Pulling fs layer
6e6a6a28af0f: Pulling fs layer
eda6fb5e3553: Pulling fs layer
b9f443d7cd73: Waiting
d41719d01204: Waiting
6e6a6a28af0f: Waiting
53fef9fc4072: Waiting
b9e5014d4569: Pulling fs layer
eda6fb5e3553: Waiting
b7e5894afc31: Pulling fs layer
abd5f9200da3: Pulling fs layer
59c76792e0f3: Pulling fs layer
b7e5894afc31: Waiting
abd5f9200da3: Waiting
b9e5014d4569: Waiting
ed9a8a5ff63b: Pulling fs layer
bea5a088c1dc: Pulling fs layer
59c76792e0f3: Waiting
ed9a8a5ff63b: Waiting
bea5a088c1dc: Waiting
8c82bcadd3a0: Verifying Checksum
8c82bcadd3a0: Download complete
ca9ba9b6a990: Verifying Checksum
ca9ba9b6a990: Download complete
a3bc130db4a1: Verifying Checksum
a3bc130db4a1: Download complete
dfbd3066f125: Verifying Checksum
dfbd3066f125: Download complete
6396b26de0b9: Verifying Checksum
6396b26de0b9: Download complete
d1500e13335b: Verifying Checksum
d1500e13335b: Download complete
55554ae4fedf: Verifying Checksum
55554ae4fedf: Download complete
2b35ff6cb6b7: Verifying Checksum
2b35ff6cb6b7: Download complete
cf60c98b3dbc: Verifying Checksum
cf60c98b3dbc: Download complete
6396b26de0b9: Pull complete
8c82bcadd3a0: Pull complete
ca9ba9b6a990: Pull complete
f2476a9ff551: Verifying Checksum
f2476a9ff551: Download complete
ea4ee44b05d8: Verifying Checksum
ea4ee44b05d8: Download complete
0ce778c03b0d: Verifying Checksum
0ce778c03b0d: Download complete
9b57e5080160: Verifying Checksum
9b57e5080160: Download complete
82dd3c03dd21: Verifying Checksum
82dd3c03dd21: Download complete
dfbd3066f125: Pull complete
300378a7a8a6: Verifying Checksum
300378a7a8a6: Download complete
e3dc1b219159: Download complete
3bc42f891c9f: Verifying Checksum
3bc42f891c9f: Download complete
a3bc130db4a1: Pull complete
efba89bd5ac4: Download complete
998970eba85f: Download complete
ff2eb9f80099: Verifying Checksum
ff2eb9f80099: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
52f259cf9b36: Verifying Checksum
52f259cf9b36: Download complete
233ccfca7f44: Verifying Checksum
233ccfca7f44: Download complete
2c8894103979: Verifying Checksum
2c8894103979: Download complete
b68a95ae0828: Verifying Checksum
b68a95ae0828: Download complete
e0fd7439447b: Verifying Checksum
e0fd7439447b: Download complete
994a2d45df13: Verifying Checksum
994a2d45df13: Download complete
86c4fb2c5b4b: Verifying Checksum
86c4fb2c5b4b: Download complete
97d86ccfdf58: Verifying Checksum
97d86ccfdf58: Download complete
92ed7b928883: Download complete
59967a26da68: Verifying Checksum
59967a26da68: Download complete
33e6928b9b0a: Verifying Checksum
33e6928b9b0a: Download complete
859ff2a7f156: Download complete
fa0f5ef65631: Download complete
d41719d01204: Verifying Checksum
d41719d01204: Download complete
53fef9fc4072: Verifying Checksum
53fef9fc4072: Download complete
6e6a6a28af0f: Download complete
3ff43863ede4: Verifying Checksum
3ff43863ede4: Download complete
b9f443d7cd73: Verifying Checksum
b9f443d7cd73: Download complete
eda6fb5e3553: Verifying Checksum
eda6fb5e3553: Download complete
b9e5014d4569: Verifying Checksum
b9e5014d4569: Download complete
b7e5894afc31: Verifying Checksum
b7e5894afc31: Download complete
59c76792e0f3: Download complete
ed9a8a5ff63b: Verifying Checksum
ed9a8a5ff63b: Download complete
bea5a088c1dc: Verifying Checksum
bea5a088c1dc: Download complete
cf60c98b3dbc: Pull complete
d1500e13335b: Pull complete
55554ae4fedf: Pull complete
9b57e5080160: Pull complete
abd5f9200da3: Verifying Checksum
abd5f9200da3: Download complete
2b35ff6cb6b7: Pull complete
ea4ee44b05d8: Pull complete
f2476a9ff551: Pull complete
0ce778c03b0d: Pull complete
82dd3c03dd21: Pull complete
3bc42f891c9f: Pull complete
faf6bc77cdfd: Pull complete
300378a7a8a6: Pull complete
e3dc1b219159: Pull complete
ff2eb9f80099: Pull complete
efba89bd5ac4: Pull complete
998970eba85f: Pull complete
4f4fb700ef54: Pull complete
2c8894103979: Pull complete
52f259cf9b36: Pull complete
233ccfca7f44: Pull complete
e0fd7439447b: Pull complete
b68a95ae0828: Pull complete
994a2d45df13: Pull complete
92ed7b928883: Pull complete
86c4fb2c5b4b: Pull complete
97d86ccfdf58: Pull complete
33e6928b9b0a: Pull complete
59967a26da68: Pull complete
fa0f5ef65631: Pull complete
3ff43863ede4: Pull complete
859ff2a7f156: Pull complete
b9f443d7cd73: Pull complete
d41719d01204: Pull complete
53fef9fc4072: Pull complete
6e6a6a28af0f: Pull complete
eda6fb5e3553: Pull complete
b9e5014d4569: Pull complete
b7e5894afc31: Pull complete
abd5f9200da3: Pull complete
59c76792e0f3: Pull complete
ed9a8a5ff63b: Pull complete
bea5a088c1dc: Pull complete
Digest: sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3
Status: Downloaded newer image for ocaml/opam@sha256:16249c942324c1f3ecc2562602e7cdfe8a04dd00dd3d92a13c7234d3419f2ed3
2026-05-23 16:29.01 ---> using "214726b4256dd04c71eebff93480488bfcfeda404c49219664bc842ffd3e4ee6" 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-23 16:29.01 ---> using "3658aaf66f6a19fb20d4c486c7dc1402c0a0cf9d5f64fc17222462d395514c64" 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.
Continue? [Y/n] y
[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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-23 16:29.01 ---> using "2509cc8cebdbd4e71aff13a23a127eaa380e3383c75cd5945224c71305c8d239" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=unknown
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 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-23 16:29.01 ---> using "a53a792dd2e3dcbabf6256e6dd03d603249ff766586988516ad4309f53e8782a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-05-23 16:29.01 ---> using "ec537234cc32f5619878a8524baa8c30d70ed67696dd59025cc551b282ed7b1d" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-23 16:29.08 ---> saved as "a73e919f8364b1c10cd6f0ca0626c92abb38b247b7893cde5b7c59eac8092d95"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-23 16:29.19 ---> saved as "3f10fdaef75f20e663911ab28eeaa0cfc3a6e9746cf21b6dd680126819eebbbf"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [189 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-05-23-1400.45-F-2026-05-17-0200.29.pdiff [412 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-05-23-1400.45-F-2026-05-17-0200.29.pdiff [412 kB]
- Fetched 665 kB in 5s (124 kB/s)
- Reading package lists...
-
2026-05-23 16:29.25 ---> saved as "bb903f79bf29d2efa023f1b18770aa5930211b053534a9139e9ce1b71cc597c3"
/home/opam: (run (shell "opam pin add -k version -yn lua-ml.0.9.5 0.9.5"))
lua-ml is now pinned to version 0.9.5
2026-05-23 16:29.26 ---> saved as "b1c9caa4554a85257519ab91afd75f62ae5a9c80f611c99e7beff15d97c9f46f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lua-ml.0.9.5;\
\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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lua-ml.0.9.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lua-ml.0.9.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install dune 3.23.1 [required by lua-ml]
- install lua-ml 0.9.5 (pinned)
- install menhir 20260209 [required by lua-ml]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.1 (cached)
-> retrieved lua-ml.0.9.5 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed dune.3.23.1
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed menhir.20260209
-> installed lua-ml.0.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-23 16:30.19 ---> saved as "da11aaea5e9b0b67aa5b2e4149d301e02b59dd0e3c0c0a9b4e0c10ae8686f1ec"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lua-ml.0.9.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lua-ml 0.9.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed lua-ml.0.9.5
-> installed lua-ml.0.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-23 16:30.27 ---> saved as "e199e8040d8c667c98ade5845f1602662d44e22eb6c02944ddec650ca4476d1b"
/home/opam: (run (shell "opam reinstall --with-test --verbose lua-ml.0.9.5;\
\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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lua-ml.0.9.5' && 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 lua-ml 0.9.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [lua-ml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lua-ml" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lua-ml.0.9.5)
- (cd _build/default && /home/opam/.opam/5.4/bin/menhir --external-tokens Luaparser_tokens src/luaparser_impl.mly src/luaparser_tokens.mly --base src/luaparser_impl --infer-write-query src/luaparser_impl__mock.ml.mock)
- File "src/luaparser_tokens.mly", line 12, characters 7-12:
- Warning: the token ARROW is unused.
- File "src/luaparser_tokens.mly", line 7, characters 49-53:
- Warning: the token CASE is unused.
- File "src/luaparser_tokens.mly", line 7, characters 54-63:
- Warning: the token GLOBMATCH is unused.
- File "src/luaparser_tokens.mly", line 7, characters 64-66:
- Warning: the token OF is unused.
- File "src/luaparser_tokens.mly", line 5, characters 7-17:
- Warning: the token WRONGTOKEN is unused.
Processing 2/4: [lua-ml: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "lua-ml" "--create-install-files" "lua-ml" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lua-ml.0.9.5)
-> compiled lua-ml.0.9.5
-> removed lua-ml.0.9.5
-> installed lua-ml.0.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-23 16:30.35 ---> saved as "93652c014fdd98deeddbe890f1756c45c901870895d53e64b13440982b7facc2"
Job succeeded
2026-05-23 16:30.41: Job succeeded