- github
- ocaml
- opam-repository
- a16fbb
- distributions,ubuntu-25.10-ocaml-5.4,llvm.20-shared
(not at the head of any monitored branch or PR)
2025-12-30 15:25.32: New job: build llvm.20-shared, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29110/head (a16fbbbc4ad239dba151649395b1e98d3d337d30)
on ubuntu-25.10-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:ubuntu-25.10-ocaml-5.4@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1
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.20-shared 20-shared
RUN opam reinstall llvm.20-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 "\"ubuntu-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'llvm.20-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.32: Using cache hint "ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1-llvm.20-shared-a16fbbbc4ad239dba151649395b1e98d3d337d30"
2025-12-30 15:25.32: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1)
(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.20-shared 20-shared"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.20-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 \"\\\"ubuntu-25.10\\\"\"; 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.20-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.32: Waiting for resource in pool OCluster
2025-12-30 15:28.47: Waiting for worker…
2025-12-30 15:32.34: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
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:ubuntu-25.10-ocaml-5.4@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1)
Unable to find image 'ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1' locally
docker.io/ocaml/opam@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1: Pulling from ocaml/opam
a206cee1e839: Already exists
ae19069454dc: Pulling fs layer
88f55d9e8042: Pulling fs layer
0df1981bf775: Pulling fs layer
ae19069454dc: Waiting
44f50183fc9b: Pulling fs layer
88f55d9e8042: Waiting
0df1981bf775: Waiting
feab20c99461: Pulling fs layer
44f50183fc9b: Waiting
a96e4806c450: Pulling fs layer
feab20c99461: Waiting
a96e4806c450: Waiting
321e11aee0b1: Pulling fs layer
46edcdd420d6: Pulling fs layer
321e11aee0b1: Waiting
80e95dc6ce63: Pulling fs layer
46edcdd420d6: Waiting
0e26995bda51: Pulling fs layer
54103d9f334b: Pulling fs layer
a0bc24d8a121: Pulling fs layer
80e95dc6ce63: Waiting
d4af4cabcd15: Pulling fs layer
0e26995bda51: Waiting
54103d9f334b: Waiting
a0bc24d8a121: Waiting
bc6fea740d95: Pulling fs layer
d4af4cabcd15: Waiting
e0a43650434e: Pulling fs layer
bc6fea740d95: Waiting
9a0e384de0e6: Pulling fs layer
e0a43650434e: Waiting
df12c37e484a: Pulling fs layer
9a0e384de0e6: Waiting
c1827fa629bf: Pulling fs layer
df12c37e484a: Waiting
6d77b1cb0b93: Pulling fs layer
c1827fa629bf: Waiting
702f403fd691: Pulling fs layer
6d77b1cb0b93: Waiting
4f4fb700ef54: Pulling fs layer
fb793654aa49: Pulling fs layer
4f4fb700ef54: Waiting
9b2ab6e582f4: Pulling fs layer
fb793654aa49: Waiting
5281573baee7: Pulling fs layer
fe8da0bd13e1: Pulling fs layer
9b2ab6e582f4: Waiting
17da0d9119d3: Pulling fs layer
5281573baee7: Waiting
09b5def219af: Pulling fs layer
fe8da0bd13e1: Waiting
17da0d9119d3: Waiting
09b5def219af: Waiting
8af345427948: Pulling fs layer
e70f51ae47c8: Pulling fs layer
3dcb78ac65ef: Pulling fs layer
e70f51ae47c8: Waiting
502c0d974453: Pulling fs layer
3dcb78ac65ef: Waiting
ffb7aa02dfd1: Pulling fs layer
b0c2a2d3dca6: Pulling fs layer
f07c94b081a5: Pulling fs layer
b0c2a2d3dca6: Waiting
d357c931e45e: Pulling fs layer
7ab22c61cf9a: Pulling fs layer
d357c931e45e: Waiting
1e1a713233bc: Pulling fs layer
c07afc3b5418: Pulling fs layer
7ab22c61cf9a: Waiting
1e1a713233bc: Waiting
5df89c66f90e: Pulling fs layer
c07afc3b5418: Waiting
5df89c66f90e: Waiting
9750a193dc03: Pulling fs layer
6c4f3b4b0724: Pulling fs layer
9750a193dc03: Waiting
3ed5c1c36474: Pulling fs layer
6a83e839e0cd: Pulling fs layer
3ed5c1c36474: Waiting
6c4f3b4b0724: Waiting
5e71fb2a8b8f: Pulling fs layer
6a83e839e0cd: Waiting
645b1eb0c0d4: Pulling fs layer
5e71fb2a8b8f: Waiting
06716d8ab467: Pulling fs layer
645b1eb0c0d4: Waiting
06716d8ab467: Waiting
ae19069454dc: Verifying Checksum
ae19069454dc: Download complete
ae19069454dc: Pull complete
88f55d9e8042: Verifying Checksum
88f55d9e8042: Download complete
88f55d9e8042: Pull complete
0df1981bf775: Verifying Checksum
0df1981bf775: Download complete
44f50183fc9b: Verifying Checksum
44f50183fc9b: Download complete
a96e4806c450: Download complete
0df1981bf775: Pull complete
44f50183fc9b: Pull complete
321e11aee0b1: Verifying Checksum
321e11aee0b1: Download complete
46edcdd420d6: Verifying Checksum
46edcdd420d6: Download complete
80e95dc6ce63: Verifying Checksum
80e95dc6ce63: Download complete
0e26995bda51: Verifying Checksum
0e26995bda51: Download complete
feab20c99461: Verifying Checksum
feab20c99461: Download complete
54103d9f334b: Download complete
a0bc24d8a121: Verifying Checksum
a0bc24d8a121: Download complete
d4af4cabcd15: Verifying Checksum
d4af4cabcd15: Download complete
bc6fea740d95: Verifying Checksum
bc6fea740d95: Download complete
9a0e384de0e6: Download complete
e0a43650434e: Verifying Checksum
e0a43650434e: Download complete
c1827fa629bf: Verifying Checksum
c1827fa629bf: Download complete
df12c37e484a: Verifying Checksum
df12c37e484a: Download complete
6d77b1cb0b93: Verifying Checksum
6d77b1cb0b93: Download complete
702f403fd691: Verifying Checksum
702f403fd691: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
fb793654aa49: Verifying Checksum
fb793654aa49: Download complete
9b2ab6e582f4: Verifying Checksum
9b2ab6e582f4: Download complete
5281573baee7: Download complete
17da0d9119d3: Verifying Checksum
17da0d9119d3: Download complete
09b5def219af: Verifying Checksum
09b5def219af: Download complete
8af345427948: Download complete
e70f51ae47c8: Verifying Checksum
e70f51ae47c8: Download complete
3dcb78ac65ef: Download complete
502c0d974453: Download complete
ffb7aa02dfd1: Verifying Checksum
ffb7aa02dfd1: Download complete
b0c2a2d3dca6: Verifying Checksum
b0c2a2d3dca6: Download complete
d357c931e45e: Verifying Checksum
d357c931e45e: Download complete
1e1a713233bc: Verifying Checksum
1e1a713233bc: Download complete
c07afc3b5418: Download complete
5df89c66f90e: Download complete
9750a193dc03: Verifying Checksum
9750a193dc03: Download complete
6c4f3b4b0724: Verifying Checksum
6c4f3b4b0724: Download complete
3ed5c1c36474: Verifying Checksum
3ed5c1c36474: Download complete
feab20c99461: Pull complete
a96e4806c450: Pull complete
321e11aee0b1: Pull complete
6a83e839e0cd: Download complete
46edcdd420d6: Pull complete
5e71fb2a8b8f: Verifying Checksum
5e71fb2a8b8f: Download complete
80e95dc6ce63: Pull complete
645b1eb0c0d4: Verifying Checksum
645b1eb0c0d4: Download complete
06716d8ab467: Download complete
0e26995bda51: Pull complete
54103d9f334b: Pull complete
a0bc24d8a121: Pull complete
d4af4cabcd15: Pull complete
bc6fea740d95: Pull complete
e0a43650434e: Pull complete
9a0e384de0e6: Pull complete
df12c37e484a: Pull complete
c1827fa629bf: Pull complete
6d77b1cb0b93: Pull complete
702f403fd691: Pull complete
4f4fb700ef54: Pull complete
fb793654aa49: Pull complete
9b2ab6e582f4: Pull complete
5281573baee7: Pull complete
fe8da0bd13e1: Pull complete
17da0d9119d3: Pull complete
09b5def219af: Pull complete
8af345427948: Pull complete
e70f51ae47c8: Pull complete
3dcb78ac65ef: Pull complete
502c0d974453: Pull complete
ffb7aa02dfd1: Pull complete
b0c2a2d3dca6: Pull complete
f07c94b081a5: Verifying Checksum
f07c94b081a5: Download complete
7ab22c61cf9a: Verifying Checksum
7ab22c61cf9a: Download complete
f07c94b081a5: Pull complete
d357c931e45e: Pull complete
7ab22c61cf9a: Pull complete
1e1a713233bc: Pull complete
c07afc3b5418: Pull complete
5df89c66f90e: Pull complete
9750a193dc03: Pull complete
6c4f3b4b0724: Pull complete
3ed5c1c36474: Pull complete
6a83e839e0cd: Pull complete
5e71fb2a8b8f: Pull complete
645b1eb0c0d4: Pull complete
06716d8ab467: Pull complete
Digest: sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1
Status: Downloaded newer image for ocaml/opam@sha256:d7adc6118cb080c50c16bd457ffcd4fc76506798b1ee866308d6977edda602e1
2025-12-30 15:36.58 ---> using "d8cb524e675f39b6290469af8154f7700e90c26b4b62de815144e535b6a7c5e0" 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-30 15:36.58 ---> using "3ca2d8d33f84f189308d1205b48a3ae34057cb43598aa1b4793d2bc2459b36d1" 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
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 15:36.58 ---> using "3287198f05becba586520ebcd479604cfacfb065da386d33144b964b92c36ce0" 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=ubuntu os-version=25.10
# 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-30 15:36.58 ---> using "650baa7c5a61c5118bdc3d88084e6e8fdc78124098a33ab6f6b88507057b4bb2" 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-30 15:36.58 ---> using "4f2ed335b530b94d174f9e8d255b1ed4d10f7d9c1671b964d22790be45eb4f9e" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 15:36.59 ---> using "21970626be6039f8b9fe92f29b5103588fb6a830c8620e26a2537e16a1028d27" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 15:36.59 ---> using "cc5d2c49c75f6294dbc0af2c9ad8a61a0361ed32474b266b34c344323fa94c53" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:3 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:4 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Fetched 404 kB in 1s (486 kB/s)
- Reading package lists...
-
2025-12-30 15:36.59 ---> using "6160622a759c13ef62d9dcc2f65b14840a0d1495f4f7bc7fa23c8613667e660c" from cache
/home/opam: (run (shell "opam pin add -k version -yn llvm.20-shared 20-shared"))
llvm is now pinned to version 20-shared
2025-12-30 15:37.00 ---> saved as "b642d213b3335bda25eaab2018685e7ac2e8f0ceab01192b387e86e2a35a2819"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.20-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 \"\\\"ubuntu-25.10\\\"\"; 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.20-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.20-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 20 [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 20-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-20-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-20-dev" "zlib1g-dev"
- Preconfiguring packages ...
- Selecting previously unselected package libpython3.13-minimal: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 ... 18746 files and directories currently installed.)
- Preparing to unpack .../libpython3.13-minimal_3.13.7-1ubuntu0.1_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.7-1ubuntu0.1) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.7-1ubuntu0.1_amd64.deb ...
- Unpacking python3.13-minimal (3.13.7-1ubuntu0.1) ...
- Setting up libpython3.13-minimal:amd64 (3.13.7-1ubuntu0.1) ...
- Setting up python3.13-minimal (3.13.7-1ubuntu0.1) ...
- 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 ... 19071 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.7-1_amd64.deb ...
- Unpacking python3-minimal (3.13.7-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package tzdata.
- Preparing to unpack .../2-tzdata_2025b-3ubuntu1_all.deb ...
- Unpacking tzdata (2025b-3ubuntu1) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../3-libpython3.13-stdlib_3.13.7-1ubuntu0.1_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.7-1ubuntu0.1) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../4-python3.13_3.13.7-1ubuntu0.1_amd64.deb ...
- Unpacking python3.13 (3.13.7-1ubuntu0.1) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../5-libpython3-stdlib_3.13.7-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.7-1) ...
- Setting up python3-minimal (3.13.7-1) ...
- 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 ... 20041 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.7-1_amd64.deb ...
- Unpacking python3 (3.13.7-1) ...
- Selecting previously unselected package libpipeline1:amd64.
- Preparing to unpack .../01-libpipeline1_1.5.8-1build1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1build1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../02-binfmt-support_2.2.2-7_amd64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libxml2-16:amd64.
- Preparing to unpack .../03-libxml2-16_2.14.5+dfsg-0.2_amd64.deb ...
- Unpacking libxml2-16:amd64 (2.14.5+dfsg-0.2) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../04-libyaml-0-2_0.2.5-2build2_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2build2) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../05-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 .../06-python3-yaml_6.0.2-1build2_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1build2) ...
- Selecting previously unselected package libgpm2:amd64.
- Preparing to unpack .../07-libgpm2_1.20.7-12_amd64.deb ...
- Unpacking libgpm2:amd64 (1.20.7-12) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../08-libncurses6_6.5+20250216-2build1_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2build1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../09-libuv1t64_1.50.0-2ubuntu1_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2ubuntu1) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../10-cmake-data_3.31.6-2ubuntu6_all.deb ...
- Unpacking cmake-data (3.31.6-2ubuntu6) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../11-libarchive13t64_3.7.7-0ubuntu3_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.7-0ubuntu3) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../12-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../13-librhash1_1.4.6-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.6-1) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../14-cmake_3.31.6-2ubuntu6_amd64.deb ...
- Unpacking cmake (3.31.6-2ubuntu6) ...
- Selecting previously unselected package libllvm20:amd64.
- Preparing to unpack .../15-libllvm20_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking libllvm20:amd64 (1:20.1.8-0ubuntu4) ...
- Selecting previously unselected package libclang-cpp20.
- Preparing to unpack .../16-libclang-cpp20_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking libclang-cpp20 (1:20.1.8-0ubuntu4) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../17-libncurses-dev_6.5+20250216-2build1_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250216-2build1) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../18-liblzma-dev_5.8.1-1build2_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.8.1-1build2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../19-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu2_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1ubuntu2) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../20-libxml2-dev_2.14.5+dfsg-0.2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.14.5+dfsg-0.2) ...
- Selecting previously unselected package llvm-20-runtime.
- Preparing to unpack .../21-llvm-20-runtime_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking llvm-20-runtime (1:20.1.8-0ubuntu4) ...
- Selecting previously unselected package llvm-20-linker-tools.
- Preparing to unpack .../22-llvm-20-linker-tools_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking llvm-20-linker-tools (1:20.1.8-0ubuntu4) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../23-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Selecting previously unselected package llvm-20.
- Preparing to unpack .../24-llvm-20_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking llvm-20 (1:20.1.8-0ubuntu4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../25-libffi-dev_3.5.2-1build1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.5.2-1build1) ...
- Selecting previously unselected package llvm-20-tools.
- Preparing to unpack .../26-llvm-20-tools_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking llvm-20-tools (1:20.1.8-0ubuntu4) ...
- Selecting previously unselected package llvm-20-dev.
- Preparing to unpack .../27-llvm-20-dev_1%3a20.1.8-0ubuntu4_amd64.deb ...
- Unpacking llvm-20-dev (1:20.1.8-0ubuntu4) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1build1) ...
- Setting up libgpm2:amd64 (1.20.7-12) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2build2) ...
- Setting up libxml2-16:amd64 (2.14.5+dfsg-0.2) ...
- Setting up libuv1t64:amd64 (1.50.0-2ubuntu1) ...
- Setting up libffi-dev:amd64 (3.5.2-1build1) ...
- Setting up tzdata (2025b-3ubuntu1) ...
-
- Current default time zone: 'Europe/London'
- Local time is now: Tue Dec 30 15:37:23 GMT 2025.
- Universal Time is now: Tue Dec 30 15:37:23 UTC 2025.
- Run 'dpkg-reconfigure tzdata' if you wish to change it.
-
- Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up libncurses6:amd64 (6.5+20250216-2build1) ...
- Setting up binfmt-support (2.2.2-7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libllvm20:amd64 (1:20.1.8-0ubuntu4) ...
- Setting up liblzma-dev:amd64 (5.8.1-1build2) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1ubuntu2) ...
- Setting up cmake-data (3.31.6-2ubuntu6) ...
- Setting up librhash1:amd64 (1.4.6-1) ...
- Setting up libarchive13t64:amd64 (3.7.7-0ubuntu3) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.7-1ubuntu0.1) ...
- Setting up libpython3-stdlib:amd64 (3.13.7-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250216-2build1) ...
- Setting up python3.13 (3.13.7-1ubuntu0.1) ...
- Setting up llvm-20-runtime (1:20.1.8-0ubuntu4) ...
- Setting up python3 (3.13.7-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up llvm-20-linker-tools (1:20.1.8-0ubuntu4) ...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up libxml2-dev:amd64 (2.14.5+dfsg-0.2) ...
- Setting up libclang-cpp20 (1:20.1.8-0ubuntu4) ...
- Setting up llvm-20 (1:20.1.8-0ubuntu4) ...
- Setting up cmake (3.31.6-2ubuntu6) ...
- Setting up python3-yaml (6.0.2-1build2) ...
- Setting up llvm-20-tools (1:20.1.8-0ubuntu4) ...
- Setting up llvm-20-dev (1:20.1.8-0ubuntu4) ...
- Processing triggers for libc-bin (2.42-0ubuntu3) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1 (cached)
-> retrieved conf-llvm-shared.20 (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.20
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved llvm.20-shared (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed dune-configurator.3.20.2
-> installed ocamlfind.1.9.8
-> installed ctypes.0.24.0
-> installed llvm.20-shared
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 15:39.22 ---> saved as "962f7407bbf3ddf0f646126c260efa5c2fa54c1e8d8de3b54ef4e954b5b9407e"
Job succeeded
2025-12-30 15:39.31: Job succeeded