(not at the head of any monitored branch or PR)
2025-12-30 15:25.25: New job: build llvm.20-shared, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29110/head (a16fbbbc4ad239dba151649395b1e98d3d337d30)
                              on archlinux-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:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276
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 "\"archlinux\""; 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.25: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276-llvm.20-shared-a16fbbbc4ad239dba151649395b1e98d3d337d30"
2025-12-30 15:25.25: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276)
 (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 \"\\\"archlinux\\\"\"; 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.25: Waiting for resource in pool OCluster
2025-12-30 15:25.25: Waiting for worker…
2025-12-30 15:27.57: Got resource from pool OCluster
Building on laodoke.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:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276' locally
docker.io/ocaml/opam@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276: Pulling from ocaml/opam
20856ddc4ee5: Pulling fs layer
1fc1d7f7a8aa: Pulling fs layer
422c2b21852f: Pulling fs layer
20856ddc4ee5: Waiting
f6a51478d59b: Pulling fs layer
1fc1d7f7a8aa: Waiting
33d08da7381b: Pulling fs layer
422c2b21852f: Waiting
f6a51478d59b: Waiting
7ff2cef6516f: Pulling fs layer
cac5f36cdcf2: Pulling fs layer
33d08da7381b: Waiting
f7367936a4ff: Pulling fs layer
7ff2cef6516f: Waiting
0f775f9b4040: Pulling fs layer
cac5f36cdcf2: Waiting
f7367936a4ff: Waiting
67121c45c12e: Pulling fs layer
ab03a25a5561: Pulling fs layer
0f775f9b4040: Waiting
4919242ee9f5: Pulling fs layer
2bde80d3d23c: Pulling fs layer
67121c45c12e: Waiting
45ed496461fa: Pulling fs layer
ab03a25a5561: Waiting
4919242ee9f5: Waiting
2bde80d3d23c: Waiting
e61d343247b6: Pulling fs layer
45ed496461fa: Waiting
4f4fb700ef54: Pulling fs layer
e61d343247b6: Waiting
5a662aa88b61: Pulling fs layer
0b6b22f514e4: Pulling fs layer
f8febdcadc99: Pulling fs layer
5df9cf626dcd: Pulling fs layer
1449ca64a26d: Pulling fs layer
2e1679b79bab: Pulling fs layer
e34619743411: Pulling fs layer
0b6b22f514e4: Waiting
9a28f75fe375: Pulling fs layer
5df9cf626dcd: Waiting
4f4fb700ef54: Waiting
f8febdcadc99: Waiting
5a662aa88b61: Waiting
3a18e07c27f5: Pulling fs layer
1449ca64a26d: Waiting
e34619743411: Waiting
2e1679b79bab: Waiting
20a61cc0811b: Pulling fs layer
9a28f75fe375: Waiting
676aad68d255: Pulling fs layer
3a18e07c27f5: Waiting
20a61cc0811b: Waiting
3d3debbfafcd: Pulling fs layer
676aad68d255: Waiting
856a6a25081a: Pulling fs layer
4040f3e85115: Pulling fs layer
3d3debbfafcd: Waiting
be9188a811cb: Pulling fs layer
856a6a25081a: Waiting
d6bea3409cc9: Pulling fs layer
4040f3e85115: Waiting
5eb47fdd7908: Pulling fs layer
166968ba5f42: Pulling fs layer
2b2148db1b19: Pulling fs layer
d6bea3409cc9: Waiting
84b8c1a5cbba: Pulling fs layer
be9188a811cb: Waiting
7df013126b59: Pulling fs layer
5eb47fdd7908: Waiting
166968ba5f42: Waiting
6baea1bf0713: Pulling fs layer
84b8c1a5cbba: Waiting
2b2148db1b19: Waiting
6f169dbe7f4b: Pulling fs layer
7df013126b59: Waiting
6f169dbe7f4b: Waiting
1fc1d7f7a8aa: Verifying Checksum
1fc1d7f7a8aa: Download complete
422c2b21852f: Verifying Checksum
422c2b21852f: Download complete
f6a51478d59b: Verifying Checksum
f6a51478d59b: Download complete
33d08da7381b: Verifying Checksum
33d08da7381b: Download complete
7ff2cef6516f: Verifying Checksum
7ff2cef6516f: Download complete
cac5f36cdcf2: Verifying Checksum
cac5f36cdcf2: Download complete
f7367936a4ff: Download complete
0f775f9b4040: Verifying Checksum
0f775f9b4040: Download complete
67121c45c12e: Verifying Checksum
67121c45c12e: Download complete
ab03a25a5561: Verifying Checksum
ab03a25a5561: Download complete
4919242ee9f5: Verifying Checksum
4919242ee9f5: Download complete
2bde80d3d23c: Verifying Checksum
2bde80d3d23c: Download complete
45ed496461fa: Download complete
e61d343247b6: Verifying Checksum
e61d343247b6: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
5a662aa88b61: Verifying Checksum
5a662aa88b61: Download complete
0b6b22f514e4: Verifying Checksum
0b6b22f514e4: Download complete
f8febdcadc99: Download complete
5df9cf626dcd: Verifying Checksum
5df9cf626dcd: Download complete
1449ca64a26d: Download complete
2e1679b79bab: Download complete
e34619743411: Download complete
9a28f75fe375: Download complete
3a18e07c27f5: Verifying Checksum
3a18e07c27f5: Download complete
20a61cc0811b: Verifying Checksum
20a61cc0811b: Download complete
676aad68d255: Verifying Checksum
676aad68d255: Download complete
3d3debbfafcd: Download complete
20856ddc4ee5: Verifying Checksum
20856ddc4ee5: Download complete
4040f3e85115: Download complete
be9188a811cb: Verifying Checksum
be9188a811cb: Download complete
d6bea3409cc9: Verifying Checksum
d6bea3409cc9: Download complete
5eb47fdd7908: Download complete
166968ba5f42: Download complete
2b2148db1b19: Verifying Checksum
2b2148db1b19: Download complete
20856ddc4ee5: Pull complete
1fc1d7f7a8aa: Pull complete
7df013126b59: Verifying Checksum
7df013126b59: Download complete
6baea1bf0713: Verifying Checksum
6baea1bf0713: Download complete
6f169dbe7f4b: Verifying Checksum
6f169dbe7f4b: Download complete
422c2b21852f: Pull complete
f6a51478d59b: Pull complete
33d08da7381b: Pull complete
7ff2cef6516f: Pull complete
cac5f36cdcf2: Pull complete
f7367936a4ff: Pull complete
0f775f9b4040: Pull complete
67121c45c12e: Pull complete
ab03a25a5561: Pull complete
4919242ee9f5: Pull complete
2bde80d3d23c: Pull complete
45ed496461fa: Pull complete
e61d343247b6: Pull complete
4f4fb700ef54: Pull complete
5a662aa88b61: Pull complete
0b6b22f514e4: Pull complete
f8febdcadc99: Pull complete
5df9cf626dcd: Pull complete
1449ca64a26d: Pull complete
2e1679b79bab: Pull complete
e34619743411: Pull complete
9a28f75fe375: Pull complete
3a18e07c27f5: Pull complete
20a61cc0811b: Pull complete
676aad68d255: Pull complete
3d3debbfafcd: Pull complete
856a6a25081a: Verifying Checksum
856a6a25081a: Download complete
84b8c1a5cbba: Download complete
856a6a25081a: Pull complete
4040f3e85115: Pull complete
be9188a811cb: Pull complete
d6bea3409cc9: Pull complete
5eb47fdd7908: Pull complete
166968ba5f42: Pull complete
2b2148db1b19: Pull complete
84b8c1a5cbba: Pull complete
7df013126b59: Pull complete
6baea1bf0713: Pull complete
6f169dbe7f4b: Pull complete
Digest: sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276
Status: Downloaded newer image for ocaml/opam@sha256:f58fb434854943bbee390ec710d41f81fa5bcbd9bf38e18e84edd3030ae8d276
2025-12-30 15:33.05 ---> saved as "07454574bed6dff5fe0b56e446a121e0dffd78864190876461f994ef583dea30"

/: (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:33.05 ---> saved as "392a3a4f4f749c94465bdbe37e6bc31835409c96d2d0ab85da9678a6f4f02298"

/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:33.34 ---> saved as "7b9dcbb4290156dd4012034a81351081d483b118b5957266fdb52215dfab38b4"

/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=arch os-version=20251221.0.472429
# 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:33.34 ---> saved as "41399d74eac1f9d93f029da7f8adc90549e80d8b5f3167096ff4944df6f30fee"

/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:33.48 ---> saved as "cf6be76e46b3fc4feb9b2a724df8b0bf90eb36d323358987f5f28f4c0fc433c7"

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 15:34.04 ---> saved as "bbb186bd671a2796e3a713c2070c9a373a3276f312b975165f7a46adabbe5b5c"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 15:34.29 ---> saved as "c14cc5b56b129c262fca3f9c8f7e42a89fb7134aa29de715975b7ace70b1cb87"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2025-12-30 15:34.38 ---> saved as "6cad9c2af066b3e4ba7b18eaf91c47e662dd27099b6bc18b4edb74214d415b84"

/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:34.39 ---> saved as "d13416bb53a2f92d6f89f46e51381b3e9a8ae8cabe0c0d833a79401239a664dc"

/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 \"\\\"archlinux\\\"\"; 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
  ∗ conf-bash         1                  [required by conf-llvm-shared]
  ∗ conf-cmake        1                  [required by llvm]
  ∗ conf-llvm-shared  20                 [required by llvm]
  ∗ csexp             1.5.2              [required by dune-configurator]
  ∗ ctypes            0.24.0             [required by llvm]
  ∗ dune              3.20.2             [required by ctypes]
  ∗ dune-configurator 3.20.2             [required by ctypes]
  ∗ integers          0.7.0              [required by ctypes]
  ∗ llvm              20-shared (pinned)
  ∗ ocamlfind         1.9.8              [required by llvm]
  ∗ stdlib-shims      0.3.0              [required by integers]

The following system packages will first need to be installed:
    cmake llvm20

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
  2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "cmake" "llvm20"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- 
- Package (11)              Old Version  New Version     Net Change  Download Size
- 
- extra/cppdap                           1.58.0-2          1.55 MiB       0.32 MiB
- extra/hicolor-icon-theme               0.18-1            0.05 MiB       0.01 MiB
- core/iana-etc             20251120-1   20251215-1        0.00 MiB       0.39 MiB
- extra/jsoncpp                          1.9.6-3           0.77 MiB       0.16 MiB
- core/libedit                           20250104_3.1-1    0.26 MiB       0.11 MiB
- core/libnghttp3           1.13.1-1     1.14.0-1          0.00 MiB       0.08 MiB
- extra/libuv                            1.51.0-1          0.62 MiB       0.25 MiB
- extra/llvm20-libs                      20.1.8-1        150.00 MiB      37.77 MiB
- extra/rhash                            1.4.6-1           0.34 MiB       0.18 MiB
- extra/cmake                            4.2.1-1          92.90 MiB      13.77 MiB
- extra/llvm20                           20.1.8-1         72.15 MiB      14.01 MiB
- 
- Total Download Size:    67.06 MiB
- Total Installed Size:  322.90 MiB
- Net Upgrade Size:      318.65 MiB
- 
- :: Proceed with installation? [Y/n] 
- :: Retrieving packages...
-  llvm20-libs-20.1.8-1-x86_64 downloading...
-  llvm20-20.1.8-1-x86_64 downloading...
-  cmake-4.2.1-1-x86_64 downloading...
-  iana-etc-20251215-1-any downloading...
-  cppdap-1.58.0-2-x86_64 downloading...
-  libuv-1.51.0-1-x86_64 downloading...
-  rhash-1.4.6-1-x86_64 downloading...
-  jsoncpp-1.9.6-3-x86_64 downloading...
-  libedit-20250104_3.1-1-x86_64 downloading...
-  libnghttp3-1.14.0-1-x86_64 downloading...
-  hicolor-icon-theme-0.18-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading iana-etc...
- installing cppdap...
- installing hicolor-icon-theme...
- installing jsoncpp...
- Optional dependencies for jsoncpp
-     jsoncpp-doc: documentation
- installing libuv...
- installing rhash...
- upgrading libnghttp3...
- installing cmake...
- Optional dependencies for cmake
-     make: for unix Makefile generator [installed]
-     ninja: for ninja generator
-     qt6-base: cmake-gui
- installing libedit...
- installing llvm20-libs...
- installing llvm20...
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...

<><> 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
[ERROR] The compilation of llvm.20-shared failed at "bash -ex install.sh build --llvm-config llvm-config-20 --libdir /home/opam/.opam/5.4/lib --cmake cmake --make make --link-mode shared".

#=== ERROR while compiling llvm.20-shared =====================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.8/llvm-project-20.1.8.src.tar.xz)
# path                 ~/.opam/5.4/.opam-switch/build/llvm.20-shared
# command              ~/.opam/opam-init/hooks/sandbox.sh build bash -ex install.sh build --llvm-config llvm-config-20 --libdir /home/opam/.opam/5.4/lib --cmake cmake --make make --link-mode shared
# exit-code            1
# env-file             ~/.opam/log/llvm-7-e23264.env
# output-file          ~/.opam/log/llvm-7-e23264.out
### output ###
# + action=build
# + shift
# + llvm_config=
# + libdir=
# + cmake=
# + make=
# + link_mode=
# + use_homebrew=FALSE
# + [[ 10 -gt 0 ]]
# + case $1 in
# + [[ 10 -lt 2 ]]
# + llvm_config=llvm-config-20
# + shift 2
# + [[ 8 -gt 0 ]]
# + case $1 in
# + [[ 8 -lt 2 ]]
# + libdir=/home/opam/.opam/5.4/lib
# + shift 2
# + [[ 6 -gt 0 ]]
# + case $1 in
# + [[ 6 -lt 2 ]]
# + cmake=cmake
# + shift 2
# + [[ 4 -gt 0 ]]
# + case $1 in
# + [[ 4 -lt 2 ]]
# + make=make
# + shift 2
# + [[ 2 -gt 0 ]]
# + case $1 in
# + [[ 2 -lt 2 ]]
# + link_mode=shared
# + shift 2
# + [[ 0 -gt 0 ]]
# + case "$action" in
# + llvm_build
# + mkdir build
# ++ llvm-config-20 --build-mode
# ++ llvm-config-20 --targets-built
# ++ filter_experimental_targets
# ++ sed 's/ /;/g'
# ++ sed s/ARC//g
# ++ sed s/CSKY//g
# ++ sed s/DirectX//g
# ++ sed s/M68k//g
# ++ sed s/SPIRV//g
# ++ sed s/Xtensa//g
# ++ xargs
# ++ llvm-config-20 --libdir
# ++ '[' shared = shared ']'
# ++ echo TRUE
# + cmake -Bbuild -Sllvm -DCMAKE_BUILD_TYPE=Release '-DLLVM_TARGETS_TO_BUILD=AArch64;AMDGPU;ARM;AVR;BPF;Hexagon;Lanai;LoongArch;Mips;MSP430;NVPTX;PowerPC;RISCV;Sparc;SystemZ;VE;WebAssembly;X86;XCore' -DLLVM_OCAML_EXTERNAL_LLVM_LIBDIR=/usr/lib/llvm20/lib -DLLVM_LINK_LLVM_DYLIB=TRUE -DLLVM_OCAML_OUT_OF_TREE=TRUE -DLLVM_OCAML_INSTALL_PATH=/home/opam/.opam/5.4/lib -DLLVM_OCAML_USE_HOMEBREW=FALSE
# CMake Deprecation Warning at /home/opam/.opam/5.4/.opam-switch/build/llvm.20-shared/cmake/Modules/CMakePolicy.cmake:6 (cmake_policy):
#   The OLD behavior for policy CMP0116 will be removed from a future version
#   of CMake.
# 
#   The cmake-policies(7) manual explains that the OLD behaviors of all
#   policies are deprecated and that a policy should be set to OLD only under
#   specific short-term circumstances.  Projects should be ported to the NEW
#   behavior and not rely on setting a policy to OLD.
# Call Stack (most recent call first):
#   CMakeLists.txt:8 (include)
# 
# 
# -- The C compiler identification is GNU 15.2.1
# -- The CXX compiler identification is GNU 15.2.1
# -- The ASM compiler identification is GNU
# -- Found assembler: /usr/sbin/cc
# -- Detecting C compiler ABI info
# -- Detecting C compiler ABI info - done
# -- Check for working C compiler: /usr/sbin/cc - skipped
# -- Detecting C compile features
# -- Detecting C compile features - done
# -- Detecting CXX compiler ABI info
# -- Detecting CXX compiler ABI info - done
# -- Check for working CXX compiler: /usr/sbin/c++ - skipped
# -- Detecting CXX compile features
# -- Detecting CXX compile features - done
# CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:290 (message):
#   Could NOT find Python3 (missing: Python3_EXECUTABLE Interpreter) (Required
#   is at least version "3.8")
# Call Stack (most recent call first):
#   /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:654 (_FPHSA_FAILURE_MESSAGE)
#   /usr/share/cmake/Modules/FindPython/Support.cmake:4190 (find_package_handle_standard_args)
#   /usr/share/cmake/Modules/FindPython3.cmake:671 (include)
#   CMakeLists.txt:975 (find_package)
# 
# 
# -- Configuring incomplete, errors occurred!



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ λ build llvm 20-shared
└─ 
┌─ The following changes have been performed
│ ∗ install conf-bash         1
│ ∗ install conf-cmake        1
│ ∗ install conf-llvm-shared  20
│ ∗ install csexp             1.5.2
│ ∗ install ctypes            0.24.0
│ ∗ install dune              3.20.2
│ ∗ install dune-configurator 3.20.2
│ ∗ install integers          0.7.0
│ ∗ install ocamlfind         1.9.8
│ ∗ install stdlib-shims      0.3.0
└─ 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20251230153440.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "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 "\"archlinux\""; 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" failed with exit status 1
2025-12-30 15:36.51: Job failed: Failed: Build failed
2025-12-30 15:36.51: Log analysis:
2025-12-30 15:36.51: >>> 
[ERROR] The compilation of llvm.20-shared failed at "bash -ex install.sh build --llvm-config llvm-config-20 --libdir /home/opam/.opam/5.4/lib --cmake cmake --make make --link-mode shared".
 (score = 20)
2025-12-30 15:36.51: The compilation of llvm.20-shared failed at "bash -ex install.sh build --llvm-config llvm-config-20 --libdir /home/opam/.opam/5.4/lib --cmake cmake --make make --link-mode shared".