Build:
- 0
2025-12-19 04:58.20: New job: test conf-llvm-shared.20, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29110/head (a16fbbbc4ad239dba151649395b1e98d3d337d30)
on debian-13-ocaml-4.14-no-flat-float-array/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/29110/head" && git reset --hard a16fbbbc
git fetch origin master
git merge --no-edit 2aead33854a73066d496ba97fd511f34e51a1fa4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14-no-flat-float-array@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e
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 conf-llvm-shared.20 20
RUN opam reinstall conf-llvm-shared.20; \
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" != 'conf-llvm-shared.20' && 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 conf-llvm-shared.20) || true
RUN opam reinstall --with-test --verbose conf-llvm-shared.20; \
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" != 'conf-llvm-shared.20' && 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-19 04:58.20: Using cache hint "ocaml/opam:debian-13-ocaml-4.14-no-flat-float-array@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e-conf-llvm-shared.20-a16fbbbc4ad239dba151649395b1e98d3d337d30"
2025-12-19 04:58.20: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14-no-flat-float-array@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e)
(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 conf-llvm-shared.20 20"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-llvm-shared.20;\
\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\" != 'conf-llvm-shared.20' && 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 conf-llvm-shared.20) || true"))
(run (shell "opam reinstall --with-test --verbose conf-llvm-shared.20;\
\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\" != 'conf-llvm-shared.20' && 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-19 04:58.20: Waiting for resource in pool OCluster
2025-12-19 06:02.02: Waiting for worker…
2025-12-19 06:05.46: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 2aead33854 Merge pull request #29109 from shonfeder/otel-lwt-cohttp-lwt-upper-bound
Updating 2aead33854..a16fbbbc4a
Fast-forward
packages/conf-llvm-shared/conf-llvm-shared.20/opam | 34 +++++++++++
packages/conf-llvm-shared/conf-llvm-shared.21/opam | 34 +++++++++++
packages/conf-llvm-static/conf-llvm-static.19/opam | 1 -
packages/conf-llvm-static/conf-llvm-static.20/opam | 34 +++++++++++
packages/conf-llvm-static/conf-llvm-static.21/opam | 34 +++++++++++
packages/llvm/llvm.19-shared/opam | 1 -
packages/llvm/llvm.19-static/opam | 1 -
packages/llvm/llvm.20-shared/opam | 67 ++++++++++++++++++++++
packages/llvm/llvm.20-static/opam | 67 ++++++++++++++++++++++
packages/llvm/llvm.21-shared/opam | 67 ++++++++++++++++++++++
packages/llvm/llvm.21-static/opam | 67 ++++++++++++++++++++++
11 files changed, 404 insertions(+), 3 deletions(-)
create mode 100644 packages/conf-llvm-shared/conf-llvm-shared.20/opam
create mode 100644 packages/conf-llvm-shared/conf-llvm-shared.21/opam
create mode 100644 packages/conf-llvm-static/conf-llvm-static.20/opam
create mode 100644 packages/conf-llvm-static/conf-llvm-static.21/opam
create mode 100644 packages/llvm/llvm.20-shared/opam
create mode 100644 packages/llvm/llvm.20-static/opam
create mode 100644 packages/llvm/llvm.21-shared/opam
create mode 100644 packages/llvm/llvm.21-static/opam
(from ocaml/opam:debian-13-ocaml-4.14-no-flat-float-array@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14-no-flat-float-array@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e' locally
docker.io/ocaml/opam@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e: Pulling from ocaml/opam
2981f7e8980b: Already exists
9c63e1c4ba84: Already exists
02578b9c9f1b: Already exists
3801cb7ba5e6: Already exists
1c4cdedd39f1: Already exists
40f6006c5f5a: Pulling fs layer
c451a17216ec: Pulling fs layer
e4104b8f72ee: Pulling fs layer
7c7dbc5e7919: Pulling fs layer
aa82be714e7c: Pulling fs layer
922520f12384: Pulling fs layer
9bfea042cef8: Pulling fs layer
1244979f7c21: Pulling fs layer
7583a0e34f94: Pulling fs layer
e4104b8f72ee: Download complete
c451a17216ec: Download complete
14bef3f2665a: Pulling fs layer
3a4b42ce6cb5: Pulling fs layer
aa82be714e7c: Download complete
b0a08a900877: Pulling fs layer
16ac87e68d60: Pulling fs layer
1244979f7c21: Download complete
7c7dbc5e7919: Download complete
74ac6e8c9b82: Pulling fs layer
14bef3f2665a: Download complete
9bfea042cef8: Download complete
922520f12384: Download complete
7583a0e34f94: Download complete
b0a08a900877: Download complete
b41290a57dc5: Pulling fs layer
3a4b42ce6cb5: Download complete
592e5bcb7159: Pulling fs layer
16ac87e68d60: Download complete
74ac6e8c9b82: Download complete
4f4fb700ef54: Pulling fs layer
b41290a57dc5: Download complete
1db0705661a3: Pulling fs layer
76bb8e35b9cc: Pulling fs layer
4f4fb700ef54: Download complete
592e5bcb7159: Download complete
3bc9d98c3b49: Pulling fs layer
1db0705661a3: Download complete
7096ef42e6c0: Pulling fs layer
cd0e70de8125: Pulling fs layer
3bc9d98c3b49: Download complete
76bb8e35b9cc: Download complete
23ffab57f98e: Pulling fs layer
7096ef42e6c0: Download complete
b974353d8023: Pulling fs layer
c74fba566723: Pulling fs layer
cd0e70de8125: Download complete
5ad399846f45: Pulling fs layer
b974353d8023: Download complete
23ffab57f98e: Download complete
3e7203fa3980: Pulling fs layer
c74fba566723: Download complete
0b8915d2a92b: Pulling fs layer
e68c7a56c438: Pulling fs layer
5ad399846f45: Download complete
9024d680a167: Pulling fs layer
3c7c73421b6e: Pulling fs layer
3e7203fa3980: Download complete
0b8915d2a92b: Download complete
7134fa9b4278: Pulling fs layer
9d94fb523099: Pulling fs layer
e68c7a56c438: Download complete
20d06dbdae7e: Pulling fs layer
3c7c73421b6e: Download complete
b9a45e537661: Pulling fs layer
9024d680a167: Download complete
7ffea7dbb6f0: Pulling fs layer
b9a45e537661: Download complete
4ea14074690d: Pulling fs layer
20d06dbdae7e: Download complete
9d94fb523099: Download complete
c61991ac1043: Pulling fs layer
dc600e183621: Pulling fs layer
c61991ac1043: Waiting
4ea14074690d: Verifying Checksum
4ea14074690d: Download complete
c61991ac1043: Download complete
dc600e183621: Verifying Checksum
dc600e183621: Download complete
7134fa9b4278: Verifying Checksum
7134fa9b4278: Download complete
7ffea7dbb6f0: Verifying Checksum
7ffea7dbb6f0: Download complete
40f6006c5f5a: Pull complete
c451a17216ec: Pull complete
e4104b8f72ee: Pull complete
7c7dbc5e7919: Pull complete
aa82be714e7c: Pull complete
922520f12384: Pull complete
9bfea042cef8: Pull complete
1244979f7c21: Pull complete
7583a0e34f94: Pull complete
14bef3f2665a: Pull complete
3a4b42ce6cb5: Pull complete
b0a08a900877: Pull complete
16ac87e68d60: Pull complete
74ac6e8c9b82: Pull complete
b41290a57dc5: Pull complete
592e5bcb7159: Pull complete
4f4fb700ef54: Pull complete
1db0705661a3: Pull complete
76bb8e35b9cc: Pull complete
3bc9d98c3b49: Pull complete
7096ef42e6c0: Pull complete
cd0e70de8125: Pull complete
23ffab57f98e: Pull complete
b974353d8023: Pull complete
c74fba566723: Pull complete
5ad399846f45: Pull complete
3e7203fa3980: Pull complete
0b8915d2a92b: Pull complete
e68c7a56c438: Pull complete
9024d680a167: Pull complete
3c7c73421b6e: Pull complete
7134fa9b4278: Pull complete
9d94fb523099: Pull complete
20d06dbdae7e: Pull complete
b9a45e537661: Pull complete
7ffea7dbb6f0: Pull complete
4ea14074690d: Pull complete
c61991ac1043: Pull complete
dc600e183621: Pull complete
Digest: sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e
Status: Downloaded newer image for ocaml/opam@sha256:f46076110d93aa1d58d97cafdad6414a21b26427d67ff57cdb56971bc20cba3e
2025-12-19 06:07.32 ---> saved as "2767d3a479e0858d28bb9cb88915da06bd569d983442c52d4463fc4de72248f2"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-19 06:07.33 ---> saved as "07d1620593234f8a7ec0e3737628935387c4ad3318eade03db1e6904e36fdc3d"
/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-19 06:07.56 ---> saved as "9f875347f00398ba8f0ad1fae960f9fbb520494bc9b44b9adcea4d5095e4065f"
/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-options-only-no-flat-float-array"]
# compiler-packages ocaml-option-no-flat-float-array.1, ocaml-options-only-no-flat-float-array.1, ocaml-variants.4.14.2+options
# 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+options+no-flat-float-array
2025-12-19 06:07.57 ---> saved as "c2bf79ce8bb2dae5c328836d6fb66254c9dc27e9a8339f5fc8587320a7890a94"
/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-19 06:08.04 ---> saved as "767fb93116507e214ad7e7bc74830ef2d96dd3c97618c0558b2f922011c080da"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-19 06:08.37 ---> saved as "74f733abfbd792f29d9ff4e4736d870b597b85f65452d3c573b8b6ade1bcdeb6"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-19 06:08.54 ---> saved as "4e3b35ea4f4e722cf6cf38386070222c2b33ac4c19df7da9e526e35575063fe6"
/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 [85.2 kB]
- Fetched 176 kB in 0s (1781 kB/s)
- Reading package lists...
2025-12-19 06:08.55 ---> saved as "6bfbdd1e98d321009281454dc83dbd2be372ceb3a0189cf35082a3e7a2794a9a"
/home/opam: (run (shell "opam pin add -k version -yn conf-llvm-shared.20 20"))
conf-llvm-shared is now pinned to version 20
2025-12-19 06:08.56 ---> saved as "3f9197eab4dfc9e7caf05e5118d0d2319117ab88d9f8f57d6a023ed4092c92a5"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-llvm-shared.20;\
\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\" != 'conf-llvm-shared.20' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
[ERROR] Package conf-llvm-shared.20 depends on the unavailable system package 'llvm-20-dev'. You can use `--no-depexts' to attempt installation anyway.
"/usr/bin/env" "bash" "-c" "opam reinstall conf-llvm-shared.20;
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" != 'conf-llvm-shared.20' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 5
2025-12-19 06:09.30: Job failed: Failed: Build failed
2025-12-19 06:09.30: Log analysis:
2025-12-19 06:09.30: >>>
[ERROR] Package conf-llvm-shared.20 depends on the unavailable system package 'llvm-20-dev'. You can use `--no-depexts' to attempt installation anyway.
(score = 100)
2025-12-19 06:09.30: [SKIP] Package not available