- github
- ocaml
- opam-repository
- 425e7a
- distributions,debian-testing-ocaml-5.3,llvm.18-static
(not at the head of any monitored branch or PR)
2025-02-10 19:07.10: New job: build llvm.18-static, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27178/head (425e7ad3a0b3cad8b1456afbaac6823102a9c57f)
on debian-testing-ocaml-5.3/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/27178/head" && git reset --hard 425e7ad3
git fetch origin master
git merge --no-edit e41dcf1317027b68f2446cba5fefed79d9087146
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-5.3@sha256:d42170c632e8df17bb642efa76b16ee55a6e5bb765fb800bf3cac455fe35ad08
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.18-static 18-static
RUN opam reinstall llvm.18-static; \
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.18-static' && 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-02-10 19:07.10: Using cache hint "ocaml/opam:debian-testing-ocaml-5.3@sha256:d42170c632e8df17bb642efa76b16ee55a6e5bb765fb800bf3cac455fe35ad08-llvm.18-static-425e7ad3a0b3cad8b1456afbaac6823102a9c57f"
2025-02-10 19:07.10: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-5.3@sha256:d42170c632e8df17bb642efa76b16ee55a6e5bb765fb800bf3cac455fe35ad08)
(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.18-static 18-static"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.18-static;\
\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.18-static' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-02-10 19:07.10: Waiting for resource in pool OCluster
2025-02-11 16:36.50: Waiting for worker…
2025-02-11 16:40.09: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 92% (21525/23308)
Updating files: 93% (21677/23308)
Updating files: 94% (21910/23308)
Updating files: 95% (22143/23308)
Updating files: 96% (22376/23308)
Updating files: 97% (22609/23308)
Updating files: 98% (22842/23308)
Updating files: 99% (23075/23308)
Updating files: 100% (23308/23308)
Updating files: 100% (23308/23308), done.
HEAD is now at e41dcf1317 Merge pull request #27400 from hannesm/release-tcpip-v9.0.0
Merge made by the 'ort' strategy.
packages/conf-llvm-shared/conf-llvm-shared.18/opam | 34 ++++++++++++++
packages/conf-llvm-static/conf-llvm-static.18/opam | 34 ++++++++++++++
packages/llvm/llvm.18-shared/opam | 52 +++++++++++++++++++++
packages/llvm/llvm.18-static/opam | 54 ++++++++++++++++++++++
4 files changed, 174 insertions(+)
create mode 100644 packages/conf-llvm-shared/conf-llvm-shared.18/opam
create mode 100644 packages/conf-llvm-static/conf-llvm-static.18/opam
create mode 100644 packages/llvm/llvm.18-shared/opam
create mode 100644 packages/llvm/llvm.18-static/opam
(from ocaml/opam:debian-testing-ocaml-5.3@sha256:d42170c632e8df17bb642efa76b16ee55a6e5bb765fb800bf3cac455fe35ad08)
2025-02-11 16:41.08 ---> saved as "053e1acbbceafefe1b99b0c9a0eaacc66a186aa04539df06d5cb3291bdad10c8"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-11 16:41.08 ---> saved as "1c93ea5a9170b086c7e0afbafb61fc1212316aeb09d26fe763ac033d0f716946"
/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
[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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-11 16:42.16 ---> saved as "0b0a2960d5594455415cdf26017a59bf5f011ba65dc19e78637e06b222f11318"
/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.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# 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 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.3
# invariant ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-02-11 16:42.18 ---> saved as "3e4162df833bd80f3e081234cde2dcd6cceda48bf01fccbe8502d070113d8269"
/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-02-11 16:42.27 ---> saved as "f0f7aa961eb8fb5857360ab049f556d4cc47baa6fd04daf1f292a62f708c6548"
/home/opam: (copy (src .) (dst opam-repository/))
2025-02-11 16:42.43 ---> saved as "bcbb6c6f7b8a153536acba987ed9a3d2d287b31213771c43b6ec11aa457c511f"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-11 16:43.28 ---> saved as "5b11bceda29ff294fe1bfb4780bafe115aafc6fc3e94e2bb7c0c852300c8e4bb"
/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 [175 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [49.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [27.9 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-09-1438.19.pdiff [2418 B]
- Get:6 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-09-2016.33.pdiff [3510 B]
- Get:7 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-10-0213.27.pdiff [65.0 kB]
- Get:8 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-10-0811.26.pdiff [323 B]
- Get:9 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-10-1412.30.pdiff [13.2 kB]
- Get:10 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-10-2031.41.pdiff [7494 B]
- Get:11 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-11-0214.31.pdiff [94.2 kB]
- Get:12 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-11-0805.26.pdiff [1387 B]
- Get:13 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-11-1411.44.pdiff [13.6 kB]
- Get:13 http://deb.debian.org/debian testing/main amd64 Packages 2025-02-11-1411.44.pdiff [13.6 kB]
- Fetched 502 kB in 1s (445 kB/s)
- Reading package lists...
2025-02-11 16:43.30 ---> saved as "430854abd2fa18d58d443ac0602a54b7787c4575cc8b6df4507713fcc9cd9181"
/home/opam: (run (shell "opam pin add -k version -yn llvm.18-static 18-static"))
llvm is now pinned to version 18-static
2025-02-11 16:43.32 ---> saved as "a1a9e10780723b68f2317f2cf8b6091f979a2adf7dbcbb4ebefdb5b00a803119"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.18-static;\
\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.18-static' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
llvm.18-static is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
- install bigarray-compat 1.1.0 [required by ctypes]
- install conf-bash 1 [required by conf-llvm-static]
- install conf-cmake 1 [required by llvm]
- install conf-llvm-static 18 [required by llvm]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.23.0 [required by llvm]
- install dune 3.17.2 [required by ctypes]
- install dune-configurator 3.17.2 [required by ctypes]
- install integers 0.7.0 [required by ctypes]
- install llvm 18-static (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-18-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-18-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 ... 19829 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-7_amd64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../libpython3.13-minimal_3.13.2-1_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.2-1) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.2-1_amd64.deb ...
- Unpacking python3.13-minimal (3.13.2-1) ...
- Setting up libpython3.13-minimal:amd64 (3.13.2-1) ...
- Setting up python3.13-minimal (3.13.2-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 ... 20176 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.13.1-2_amd64.deb ...
- Unpacking python3-minimal (3.13.1-2) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_10.1.0_all.deb ...
- Unpacking media-types (10.1.0) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../libpython3.13-stdlib_3.13.2-1_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.2-1) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../python3.13_3.13.2-1_amd64.deb ...
- Unpacking python3.13 (3.13.2-1) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../libpython3-stdlib_3.13.1-2_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.1-2) ...
- Setting up python3-minimal (3.13.1-2) ...
- 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 ... 20626 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.1-2_amd64.deb ...
- Unpacking python3 (3.13.1-2) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../01-cmake-data_3.31.5-1_all.deb ...
- Unpacking cmake-data (3.31.5-1) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../02-libicu72_72.1-6_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-6) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../03-libxml2_2.12.7+dfsg+really2.9.14-0.2+b1_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-0.2+b1) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../04-libarchive13t64_3.7.4-1.1_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-1.1) ...
- Selecting previously unselected package libcurl4t64:amd64.
- Preparing to unpack .../05-libcurl4t64_8.11.1-1+b1_amd64.deb ...
- Unpacking libcurl4t64:amd64 (8.11.1-1+b1) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../06-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../07-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../08-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../09-cmake_3.31.5-1_amd64.deb ...
- Unpacking cmake (3.31.5-1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../10-icu-devtools_72.1-6_amd64.deb ...
- Unpacking icu-devtools (72.1-6) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../11-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm18:amd64.
- Preparing to unpack .../12-libllvm18_1%3a18.1.8-16_amd64.deb ...
- Unpacking libllvm18:amd64 (1:18.1.8-16) ...
- Selecting previously unselected package libclang-cpp18.
- Preparing to unpack .../13-libclang-cpp18_1%3a18.1.8-16_amd64.deb ...
- Unpacking libclang-cpp18 (1:18.1.8-16) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../14-libffi-dev_3.4.6-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.6-1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../15-libicu-dev_72.1-6_amd64.deb ...
- Unpacking libicu-dev:amd64 (72.1-6) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../16-libncurses6_6.5+20250125-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250125-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../17-libncurses-dev_6.5+20250125-2_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250125-2) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../18-libpfm4_4.13.0+git83-g91970fe-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git83-g91970fe-1) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../19-libxml2-dev_2.12.7+dfsg+really2.9.14-0.2+b1_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-0.2+b1) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../20-libyaml-0-2_0.2.5-2_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../21-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package llvm-18-runtime.
- Preparing to unpack .../22-llvm-18-runtime_1%3a18.1.8-16_amd64.deb ...
- Unpacking llvm-18-runtime (1:18.1.8-16) ...
- Selecting previously unselected package llvm-18-linker-tools.
- Preparing to unpack .../23-llvm-18-linker-tools_1%3a18.1.8-16_amd64.deb ...
- Unpacking llvm-18-linker-tools (1:18.1.8-16) ...
- Selecting previously unselected package llvm-18.
- Preparing to unpack .../24-llvm-18_1%3a18.1.8-16_amd64.deb ...
- Unpacking llvm-18 (1:18.1.8-16) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../25-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 .../26-python3-yaml_6.0.2-1+b1_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1+b1) ...
- Selecting previously unselected package llvm-18-tools.
- Preparing to unpack .../27-llvm-18-tools_1%3a18.1.8-16_amd64.deb ...
- Unpacking llvm-18-tools (1:18.1.8-16) ...
- Selecting previously unselected package llvm-18-dev.
- Preparing to unpack .../28-llvm-18-dev_1%3a18.1.8-16_amd64.deb ...
- Unpacking llvm-18-dev (1:18.1.8-16) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../29-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up media-types (10.1.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libicu72:amd64 (72.1-6) ...
- Setting up libcurl4t64:amd64 (8.11.1-1+b1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libffi-dev:amd64 (3.4.6-1) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpfm4:amd64 (4.13.0+git83-g91970fe-1) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up libncurses6:amd64 (6.5+20250125-2) ...
- 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 icu-devtools (72.1-6) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up cmake-data (3.31.5-1) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.2-1) ...
- Setting up libicu-dev:amd64 (72.1-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-0.2+b1) ...
- Setting up libpython3-stdlib:amd64 (3.13.1-2) ...
- Setting up libllvm18:amd64 (1:18.1.8-16) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250125-2) ...
- Setting up python3.13 (3.13.2-1) ...
- Setting up python3 (3.13.1-2) ...
- 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 libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-0.2+b1) ...
- Setting up llvm-18-linker-tools (1:18.1.8-16) ...
- Setting up llvm-18-runtime (1:18.1.8-16) ...
- Setting up libclang-cpp18 (1:18.1.8-16) ...
- Setting up libarchive13t64:amd64 (3.7.4-1.1) ...
- Setting up python3-yaml (6.0.2-1+b1) ...
- Setting up llvm-18-tools (1:18.1.8-16) ...
- Setting up llvm-18 (1:18.1.8-16) ...
- Setting up cmake (3.31.5-1) ...
- Setting up llvm-18-dev (1:18.1.8-16) ...
- Processing triggers for libc-bin (2.40-6) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved conf-cmake.1 (cached)
-> retrieved conf-llvm-static.18 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0 (cached)
-> installed conf-bash.1
-> installed conf-cmake.1
-> installed conf-llvm-static.18
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved llvm.18-static (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.17.2
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed dune-configurator.3.17.2
-> installed ocamlfind.1.9.8
-> installed ctypes.0.23.0
-> installed llvm.18-static
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 16:48.06 ---> saved as "87e47a9bcfd9ba72f5be1f68889a1799b18098ad6639e437b68cc9d158e113ed"
Job succeeded
2025-02-11 16:48.12: Job succeeded