Build:
- 1
- 0
2026-04-27 16:08.04: New job: test ciao_lwt.0.2, using opam 2.2
from https://github.com/ocaml/opam-repository.git#refs/pull/29811/head (29b643d772578a5d8d5016642f8c8e11fc2cdc70)
on debian-13-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/29811/head" && git reset --hard 29b643d7
git fetch origin master
git merge --no-edit d5058a91d400180e2118d7eeefa040cfcee45d2c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.2 /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 ciao_lwt.0.2 0.2
RUN opam reinstall ciao_lwt.0.2; \
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" != 'ciao_lwt.0.2' && 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 ciao_lwt.0.2) || true
RUN opam reinstall --with-test --verbose ciao_lwt.0.2; \
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" != 'ciao_lwt.0.2' && 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-04-27 16:08.04: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44-ciao_lwt.0.2-29b643d772578a5d8d5016642f8c8e11fc2cdc70"
2026-04-27 16:08.04: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.2 /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 ciao_lwt.0.2 0.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ciao_lwt.0.2;\
\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\" != 'ciao_lwt.0.2' && 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 ciao_lwt.0.2) || true"))
(run (shell "opam reinstall --with-test --verbose ciao_lwt.0.2;\
\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\" != 'ciao_lwt.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-27 16:08.04: Waiting for resource in pool OCluster
2026-04-27 16:08.04: Waiting for worker…
2026-04-27 16:09.31: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
HEAD is now at d5058a91d4 Merge pull request #29801 from YuriyKrasilnikov/opam-publish-idna.0.4.0
Updating d5058a91d4..29b643d772
Fast-forward
packages/ciao_lwt/ciao_lwt.0.2/opam | 66 +++++++++++++++++++++++++++++++++++++
1 file changed, 66 insertions(+)
create mode 100644 packages/ciao_lwt/ciao_lwt.0.2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44' locally
docker.io/ocaml/opam@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44: Pulling from ocaml/opam
3b32e3bb7338: Pulling fs layer
745aa02d649b: Pulling fs layer
bc737f5d3c43: Pulling fs layer
435aae15a5aa: Pulling fs layer
0c18c39f6bae: Pulling fs layer
eef74b82df23: Pulling fs layer
f7d9cf0406d8: Pulling fs layer
01a1dc37e798: Pulling fs layer
435aae15a5aa: Waiting
4960811e07ec: Pulling fs layer
be2894c36d5e: Pulling fs layer
0c18c39f6bae: Waiting
b5a017ae191d: Pulling fs layer
3ba39ce4e9c9: Pulling fs layer
1db570dbe1c8: Pulling fs layer
753bb4b44994: Pulling fs layer
b5a1e811909d: Pulling fs layer
6f3d83ba47b6: Pulling fs layer
002305272cbf: Pulling fs layer
01a1dc37e798: Waiting
eef74b82df23: Waiting
f7d9cf0406d8: Waiting
4960811e07ec: Waiting
b5a1e811909d: Waiting
b5a017ae191d: Waiting
249535cd82cd: Pulling fs layer
753bb4b44994: Waiting
87fe8c2a0989: Pulling fs layer
3ba39ce4e9c9: Waiting
b6932f04a343: Pulling fs layer
6f3d83ba47b6: Waiting
17b274223ca8: Pulling fs layer
4f4fb700ef54: Pulling fs layer
924952a8fbf8: Pulling fs layer
be2894c36d5e: Waiting
249535cd82cd: Waiting
17671b650f63: Pulling fs layer
87fe8c2a0989: Waiting
b6932f04a343: Waiting
9fe75d873195: Pulling fs layer
4f4fb700ef54: Waiting
002305272cbf: Waiting
17671b650f63: Waiting
24216535046d: Pulling fs layer
9fe75d873195: Waiting
1db570dbe1c8: Waiting
ac2e1c9e90df: Pulling fs layer
924952a8fbf8: Waiting
c2126be13b26: Pulling fs layer
ac2e1c9e90df: Waiting
24216535046d: Waiting
01ff22a5eb70: Pulling fs layer
50415235a68f: Pulling fs layer
01ff22a5eb70: Waiting
deb6182b549b: Pulling fs layer
50415235a68f: Waiting
ad728fb9a18c: Pulling fs layer
deb6182b549b: Waiting
17b274223ca8: Waiting
a36bcae85a3d: Pulling fs layer
ad728fb9a18c: Waiting
1c746fdc6a3a: Pulling fs layer
4351b787b295: Pulling fs layer
a36bcae85a3d: Waiting
1c746fdc6a3a: Waiting
c2126be13b26: Waiting
380abb093977: Pulling fs layer
0fc1b10f3fd9: Pulling fs layer
380abb093977: Waiting
966bc35978c3: Pulling fs layer
0fc1b10f3fd9: Waiting
ae53b61ccb9e: Pulling fs layer
d8ada9072f1a: Pulling fs layer
ae53b61ccb9e: Waiting
de924938e8b1: Pulling fs layer
f961f7bce966: Pulling fs layer
966bc35978c3: Waiting
de924938e8b1: Waiting
2f764eed3d15: Pulling fs layer
d8ada9072f1a: Waiting
4351b787b295: Waiting
de05668534c5: Pulling fs layer
2f764eed3d15: Waiting
27d1c4294721: Pulling fs layer
de05668534c5: Waiting
58acc85937c4: Pulling fs layer
b0d8742917e9: Pulling fs layer
27d1c4294721: Waiting
58acc85937c4: Waiting
b0d8742917e9: Waiting
745aa02d649b: Download complete
bc737f5d3c43: Verifying Checksum
bc737f5d3c43: Download complete
0c18c39f6bae: Verifying Checksum
0c18c39f6bae: Download complete
3b32e3bb7338: Verifying Checksum
3b32e3bb7338: Download complete
435aae15a5aa: Verifying Checksum
435aae15a5aa: Download complete
f7d9cf0406d8: Verifying Checksum
f7d9cf0406d8: Download complete
01a1dc37e798: Verifying Checksum
01a1dc37e798: Download complete
4960811e07ec: Verifying Checksum
4960811e07ec: Download complete
be2894c36d5e: Verifying Checksum
be2894c36d5e: Download complete
b5a017ae191d: Verifying Checksum
b5a017ae191d: Download complete
3ba39ce4e9c9: Verifying Checksum
3ba39ce4e9c9: Download complete
1db570dbe1c8: Verifying Checksum
1db570dbe1c8: Download complete
b5a1e811909d: Verifying Checksum
b5a1e811909d: Download complete
753bb4b44994: Verifying Checksum
6f3d83ba47b6: Verifying Checksum
6f3d83ba47b6: Download complete
002305272cbf: Download complete
249535cd82cd: Verifying Checksum
249535cd82cd: Download complete
87fe8c2a0989: Verifying Checksum
87fe8c2a0989: Download complete
b6932f04a343: Verifying Checksum
b6932f04a343: Download complete
3b32e3bb7338: Pull complete
17b274223ca8: Verifying Checksum
17b274223ca8: Download complete
745aa02d649b: Pull complete
bc737f5d3c43: Pull complete
4f4fb700ef54: Download complete
924952a8fbf8: Download complete
17671b650f63: Verifying Checksum
17671b650f63: Download complete
9fe75d873195: Download complete
435aae15a5aa: Pull complete
0c18c39f6bae: Pull complete
ac2e1c9e90df: Verifying Checksum
ac2e1c9e90df: Download complete
24216535046d: Verifying Checksum
24216535046d: Download complete
01ff22a5eb70: Verifying Checksum
01ff22a5eb70: Download complete
c2126be13b26: Download complete
50415235a68f: Download complete
deb6182b549b: Verifying Checksum
deb6182b549b: Download complete
ad728fb9a18c: Verifying Checksum
ad728fb9a18c: Download complete
a36bcae85a3d: Download complete
1c746fdc6a3a: Verifying Checksum
1c746fdc6a3a: Download complete
380abb093977: Verifying Checksum
4351b787b295: Verifying Checksum
4351b787b295: Download complete
966bc35978c3: Download complete
ae53b61ccb9e: Verifying Checksum
ae53b61ccb9e: Download complete
d8ada9072f1a: Verifying Checksum
d8ada9072f1a: Download complete
de924938e8b1: Verifying Checksum
de924938e8b1: Download complete
f961f7bce966: Verifying Checksum
2f764eed3d15: Verifying Checksum
2f764eed3d15: Download complete
0fc1b10f3fd9: Verifying Checksum
0fc1b10f3fd9: Download complete
27d1c4294721: Download complete
58acc85937c4: Download complete
b0d8742917e9: Download complete
de05668534c5: Verifying Checksum
de05668534c5: Download complete
eef74b82df23: Verifying Checksum
eef74b82df23: Download complete
eef74b82df23: Pull complete
f7d9cf0406d8: Pull complete
01a1dc37e798: Pull complete
4960811e07ec: Pull complete
be2894c36d5e: Pull complete
b5a017ae191d: Pull complete
3ba39ce4e9c9: Pull complete
1db570dbe1c8: Pull complete
753bb4b44994: Pull complete
b5a1e811909d: Pull complete
6f3d83ba47b6: Pull complete
002305272cbf: Pull complete
249535cd82cd: Pull complete
87fe8c2a0989: Pull complete
b6932f04a343: Pull complete
17b274223ca8: Pull complete
4f4fb700ef54: Pull complete
924952a8fbf8: Pull complete
17671b650f63: Pull complete
9fe75d873195: Pull complete
24216535046d: Pull complete
ac2e1c9e90df: Pull complete
c2126be13b26: Pull complete
01ff22a5eb70: Pull complete
50415235a68f: Pull complete
deb6182b549b: Pull complete
ad728fb9a18c: Pull complete
a36bcae85a3d: Pull complete
1c746fdc6a3a: Pull complete
4351b787b295: Pull complete
380abb093977: Pull complete
0fc1b10f3fd9: Pull complete
966bc35978c3: Pull complete
ae53b61ccb9e: Pull complete
d8ada9072f1a: Pull complete
de924938e8b1: Pull complete
f961f7bce966: Pull complete
2f764eed3d15: Pull complete
de05668534c5: Pull complete
27d1c4294721: Pull complete
58acc85937c4: Pull complete
b0d8742917e9: Pull complete
Digest: sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
Status: Downloaded newer image for ocaml/opam@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
2026-04-27 16:12.21 ---> saved as "3ad720629c2266fa8bdd5d2923dac1e3690d78741c5f65fb1eb4d33725df507c"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))
2026-04-27 16:12.22 ---> saved as "2b4045794ecd462815ee974758539217f0f438e45c5f7b1a64f186e088017e8e"
/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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-27 16:12.51 ---> saved as "1524fe9bfd244189e8855052be6875095eb2005f66a93fbb4d8f57f80857249b"
/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.2.1 (01e9a24a61e23e42d513b4b775d8c30c807439b2)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria
# upgrade-criteria
# 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-04-27 16:12.52 ---> saved as "95749337216059b383f8166a9c81c6a2c674e07ef21bc59b1d5c3ba80d4976be"
/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-04-27 16:13.10 ---> saved as "1c68029aa74d8f20e0b718957ac7fb7b9370369dd71bd181727b72913672e673"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-27 16:13.21 ---> saved as "2909dec87eaf52f3b35d74836d0a4f157b5b901a23d4c232a9801222f694f5dd"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-27 16:13.47 ---> saved as "1e95bf3a901bd99443e083018c69ff280a018fff44bdc620a3342d7528b68168"
/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]
- Fetched 90.7 kB in 0s (1234 kB/s)
- Reading package lists...
2026-04-27 16:13.49 ---> saved as "a0e3d05b14320f1251e6e9a1dfb17e9e593b0bb2f972d5c0ecb3f1c380a9620a"
/home/opam: (run (shell "opam pin add -k version -yn ciao_lwt.0.2 0.2"))
ciao_lwt is now pinned to version 0.2
2026-04-27 16:13.49 ---> saved as "64b84e4bede38021fbed2a6d399308f0e49e55afef78891b40e6c13bbec98ce6"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ciao_lwt.0.2;\
\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\" != 'ciao_lwt.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ciao_lwt.0.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 30 packages
- install astring 0.8.5 [required by ciao_lwt]
- install base v0.17.3 [required by ciao_lwt]
- install camlp-streams 5.0.1 [required by ciao_lwt]
- install ciao_lwt 0.2 (pinned)
- install cmdliner 2.1.1 [required by ciao_lwt]
- install csexp 1.5.2 [required by ciao_lwt]
- install dune 3.22.2 [required by ciao_lwt]
- install dune-build-info 3.22.2 [required by ciao_lwt]
- install dune-configurator 3.22.2 [required by base]
- install either 1.0.0 [required by ciao_lwt]
- install fix 20250919 [required by ciao_lwt]
- install fpath 0.7.3 [required by ciao_lwt]
- install menhir 20260209 [required by ciao_lwt]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by ciao_lwt]
- install menhirSdk 20260209 [required by ciao_lwt]
- install merlin-lib 5.7.0-504 [required by ciao_lwt]
- install ocaml-version 4.1.0 [required by ciao_lwt]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by fpath, astring, uuseg]
- install ocamlfind 1.9.8 [required by ocp-indent, astring, fpath, uuseg]
- install ocp-indent 1.9.0 [required by ciao_lwt]
- install re 1.14.0 [required by ciao_lwt]
- install sexplib0 v0.17.0 [required by base]
- install stdio v0.17.0 [required by ciao_lwt]
- install topkg 1.1.1 [required by fpath, astring, uuseg]
- install uucp 17.0.0 [required by uuseg]
- install uuseg 17.0.0 [required by ciao_lwt]
- install uutf 1.0.4 [required by ciao_lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved ciao_lwt.0.2 (cached)
-> retrieved cmdliner.2.1.1 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.22.2, dune-build-info.3.22.2, dune-configurator.3.22.2 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved fix.20250919 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed cmdliner.2.1.1
-> retrieved merlin-lib.5.7.0-504 (cached)
-> retrieved ocaml-version.4.1.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocp-indent.1.9.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uucp.17.0.0 (cached)
-> retrieved uuseg.17.0.0 (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 astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.22.2
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.2
-> installed either.1.0.0
-> installed fix.20250919
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-version.4.1.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed ocp-indent.1.9.0
-> installed dune-configurator.3.22.2
-> installed menhir.20260209
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed uucp.17.0.0
-> installed merlin-lib.5.7.0-504
-> installed uuseg.17.0.0
-> installed ciao_lwt.0.2
Done.
<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/5.4/share/ocp-indent/vim"
# Run eval $(opam env) to update the current shell environment
2026-04-27 16:16.09 ---> saved as "09dbe412e100e225712705ab3a08f115ab72445121a9fcd2a85c8165b2ebbdba"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ciao_lwt.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ciao_lwt 0.2 (pinned)
=== install 18 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install gen 1.1 [required by sedlex]
- install js_of_ocaml 6.2.0 [required by js_of_ocaml-lwt]
- install js_of_ocaml-compiler 6.2.0 [required by js_of_ocaml]
- install js_of_ocaml-lwt 6.2.0 [required by ciao_lwt]
- install js_of_ocaml-ppx 6.2.0 [required by js_of_ocaml-lwt]
- install lwt 5.9.2 [required by ciao_lwt]
- install lwt_log 1.1.2 [required by ciao_lwt]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-index 5.7.0-504 [required by ciao_lwt]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 [required by js_of_ocaml, js_of_ocaml-ppx]
- install sedlex 3.7 [required by js_of_ocaml-compiler]
- install seq base [required by gen]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install yojson 3.0.0 [required by js_of_ocaml-compiler]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed base-bytes.base
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved gen.1.1 (https://opam.ocaml.org/cache)
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-lwt.6.2.0, js_of_ocaml-ppx.6.2.0 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved lwt.5.9.2 (https://opam.ocaml.org/cache)
-> retrieved lwt_log.1.1.2 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ocaml-index.5.7.0-504 (https://opam.ocaml.org/cache)
-> retrieved ocplib-endian.1.2 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.38.0 (https://opam.ocaml.org/cache)
-> installed ocplib-endian.1.2
-> retrieved sedlex.3.7 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed gen.1.1
-> installed ocaml-index.5.7.0-504
-> removed ciao_lwt.0.2
-> installed yojson.3.0.0
-> installed lwt.5.9.2
-> installed lwt_log.1.1.2
-> installed ppxlib.0.38.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.2.0
-> installed js_of_ocaml.6.2.0
-> installed js_of_ocaml-ppx.6.2.0
-> installed js_of_ocaml-lwt.6.2.0
-> installed ciao_lwt.0.2
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-27 16:18.13 ---> saved as "341e47d9f79aeadb32c1e62e108f5cad89baf90e59a492ee5621fa0a4799df3b"
/home/opam: (run (shell "opam reinstall --with-test --verbose ciao_lwt.0.2;\
\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\" != 'ciao_lwt.0.2' && 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:
=== downgrade 1 package
- downgrade lwt 5.9.2 to 5.9.1 [required by ciao_lwt]
=== recompile 2 packages
- recompile ciao_lwt 0.2 (pinned)
- recompile lwt_log 1.1.2 [uses lwt]
=== upgrade 4 packages
- upgrade js_of_ocaml 6.2.0 to 6.3.2 [required by js_of_ocaml-lwt]
- upgrade js_of_ocaml-compiler 6.2.0 to 6.3.2 [required by js_of_ocaml]
- upgrade js_of_ocaml-lwt 6.2.0 to 6.3.2 [required by ciao_lwt]
- upgrade js_of_ocaml-ppx 6.2.0 to 6.3.2 [required by js_of_ocaml-lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/25: [js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2, js_of_ocaml-ppx.6.3.2: dl]
Processing 2/25: [js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2, js_of_ocaml-ppx.6.3.2: http]
[ERROR] Failed to get sources of js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2, js_of_ocaml-ppx.6.3.2 (https://github.com/ocsigen/js_of_ocaml/releases/download/6.3.2/js_of_ocaml-6.3.2.tbz): curl failed
Processing 3/25: [lwt.5.9.1: dl]
Processing 4/25: [lwt.5.9.1: dl]
Processing 4/25: [lwt.5.9.1: http]
[ERROR] Failed to get sources of lwt.5.9.1: curl failed
Processing 5/25: [lwt_log.1.1.2: extract]
Processing 6/25: [lwt_log.1.1.2: extract]
Processing 7/25: [lwt_log.1.1.2: extract]
Processing 8/25: [lwt_log.1.1.2: extract]
Processing 9/25: [lwt_log.1.1.2: extract]
Processing 10/25: [lwt_log.1.1.2: extract]
Processing 11/25: [lwt_log.1.1.2: extract]
Processing 12/25: [lwt_log.1.1.2: extract]
Processing 13/25: [lwt_log.1.1.2: extract]
Processing 14/25: [lwt_log.1.1.2: extract]
Processing 15/25: [lwt_log.1.1.2: extract]
Processing 16/25: [lwt_log.1.1.2: extract]
-> retrieved lwt_log.1.1.2 (cached)
#=== ERROR while fetching sources for lwt.5.9.1 ===============================#
OpamSolution.Fetch_fail("https://github.com/ocsigen/lwt/archive/refs/tags/5.9.1.tar.gz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.2.1 -L -o /home/opam/.opam/5.4/.opam-switch/sources/lwt.5.9.1/5.9.1.tar.gz.part -- https://github.com/ocsigen/lwt/archive/refs/tags/5.9.1.tar.gz\" exited with code 6)")
#=== ERROR while fetching sources for js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2 and js_of_ocaml-ppx.6.3.2
OpamSolution.Fetch_fail("https://github.com/ocsigen/js_of_ocaml/releases/download/6.3.2/js_of_ocaml-6.3.2.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.2.1 -L -o /tmp/opam-7-3644f9/js_of_ocaml-6.3.2.tbz.part -- https://github.com/ocsigen/js_of_ocaml/releases/download/6.3.2/js_of_ocaml-6.3.2.tbz\" exited with code 6)")
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions were aborted
| - remove js_of_ocaml 6.2.0
| - remove js_of_ocaml-compiler 6.2.0
| - remove js_of_ocaml-lwt 6.2.0
| - remove js_of_ocaml-ppx 6.2.0
| - remove lwt 5.9.2
| - recompile ciao_lwt 0.2
| - recompile lwt_log 1.1.2
+-
+- The following actions failed
| - fetch js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2, js_of_ocaml-ppx.6.3.2
| - fetch lwt 5.9.1
+-
- No changes have been performed
# Run eval $(opam env) to update the current shell environment
'opam reinstall --with-test --verbose ciao_lwt.0.2' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose ciao_lwt.0.2;
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" != 'ciao_lwt.0.2' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 40
2026-04-27 16:18.50: Job failed: Failed: Build failed
2026-04-27 16:18.50: Log analysis:
2026-04-27 16:18.50: >>>
[ERROR] Failed to get sources of js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2, js_of_ocaml-ppx.6.3.2 (https://github.com/ocsigen/js_of_ocaml/releases/download/6.3.2/js_of_ocaml-6.3.2.tbz): curl failed
(score = 25)
2026-04-27 16:18.50: >>>
[ERROR] Failed to get sources of lwt.5.9.1: curl failed
(score = 25)
2026-04-27 16:18.50: Failed to get sources of js_of_ocaml.6.3.2, js_of_ocaml-compiler.6.3.2, js_of_ocaml-lwt.6.3.2, js_of_ocaml-ppx.6.3.2 (https://github.com/ocsigen/js_of_ocaml/releases/download/6.3.2/js_of_ocaml-6.3.2.tbz): curl failed