- github
- ocaml
- opam-repository
- a16fbb
- distributions,debian-testing-ocaml-5.4,llvm.21-shared
(not at the head of any monitored branch or PR)
2025-12-30 15:25.27: New job: build llvm.21-shared, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29110/head (a16fbbbc4ad239dba151649395b1e98d3d337d30)
on debian-testing-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/29110/head" && git reset --hard a16fbbbc
git fetch origin master
git merge --no-edit f2d102f951a5dc2af6db218c6aef53c80186295a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-5.4@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8
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 llvm.21-shared 21-shared
RUN opam reinstall llvm.21-shared; \
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-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'llvm.21-shared' && 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-30 15:25.27: Using cache hint "ocaml/opam:debian-testing-ocaml-5.4@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8-llvm.21-shared-a16fbbbc4ad239dba151649395b1e98d3d337d30"
2025-12-30 15:25.27: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-5.4@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8)
(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 llvm.21-shared 21-shared"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.21-shared;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'llvm.21-shared' && 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-30 15:25.27: Waiting for resource in pool OCluster
2025-12-30 15:25.27: Waiting for worker…
2025-12-30 15:29.43: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at f2d102f951 Merge pull request #29150 from raphael-proust/llvm-20-21-only-cosmetics
Merge made by the 'ort' strategy.
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.20/opam | 34 +++++++++++
packages/conf-llvm-static/conf-llvm-static.21/opam | 34 +++++++++++
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 ++++++++++++++++++++++
8 files changed, 404 insertions(+)
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-testing-ocaml-5.4@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8)
Unable to find image 'ocaml/opam:debian-testing-ocaml-5.4@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8' locally
docker.io/ocaml/opam@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8: Pulling from ocaml/opam
d07e7493d306: Already exists
006e41eb6ffc: Already exists
3ee3749b0f7d: Already exists
9129881bf775: Already exists
5bc12c3747f1: Already exists
766dd36a39b8: Already exists
11f0088c8216: Already exists
ecf33d81fb83: Already exists
af7b17409730: Already exists
d88e40db171c: Already exists
c70da2ee691e: Already exists
15b75ec75148: Already exists
6599f8e77ba1: Already exists
62d4a97778e4: Already exists
104ca04c8730: Already exists
4b99764c028e: Already exists
a0121ec1f3c1: Already exists
5db081229064: Already exists
4099df12b2d5: Already exists
567865698a4f: Already exists
420c4441f61c: Already exists
f43278900e6b: Already exists
4f4fb700ef54: Already exists
5a662aa88b61: Already exists
0b6b22f514e4: Already exists
bb16a8aa8d4e: Already exists
5df9cf626dcd: Already exists
1449ca64a26d: Already exists
fa2730fc36df: Already exists
e34619743411: Already exists
9a28f75fe375: Already exists
3a18e07c27f5: Already exists
1b00bffdaf73: Already exists
534ade3cbbd9: Already exists
8093f466ee4f: Already exists
030d98e4e7ad: Already exists
43f61e7fd4f8: Already exists
fb9ed5d899d3: Already exists
68c3358bbd44: Already exists
2b69da229b8e: Already exists
88441e597eee: Already exists
554296f8d81e: Pulling fs layer
e8b89d7a4083: Pulling fs layer
8a531b74f7ad: Pulling fs layer
0c222e118c42: Pulling fs layer
554296f8d81e: Waiting
e8b89d7a4083: Waiting
54a96a573952: Pulling fs layer
0c222e118c42: Waiting
8a531b74f7ad: Waiting
8a7a5848a42e: Pulling fs layer
54a96a573952: Waiting
368432197a2b: Pulling fs layer
8a7a5848a42e: Waiting
554296f8d81e: Verifying Checksum
554296f8d81e: Download complete
554296f8d81e: Pull complete
e8b89d7a4083: Download complete
e8b89d7a4083: Pull complete
8a531b74f7ad: Verifying Checksum
8a531b74f7ad: Download complete
8a531b74f7ad: Pull complete
54a96a573952: Verifying Checksum
54a96a573952: Download complete
8a7a5848a42e: Verifying Checksum
8a7a5848a42e: Download complete
368432197a2b: Verifying Checksum
368432197a2b: Download complete
0c222e118c42: Verifying Checksum
0c222e118c42: Download complete
0c222e118c42: Pull complete
54a96a573952: Pull complete
8a7a5848a42e: Pull complete
368432197a2b: Pull complete
Digest: sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8
Status: Downloaded newer image for ocaml/opam@sha256:45d42a5f22aa2579200db604ee22f54b89cb58fbaacc0b3e855904c58b2e5be8
2025-12-30 15:31.44 ---> saved as "27051ea945956985f788cb957875c49a2b285b3d94242c5bb446cae3b61af6fc"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-30 15:31.44 ---> saved as "66fd2e4e62e461604cb4f552f4d12914e764a99dfdbc5069cf74a0920c572783"
/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
[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 15:32.11 ---> saved as "cc3d9bf86b6ef133abd1666964049b91cb0e5a1d42fdd0caf36548d27a1b8904"
/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 71
# 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-30 15:32.12 ---> saved as "f1d8be81d630a833180ac936dcb8d4ea83b756c141ee65b2131016dd62dde92b"
/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-30 15:32.23 ---> saved as "62a7c460949b5a8c0df203145686835dc2047762b447b6e4bb992e984e2457f8"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 15:32.34 ---> saved as "05ae5680d26ae8b904c0000bd3451cc0854de6cb62ea1aed7b3d1285ff04595e"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 15:32.54 ---> saved as "99c68b21270d19470f3d32309e282c5edc257bfe52c806553cb38797414532bf"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [137 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [40.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-12-30-0815.30-F-2025-12-26-2020.11.pdiff [140 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-12-30-0815.30-F-2025-12-26-2020.11.pdiff [140 kB]
- Fetched 424 kB in 2s (172 kB/s)
- Reading package lists...
-
2025-12-30 15:32.57 ---> saved as "942fa6bf318f212f179fc688fb3af6fb091a70027d65fb626db49f13a5af25fd"
/home/opam: (run (shell "opam pin add -k version -yn llvm.21-shared 21-shared"))
llvm is now pinned to version 21-shared
2025-12-30 15:32.58 ---> saved as "b17822f2373f5c0e0896ea294a2a398e49f7d461ea07497a1295470a582cdb57"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.21-shared;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'llvm.21-shared' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
llvm.21-shared is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install conf-bash 1 [required by conf-llvm-shared]
- install conf-cmake 1 [required by llvm]
- install conf-llvm-shared 21 [required by llvm]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by llvm]
- install dune 3.20.2 [required by ctypes]
- install dune-configurator 3.20.2 [required by ctypes]
- install integers 0.7.0 [required by ctypes]
- install llvm 21-shared (pinned)
- install ocamlfind 1.9.8 [required by llvm]
- install stdlib-shims 0.3.0 [required by integers]
The following system packages will first need to be installed:
cmake llvm-21-dev zlib1g-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cmake" "llvm-21-dev" "zlib1g-dev"
- Selecting previously unselected package libpipeline1:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20817 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.8-2_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-2) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-8_amd64.deb ...
- Unpacking binfmt-support (2.2.2-8) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../libpython3.13-minimal_3.13.11-1+b1_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.11-1+b1) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.11-1+b1_amd64.deb ...
- Unpacking python3.13-minimal (3.13.11-1+b1) ...
- Setting up libpython3.13-minimal:amd64 (3.13.11-1+b1) ...
- Setting up python3.13-minimal (3.13.11-1+b1) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21166 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.13.7-1+b1_amd64.deb ...
- Unpacking python3-minimal (3.13.7-1+b1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_14.0.0_all.deb ...
- Unpacking media-types (14.0.0) ...
- Preparing to unpack .../liblzma5_5.8.2-1_amd64.deb ...
- Unpacking liblzma5:amd64 (5.8.2-1) over (5.8.1-2) ...
- Setting up liblzma5:amd64 (5.8.2-1) ...
- Selecting previously unselected package readline-common.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21194 files and directories currently installed.)
- Preparing to unpack .../readline-common_8.3-3_all.deb ...
- Unpacking readline-common (8.3-3) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../libreadline8t64_8.3-3_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.3-3) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../libpython3.13-stdlib_3.13.11-1+b1_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.11-1+b1) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../python3.13_3.13.11-1+b1_amd64.deb ...
- Unpacking python3.13 (3.13.11-1+b1) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../libpython3-stdlib_3.13.7-1+b1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.7-1+b1) ...
- Setting up python3-minimal (3.13.7-1+b1) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21655 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.7-1+b1_amd64.deb ...
- Unpacking python3 (3.13.7-1+b1) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../01-cmake-data_4.1.1+really3.31.6-2_all.deb ...
- Unpacking cmake-data (4.1.1+really3.31.6-2) ...
- Selecting previously unselected package libxml2-16:amd64.
- Preparing to unpack .../02-libxml2-16_2.15.1+dfsg-2+b1_amd64.deb ...
- Unpacking libxml2-16:amd64 (2.15.1+dfsg-2+b1) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../03-libarchive13t64_3.7.4-4+b1_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4+b1) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../04-libjsoncpp26_1.9.6-5_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-5) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../05-librhash1_1.4.6-1.1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.6-1.1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../06-libuv1t64_1.51.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.51.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../07-cmake_4.1.1+really3.31.6-2_amd64.deb ...
- Unpacking cmake (4.1.1+really3.31.6-2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../08-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm21:amd64.
- Preparing to unpack .../09-libllvm21_1%3a21.1.8-1_amd64.deb ...
- Unpacking libllvm21:amd64 (1:21.1.8-1) ...
- Selecting previously unselected package libclang-cpp21.
- Preparing to unpack .../10-libclang-cpp21_1%3a21.1.8-1_amd64.deb ...
- Unpacking libclang-cpp21 (1:21.1.8-1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../11-libffi-dev_3.5.2-3_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.5.2-3) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../12-liblzma-dev_5.8.2-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.8.2-1) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../13-libncurses6_6.5+20251123-1_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20251123-1) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../14-libncurses-dev_6.5+20251123-1_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20251123-1) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../15-libpfm4_4.13.0+git106-g3e4031b-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git106-g3e4031b-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../16-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b2_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b2) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../17-libxml2-dev_2.15.1+dfsg-2+b1_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.15.1+dfsg-2+b1) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../18-libyaml-0-2_0.2.5-2+b1_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2+b1) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../19-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package llvm-21-runtime.
- Preparing to unpack .../20-llvm-21-runtime_1%3a21.1.8-1_amd64.deb ...
- Unpacking llvm-21-runtime (1:21.1.8-1) ...
- Selecting previously unselected package llvm-21-linker-tools.
- Preparing to unpack .../21-llvm-21-linker-tools_1%3a21.1.8-1_amd64.deb ...
- Unpacking llvm-21-linker-tools (1:21.1.8-1) ...
- Selecting previously unselected package llvm-21.
- Preparing to unpack .../22-llvm-21_1%3a21.1.8-1_amd64.deb ...
- Unpacking llvm-21 (1:21.1.8-1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../23-python3-pygments_2.18.0+dfsg-2_all.deb ...
- Unpacking python3-pygments (2.18.0+dfsg-2) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../24-python3-yaml_6.0.2-2+b1_amd64.deb ...
- Unpacking python3-yaml (6.0.2-2+b1) ...
- Selecting previously unselected package llvm-21-tools.
- Preparing to unpack .../25-llvm-21-tools_1%3a21.1.8-1_amd64.deb ...
- Unpacking llvm-21-tools (1:21.1.8-1) ...
- Selecting previously unselected package llvm-21-dev.
- Preparing to unpack .../26-llvm-21-dev_1%3a21.1.8-1_amd64.deb ...
- Unpacking llvm-21-dev (1:21.1.8-1) ...
- Setting up media-types (14.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-2) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2+b1) ...
- Setting up libxml2-16:amd64 (2.15.1+dfsg-2+b1) ...
- Setting up libuv1t64:amd64 (1.51.0-2) ...
- Setting up libffi-dev:amd64 (3.5.2-3) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpfm4:amd64 (4.13.0+git106-g3e4031b-1) ...
- Setting up libjsoncpp26:amd64 (1.9.6-5) ...
- Setting up libllvm21:amd64 (1:21.1.8-1) ...
- Setting up libncurses6:amd64 (6.5+20251123-1) ...
- Setting up binfmt-support (2.2.2-8) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up llvm-21-linker-tools (1:21.1.8-1) ...
- Setting up liblzma-dev:amd64 (5.8.2-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b2) ...
- Setting up cmake-data (4.1.1+really3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.6-1.1) ...
- Setting up libarchive13t64:amd64 (3.7.4-4+b1) ...
- Setting up readline-common (8.3-3) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20251123-1) ...
- Setting up libxml2-dev:amd64 (2.15.1+dfsg-2+b1) ...
- Setting up libclang-cpp21 (1:21.1.8-1) ...
- Setting up llvm-21-runtime (1:21.1.8-1) ...
- Setting up libreadline8t64:amd64 (8.3-3) ...
- Setting up cmake (4.1.1+really3.31.6-2) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.11-1+b1) ...
- Setting up libpython3-stdlib:amd64 (3.13.7-1+b1) ...
- Setting up python3.13 (3.13.11-1+b1) ...
- Setting up python3 (3.13.7-1+b1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up llvm-21 (1:21.1.8-1) ...
- Setting up python3-yaml (6.0.2-2+b1) ...
- Setting up llvm-21-tools (1:21.1.8-1) ...
- Setting up llvm-21-dev (1:21.1.8-1) ...
- Processing triggers for libc-bin (2.42-6) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1 (cached)
-> retrieved conf-llvm-shared.21 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-bash.1
-> installed conf-cmake.1
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-llvm-shared.21
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved llvm.21-shared (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed integers.0.7.0
-> installed dune-configurator.3.20.2
-> installed ocamlfind.1.9.8
-> installed ctypes.0.24.0
-> installed llvm.21-shared
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 15:35.58 ---> saved as "e61b0868d8db609b4fbd862e313cd607ecfabb0186bb9ad238705964309acdfb"
Job succeeded
2025-12-30 15:36.24: Job succeeded