- github
- ocaml
- opam-repository
- 547bbc
- compilers,4.14,lwt.6.0.0-beta01,revdeps,lwt_camlp4.1.0.0
(not at the head of any monitored branch or PR)
2025-12-04 14:19.28: New job: test lwt_camlp4.1.0.0 with lwt.6.0.0-beta01, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28894/head (547bbce588bc6d9231ad2bd9c8b2b3930b2d061a)
on debian-13-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/28894/head" && git reset --hard 547bbce5
git fetch origin master
git merge --no-edit 3e41859015888fe8240e84dfc5f31bfa12a557e8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
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 lwt.6.0.0-beta01 6.0.0-beta01
RUN opam reinstall lwt.6.0.0-beta01; \
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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt.6.0.0-beta01' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall lwt_camlp4.1.0.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_camlp4.1.0.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 lwt_camlp4.1.0.0) || true
RUN opam reinstall --with-test --verbose lwt_camlp4.1.0.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_camlp4.1.0.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 .
2025-12-04 14:19.28: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42-lwt.6.0.0-beta01-lwt_camlp4.1.0.0-547bbce588bc6d9231ad2bd9c8b2b3930b2d061a"
2025-12-04 14:19.28: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42)
(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 lwt.6.0.0-beta01 6.0.0-beta01"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0-beta01;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt.6.0.0-beta01' && 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 lwt_camlp4.1.0.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_camlp4.1.0.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 lwt_camlp4.1.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose lwt_camlp4.1.0.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_camlp4.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-04 14:19.28: Waiting for resource in pool OCluster
2025-12-04 14:50.22: Waiting for worker…
2025-12-04 14:52.29: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 84% (15977/18983)
Updating files: 85% (16136/18983)
Updating files: 86% (16326/18983)
Updating files: 87% (16516/18983)
Updating files: 88% (16706/18983)
Updating files: 89% (16895/18983)
Updating files: 90% (17085/18983)
Updating files: 91% (17275/18983)
Updating files: 92% (17465/18983)
Updating files: 93% (17655/18983)
Updating files: 94% (17845/18983)
Updating files: 95% (18034/18983)
Updating files: 96% (18224/18983)
Updating files: 97% (18414/18983)
Updating files: 98% (18604/18983)
Updating files: 99% (18794/18983)
Updating files: 100% (18983/18983)
Updating files: 100% (18983/18983), done.
HEAD is now at 3e41859015 Merge pull request #28903 from jim-portegies/opam-publish-coq-waterproof.3.1.0-9.1
Merge made by the 'ort' strategy.
packages/lwt/lwt.6.0.0-beta01/opam | 66 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0-beta01/opam | 42 ++++++++++++++
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam | 43 ++++++++++++++
.../lwt_runtime_events.6.0.0-beta01/opam | 40 +++++++++++++
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 2 +-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 2 +-
packages/tezt/tezt.2.0.0/opam | 2 +-
packages/tezt/tezt.3.0.0/opam | 2 +-
packages/tezt/tezt.4.3.0/opam | 2 +-
25 files changed, 212 insertions(+), 21 deletions(-)
create mode 100644 packages/lwt/lwt.6.0.0-beta01/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0-beta01/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0-beta01/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42' locally
docker.io/ocaml/opam@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42: Pulling from ocaml/opam
53c88f1dfeb7: Already exists
f40653bbd569: Already exists
7810c66e401b: Already exists
d941667067ac: Already exists
6e099de50dbd: Already exists
45940f4cdce1: Pulling fs layer
cbbdea3b6efd: Pulling fs layer
4c34326b882a: Pulling fs layer
d8a1b7be7128: Pulling fs layer
b30719ba72c1: Pulling fs layer
eb031d51ba4a: Pulling fs layer
a59529ec7b26: Pulling fs layer
1049e4f3b9e4: Pulling fs layer
e2ab32c77566: Pulling fs layer
cbbdea3b6efd: Download complete
f6ef7bc31988: Pulling fs layer
4c34326b882a: Download complete
eb031d51ba4a: Waiting
28c3b5beaa3f: Pulling fs layer
b30719ba72c1: Waiting
1049e4f3b9e4: Waiting
83ebb7ec29e3: Pulling fs layer
a59529ec7b26: Waiting
e2ab32c77566: Waiting
186714418599: Pulling fs layer
28c3b5beaa3f: Waiting
f6ef7bc31988: Waiting
83ebb7ec29e3: Waiting
5045c0de4fc9: Pulling fs layer
3312ff3bfd69: Pulling fs layer
335847f13b00: Pulling fs layer
4f4fb700ef54: Pulling fs layer
5045c0de4fc9: Waiting
3312ff3bfd69: Waiting
186714418599: Waiting
b7958021acdb: Pulling fs layer
335847f13b00: Waiting
d92ce1afae3a: Pulling fs layer
4f4fb700ef54: Waiting
b7958021acdb: Waiting
7842835bd039: Pulling fs layer
3a60e5befc90: Pulling fs layer
7efeca794a8f: Pulling fs layer
7842835bd039: Waiting
efc7f994cef1: Pulling fs layer
d92ce1afae3a: Waiting
3a60e5befc90: Waiting
7efeca794a8f: Waiting
ba91afca1a0a: Pulling fs layer
efc7f994cef1: Waiting
8216b6db35fa: Pulling fs layer
229184d6690a: Pulling fs layer
40e4db8e45e7: Pulling fs layer
12fb3f269d42: Pulling fs layer
c0196b69a0ef: Pulling fs layer
8216b6db35fa: Waiting
ba91afca1a0a: Waiting
40e4db8e45e7: Waiting
229184d6690a: Waiting
12fb3f269d42: Waiting
b731bd241e4b: Pulling fs layer
53512a47261a: Pulling fs layer
b1be3290ddde: Pulling fs layer
fe5803a9f63d: Pulling fs layer
5cf61ec03f01: Pulling fs layer
53512a47261a: Waiting
c0196b69a0ef: Waiting
d44c5e23965f: Pulling fs layer
b731bd241e4b: Waiting
b1be3290ddde: Waiting
fe5803a9f63d: Waiting
90ef457de5f6: Pulling fs layer
5cf61ec03f01: Waiting
d44c5e23965f: Waiting
a083513427ff: Pulling fs layer
44824355a76a: Pulling fs layer
90ef457de5f6: Waiting
a083513427ff: Waiting
e614a8301c85: Pulling fs layer
44824355a76a: Waiting
e614a8301c85: Waiting
b30719ba72c1: Verifying Checksum
b30719ba72c1: Download complete
eb031d51ba4a: Verifying Checksum
eb031d51ba4a: Download complete
a59529ec7b26: Verifying Checksum
a59529ec7b26: Download complete
1049e4f3b9e4: Verifying Checksum
1049e4f3b9e4: Download complete
e2ab32c77566: Verifying Checksum
e2ab32c77566: Download complete
f6ef7bc31988: Download complete
28c3b5beaa3f: Download complete
83ebb7ec29e3: Verifying Checksum
83ebb7ec29e3: Download complete
186714418599: Download complete
d8a1b7be7128: Verifying Checksum
d8a1b7be7128: Download complete
5045c0de4fc9: Download complete
3312ff3bfd69: Verifying Checksum
3312ff3bfd69: Download complete
335847f13b00: Verifying Checksum
335847f13b00: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
b7958021acdb: Verifying Checksum
b7958021acdb: Download complete
d92ce1afae3a: Verifying Checksum
d92ce1afae3a: Download complete
3a60e5befc90: Download complete
7842835bd039: Verifying Checksum
7842835bd039: Download complete
7efeca794a8f: Verifying Checksum
7efeca794a8f: Download complete
efc7f994cef1: Verifying Checksum
efc7f994cef1: Download complete
8216b6db35fa: Verifying Checksum
8216b6db35fa: Download complete
ba91afca1a0a: Verifying Checksum
ba91afca1a0a: Download complete
229184d6690a: Verifying Checksum
229184d6690a: Download complete
12fb3f269d42: Download complete
40e4db8e45e7: Verifying Checksum
40e4db8e45e7: Download complete
c0196b69a0ef: Download complete
53512a47261a: Verifying Checksum
53512a47261a: Download complete
b1be3290ddde: Verifying Checksum
b1be3290ddde: Download complete
fe5803a9f63d: Download complete
5cf61ec03f01: Download complete
d44c5e23965f: Download complete
90ef457de5f6: Verifying Checksum
90ef457de5f6: Download complete
a083513427ff: Download complete
44824355a76a: Verifying Checksum
44824355a76a: Download complete
e614a8301c85: Verifying Checksum
e614a8301c85: Download complete
b731bd241e4b: Verifying Checksum
b731bd241e4b: Download complete
45940f4cdce1: Verifying Checksum
45940f4cdce1: Download complete
45940f4cdce1: Pull complete
cbbdea3b6efd: Pull complete
4c34326b882a: Pull complete
d8a1b7be7128: Pull complete
b30719ba72c1: Pull complete
eb031d51ba4a: Pull complete
a59529ec7b26: Pull complete
1049e4f3b9e4: Pull complete
e2ab32c77566: Pull complete
f6ef7bc31988: Pull complete
28c3b5beaa3f: Pull complete
83ebb7ec29e3: Pull complete
186714418599: Pull complete
5045c0de4fc9: Pull complete
3312ff3bfd69: Pull complete
335847f13b00: Pull complete
4f4fb700ef54: Pull complete
b7958021acdb: Pull complete
d92ce1afae3a: Pull complete
7842835bd039: Pull complete
3a60e5befc90: Pull complete
7efeca794a8f: Pull complete
efc7f994cef1: Pull complete
ba91afca1a0a: Pull complete
8216b6db35fa: Pull complete
229184d6690a: Pull complete
40e4db8e45e7: Pull complete
12fb3f269d42: Pull complete
c0196b69a0ef: Pull complete
b731bd241e4b: Pull complete
53512a47261a: Pull complete
b1be3290ddde: Pull complete
fe5803a9f63d: Pull complete
5cf61ec03f01: Pull complete
d44c5e23965f: Pull complete
90ef457de5f6: Pull complete
a083513427ff: Pull complete
44824355a76a: Pull complete
e614a8301c85: Pull complete
Digest: sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
Status: Downloaded newer image for ocaml/opam@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
2025-12-04 14:53.11 ---> using "fac428a8c7735f97c9831d58777f84ed5f5edf7a45e1d8d6ff738a3eabdf91c6" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-04 14:53.11 ---> using "85ac98518990e623e980b52e6d364d505900046b9e06d5177ffb65354baea48f" 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
2025-12-04 14:53.11 ---> using "4e22f79446a21acf351389e7133335d6829323fa53bfee34e73c9becfcc2d9c0" 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.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# 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-12-04 14:53.11 ---> using "557d0a2d25e17a38d2f3886324232bad90b96cebcdff184adca155bb718d6512" 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-12-04 14:53.11 ---> using "05f572f086bac5ec9bebf2869eea650c0c1b272ac5cb53bca04747a274a4038d" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-04 14:53.12 ---> using "7e4a8c6a0ce94265879b7835a3569c4df0df42f6def1009ec122346cb14eb8d0" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-04 14:53.12 ---> using "8f67e47575e0317f371607a8c5ea96f72d95dcab02d3c0a25980149df0a05a40" 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 trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [80.9 kB]
- Fetched 172 kB in 0s (1504 kB/s)
- Reading package lists...
2025-12-04 14:53.12 ---> using "999ffac10cf24d00da3ea7b99ef58d6e44fefe2e631df0fd59ae843434502ba0" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0-beta01 6.0.0-beta01"))
lwt is now pinned to version 6.0.0-beta01
2025-12-04 14:53.12 ---> using "9eedc5f997cb3bc7c55b19bef174a1850f8436e3f51ae5458c1d76f51f326e77" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0-beta01;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt.6.0.0-beta01' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.6.0.0-beta01 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by lwt]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0-beta01 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lwt.6.0.0-beta01 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0-beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:53.12 ---> using "3f2dfd7d44802b554c58b9bdb5b7847dfdab2888d1f930daafe7add8c62e1f15" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_camlp4.1.0.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_camlp4.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt_camlp4.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install camlp4 4.14+1 [required by lwt_camlp4]
- install jbuilder 1.0+beta20.2 (deprecated) [required by lwt_camlp4]
- install lwt_camlp4 1.0.0
- install ocamlbuild 0.16.1 [required by camlp4]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp4.4.14+1 (cached)
-> retrieved jbuilder.1.0+beta20.2 (cached)
-> retrieved lwt_camlp4.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed ocamlbuild.0.16.1
-> installed jbuilder.1.0+beta20.2
-> installed camlp4.4.14+1
-> installed lwt_camlp4.1.0.0
Done.
<><> jbuilder.1.0+beta20.2 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:55.33 ---> saved as "747c0f83d037a2ee789a1c12c9b664bc649801ecad9fd5ac63a4bc3a647fc769"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lwt_camlp4.1.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lwt_camlp4 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved lwt_camlp4.1.0.0 (https://opam.ocaml.org/cache)
-> removed lwt_camlp4.1.0.0
-> installed lwt_camlp4.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:55.43 ---> saved as "2cebff779c404074c18a12c89411668017041284f0fd3d3931983d49ee9c83a3"
/home/opam: (run (shell "opam reinstall --with-test --verbose lwt_camlp4.1.0.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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_camlp4.1.0.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 lwt_camlp4 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [lwt_camlp4.1.0.0: extract]
-> retrieved lwt_camlp4.1.0.0 (cached)
Processing 2/4: [lwt_camlp4: jbuilder build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "build" "-p" "lwt_camlp4" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_camlp4.1.0.0)
- File "jbuild", line 1, characters 0-0:
- Warning: File META.lwt_camlp4 is both generated by a rule and present in the source tree.
- As a result, the rule is currently ignored, however this will become an error in the future.
- Delete file META.lwt_camlp4 to get rid of this warning.
- ocamlopt src/camlp4/options/.lwt_camlp4_options.objs/pa_lwt_options.{cmx,o}
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- ocamlopt src/camlp4/.lwt_camlp4.objs/pa_lwt.{cmx,o}
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
-> compiled lwt_camlp4.1.0.0
-> removed lwt_camlp4.1.0.0
-> installed lwt_camlp4.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:55.52 ---> saved as "d130baafb8dee8ed76f3d47cd20514c329fafcd2419ede116c25974ce58c2b8d"
Job succeeded
2025-12-04 14:56.04: Job succeeded