Build:
- 0
2025-12-17 15:33.24: New job: test ocaml.5.5.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29085/head (d0355feefc1e55d6558a9946775e6b891961f805)
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/29085/head" && git reset --hard d0355fee
git fetch origin master
git merge --no-edit c199949faadf15109c780af6e7b5b8a514096df6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-5.4@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132
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 ocaml.5.5.0 5.5.0
RUN opam reinstall ocaml.5.5.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml.5.5.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 ocaml.5.5.0) || true
RUN opam reinstall --with-test --verbose ocaml.5.5.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml.5.5.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-17 15:33.24: Using cache hint "ocaml/opam:debian-unstable-ocaml-5.4@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132-ocaml.5.5.0-d0355feefc1e55d6558a9946775e6b891961f805"
2025-12-17 15:33.24: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-5.4@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132)
(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 ocaml.5.5.0 5.5.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml.5.5.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-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\" != 'ocaml.5.5.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 ocaml.5.5.0) || true"))
(run (shell "opam reinstall --with-test --verbose ocaml.5.5.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-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\" != 'ocaml.5.5.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-17 15:33.24: Waiting for resource in pool OCluster
2025-12-17 15:33.25: Waiting for worker…
2025-12-17 15:34.32: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at c199949faa Merge pull request #29097 from reynir/release-albatross-v2.6.2
Updating c199949faa..d0355feefc
Fast-forward
packages/ocaml/ocaml.5.5.0/opam | 26 +++++++++++++++++++++++---
1 file changed, 23 insertions(+), 3 deletions(-)
(from ocaml/opam:debian-unstable-ocaml-5.4@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132)
Unable to find image 'ocaml/opam:debian-unstable-ocaml-5.4@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132' locally
docker.io/ocaml/opam@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132: Pulling from ocaml/opam
8d9b0d1957d2: Pulling fs layer
77bd5ce6de14: Pulling fs layer
59ace7bbb792: Pulling fs layer
b44820cf8c7c: Pulling fs layer
8d9b0d1957d2: Waiting
01779645db39: Pulling fs layer
77bd5ce6de14: Waiting
59ace7bbb792: Waiting
b44820cf8c7c: Waiting
2eff1215ea11: Pulling fs layer
01779645db39: Waiting
cd204a506c17: Pulling fs layer
fdbe9d71b607: Pulling fs layer
1d1ef689aa4e: Pulling fs layer
2eff1215ea11: Waiting
21d29e096296: Pulling fs layer
cd204a506c17: Waiting
f3c0f441dc5a: Pulling fs layer
24e024f45d9d: Pulling fs layer
fdbe9d71b607: Waiting
70f2fc20df5f: Pulling fs layer
1d1ef689aa4e: Waiting
dc1d3669f80d: Pulling fs layer
d1960fd642f1: Pulling fs layer
5a522f53743b: Pulling fs layer
21d29e096296: Waiting
69c97573612d: Pulling fs layer
f3c0f441dc5a: Waiting
e309391d441d: Pulling fs layer
db1ca6399fa8: Pulling fs layer
24e024f45d9d: Waiting
14889b83b326: Pulling fs layer
44e6acdbb29a: Pulling fs layer
70f2fc20df5f: Waiting
4f4fb700ef54: Pulling fs layer
dc1d3669f80d: Waiting
1976d6d05edb: Pulling fs layer
847e4a574c7f: Pulling fs layer
d1960fd642f1: Waiting
6b92941a3055: Pulling fs layer
37281440a7ab: Pulling fs layer
5a522f53743b: Waiting
b771055b6fbe: Pulling fs layer
69c97573612d: Waiting
8f4ee55b4bf4: Pulling fs layer
d31d3386bb00: Pulling fs layer
aa71471fafa8: Pulling fs layer
cab8c018bf1d: Pulling fs layer
efe6eb884787: Pulling fs layer
e309391d441d: Waiting
6b92941a3055: Waiting
db1ca6399fa8: Waiting
22ff1b490950: Pulling fs layer
37281440a7ab: Waiting
14889b83b326: Waiting
b771055b6fbe: Waiting
44e6acdbb29a: Waiting
08392e8ad44d: Pulling fs layer
847e4a574c7f: Waiting
4f4fb700ef54: Waiting
8f4ee55b4bf4: Waiting
d31d3386bb00: Waiting
efe6eb884787: Waiting
bf72d3e60562: Pulling fs layer
22ff1b490950: Waiting
aa71471fafa8: Waiting
b86542fe15d8: Pulling fs layer
08392e8ad44d: Waiting
1976d6d05edb: Waiting
3e06f54e161d: Pulling fs layer
bf72d3e60562: Waiting
a6e2d58d3cdf: Pulling fs layer
cab8c018bf1d: Waiting
c13828c89769: Pulling fs layer
99b7dd76d6c0: Pulling fs layer
b86542fe15d8: Waiting
99b7dd76d6c0: Waiting
9a854ae6f84e: Pulling fs layer
466fe54d4916: Pulling fs layer
9e6ca4a3ca25: Pulling fs layer
e75afc686932: Pulling fs layer
627da9a28f68: Pulling fs layer
bc2aa5c6ac7d: Pulling fs layer
9e6ca4a3ca25: Waiting
e75afc686932: Waiting
9a854ae6f84e: Waiting
1cce25069f14: Pulling fs layer
bc2aa5c6ac7d: Waiting
627da9a28f68: Waiting
c13828c89769: Waiting
466fe54d4916: Waiting
8d9b0d1957d2: Verifying Checksum
8d9b0d1957d2: Download complete
77bd5ce6de14: Download complete
59ace7bbb792: Download complete
b44820cf8c7c: Verifying Checksum
b44820cf8c7c: Download complete
01779645db39: Verifying Checksum
01779645db39: Download complete
8d9b0d1957d2: Pull complete
77bd5ce6de14: Pull complete
59ace7bbb792: Pull complete
b44820cf8c7c: Pull complete
01779645db39: Pull complete
cd204a506c17: Verifying Checksum
cd204a506c17: Download complete
2eff1215ea11: Verifying Checksum
2eff1215ea11: Download complete
fdbe9d71b607: Verifying Checksum
fdbe9d71b607: Download complete
1d1ef689aa4e: Verifying Checksum
1d1ef689aa4e: Download complete
f3c0f441dc5a: Verifying Checksum
f3c0f441dc5a: Download complete
21d29e096296: Verifying Checksum
21d29e096296: Download complete
24e024f45d9d: Verifying Checksum
24e024f45d9d: Download complete
dc1d3669f80d: Verifying Checksum
dc1d3669f80d: Download complete
70f2fc20df5f: Verifying Checksum
70f2fc20df5f: Download complete
d1960fd642f1: Download complete
5a522f53743b: Download complete
e309391d441d: Verifying Checksum
e309391d441d: Download complete
db1ca6399fa8: Verifying Checksum
db1ca6399fa8: Download complete
69c97573612d: Download complete
14889b83b326: Download complete
4f4fb700ef54: Download complete
44e6acdbb29a: Download complete
1976d6d05edb: Verifying Checksum
1976d6d05edb: Download complete
847e4a574c7f: Verifying Checksum
847e4a574c7f: Download complete
6b92941a3055: Download complete
37281440a7ab: Verifying Checksum
37281440a7ab: Download complete
b771055b6fbe: Verifying Checksum
b771055b6fbe: Download complete
8f4ee55b4bf4: Verifying Checksum
8f4ee55b4bf4: Download complete
aa71471fafa8: Verifying Checksum
aa71471fafa8: Download complete
d31d3386bb00: Verifying Checksum
d31d3386bb00: Download complete
cab8c018bf1d: Verifying Checksum
cab8c018bf1d: Download complete
efe6eb884787: Verifying Checksum
efe6eb884787: Download complete
22ff1b490950: Download complete
08392e8ad44d: Verifying Checksum
08392e8ad44d: Download complete
b86542fe15d8: Verifying Checksum
b86542fe15d8: Download complete
2eff1215ea11: Pull complete
cd204a506c17: Pull complete
fdbe9d71b607: Pull complete
1d1ef689aa4e: Pull complete
21d29e096296: Pull complete
f3c0f441dc5a: Pull complete
24e024f45d9d: Pull complete
70f2fc20df5f: Pull complete
dc1d3669f80d: Pull complete
d1960fd642f1: Pull complete
5a522f53743b: Pull complete
69c97573612d: Pull complete
3e06f54e161d: Verifying Checksum
3e06f54e161d: Download complete
a6e2d58d3cdf: Verifying Checksum
a6e2d58d3cdf: Download complete
e309391d441d: Pull complete
db1ca6399fa8: Pull complete
14889b83b326: Pull complete
44e6acdbb29a: Pull complete
4f4fb700ef54: Pull complete
1976d6d05edb: Pull complete
847e4a574c7f: Pull complete
6b92941a3055: Pull complete
37281440a7ab: Pull complete
b771055b6fbe: Pull complete
8f4ee55b4bf4: Pull complete
d31d3386bb00: Pull complete
aa71471fafa8: Pull complete
cab8c018bf1d: Pull complete
efe6eb884787: Pull complete
22ff1b490950: Pull complete
08392e8ad44d: Pull complete
c13828c89769: Download complete
99b7dd76d6c0: Download complete
9a854ae6f84e: Verifying Checksum
9a854ae6f84e: Download complete
466fe54d4916: Verifying Checksum
466fe54d4916: Download complete
9e6ca4a3ca25: Download complete
e75afc686932: Verifying Checksum
e75afc686932: Download complete
627da9a28f68: Download complete
bc2aa5c6ac7d: Verifying Checksum
bc2aa5c6ac7d: Download complete
1cce25069f14: Verifying Checksum
1cce25069f14: Download complete
bf72d3e60562: Verifying Checksum
bf72d3e60562: Download complete
bf72d3e60562: Pull complete
b86542fe15d8: Pull complete
3e06f54e161d: Pull complete
a6e2d58d3cdf: Pull complete
c13828c89769: Pull complete
99b7dd76d6c0: Pull complete
9a854ae6f84e: Pull complete
466fe54d4916: Pull complete
9e6ca4a3ca25: Pull complete
e75afc686932: Pull complete
627da9a28f68: Pull complete
bc2aa5c6ac7d: Pull complete
1cce25069f14: Pull complete
Digest: sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132
Status: Downloaded newer image for ocaml/opam@sha256:24538f9b5ee1f01a4a2b738dd083d1e811f79c15ce588631095f9cd353d19132
2025-12-17 15:37.48 ---> saved as "db978863a4cdc58b0292bfef3732f658d8390dadfb2edbb79ee9261ee8a8729c"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-17 15:37.48 ---> saved as "931e2717e6f0c8ee1d76c48578aa901b04bf630711dcbee92bcbfd638f52091a"
/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-17 15:38.11 ---> saved as "9b3673a795d55eeece9bfac77c679fc814d5e788b8203c09d96d6160d60458b8"
/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=unknown
# 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.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2025-12-17 15:38.12 ---> saved as "b466a985276da90c3eee08b2123a1d2e33bbe4999956f99c41061e07712dcf7f"
/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-17 15:38.22 ---> saved as "2f43cced46e8e969d7582826a286a74b5ddcacd4051beaed346228bb5a409536"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-17 15:38.31 ---> saved as "7d978156a987cf048163c649efd3bfc76964b1f7ad52c808e8ef286e8758e312"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-17 15:38.50 ---> saved as "22e9d53576ccedf57227bd45f82d1453fb7929787e09fac884b8b4dbab9e5d2e"
/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 [186 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-2025-12-17-1409.16-F-2025-12-12-2006.24.pdiff [292 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2025-12-17-1409.16-F-2025-12-12-2006.24.pdiff [292 kB]
- Fetched 542 kB in 1s (397 kB/s)
- Reading package lists...
-
2025-12-17 15:38.54 ---> saved as "e93ae8dc4814cb19ed07654cdba07fbbe363b789e9ceddbe1fa6e7625f490d98"
/home/opam: (run (shell "opam pin add -k version -yn ocaml.5.5.0 5.5.0"))
ocaml is now pinned to version 5.5.0
2025-12-17 15:38.56 ---> saved as "feaf7b1603ab191a3fe80d52d2ef73e1348014323e6892c64c257c746ed0e686"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml.5.5.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-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\" != 'ocaml.5.5.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml.5.5.0 is not installed. Install it? [Y/n] y
* Missing dependency:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> ocaml = 5.4.0 -> ocaml.5.4.0: no longer available
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall ocaml.5.5.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-unstable\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'ocaml.5.5.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2025-12-17 15:39.12: Job failed: Failed: Build failed
2025-12-17 15:39.12: Log analysis:
2025-12-17 15:39.12: >>>
No solution found, exiting
(score = 100)
2025-12-17 15:39.12: [SKIP] Package not available