Build:
  1. 0
2026-02-04 08:37.00: New job: test conf-libclang.19, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29309/head (822029b4609246fd349f3422368e0e5db3403188)
                              on fedora-42-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/29309/head" && git reset --hard 822029b4
git fetch origin master
git merge --no-edit 45c04602c2fc908af6d1b17ba39c7517d58cb274
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:7f65b2d6d574cdfa29c4df178f9f7f16e19cafc8d713f9cbee8d53add4b6cd22
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn conf-libclang.19 19
RUN opam reinstall conf-libclang.19; \
    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 "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'conf-libclang.19' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test conf-libclang.19) || true
RUN opam reinstall --with-test --verbose conf-libclang.19; \
    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 "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'conf-libclang.19' && 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 .

2026-02-04 08:37.00: Using cache hint "ocaml/opam:fedora-42-ocaml-5.4@sha256:7f65b2d6d574cdfa29c4df178f9f7f16e19cafc8d713f9cbee8d53add4b6cd22-conf-libclang.19-822029b4609246fd349f3422368e0e5db3403188"
2026-02-04 08:37.00: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:7f65b2d6d574cdfa29c4df178f9f7f16e19cafc8d713f9cbee8d53add4b6cd22)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn conf-libclang.19 19"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-libclang.19;\
             \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 \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'conf-libclang.19' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test conf-libclang.19) || true"))
 (run (shell  "opam reinstall --with-test --verbose conf-libclang.19;\
             \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 \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'conf-libclang.19' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-04 08:37.00: Waiting for resource in pool OCluster
2026-02-04 09:27.56: Waiting for worker…
2026-02-04 09:32.07: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 45c04602c2 Merge pull request #29332 from fpottier/master
Merge made by the 'ort' strategy.
 packages/conf-libclang/conf-libclang.19/opam | 14 ++++----
 packages/frama-clang/frama-clang.0.0.19/opam | 52 ++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+), 7 deletions(-)
 create mode 100644 packages/frama-clang/frama-clang.0.0.19/opam

(from ocaml/opam:fedora-42-ocaml-5.4@sha256:7f65b2d6d574cdfa29c4df178f9f7f16e19cafc8d713f9cbee8d53add4b6cd22)
2026-02-04 09:32.56 ---> saved as "0534897c78656ca203a2870dfdf69ebbddfcb4edddf041006995fee6b2963a70"

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-04 09:32.56 ---> saved as "f2793958ca032763c9093f0b1ca035d41cd5594ca5d4f44cce517afb3d20d237"

/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
2026-02-04 09:33.21 ---> saved as "a9feb540d418a62e08b893c5659b6879a5f285514a121d34c7fedccdf77ab080"

/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=fedora os-version=42
# 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
2026-02-04 09:33.21 ---> saved as "130ade7cc16d63b2cfe270d6201573cc3a1f97c4d6530f31f3d7997b0c2ed44e"

/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/"))
2026-02-04 09:33.37 ---> saved as "1a9e27e239a76ececa7e73a1ffe34a966404b237182db535b8fe7578bcc5cfed"

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-04 09:33.45 ---> saved as "c209d94b14a81c00d63cea153cbdba8ab2edef16fb3a40f357d95033b686ca52"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-04 09:34.06 ---> saved as "a79f2d1f3b726714fcf4b33d9d5f15453e9dac3bb4711dfdebbaee9c1bdd9988"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 42 - x86_64 - Updates           100% |  96.9 KiB/s |  19.9 KiB |  00m00s
- Repositories loaded.
- Metadata cache created.
2026-02-04 09:34.32 ---> saved as "f6c6a892069dc315cdc7fba5aae0853c74d2a8320a615d6c215d7e989eea9b74"

/home/opam: (run (shell "opam pin add -k version -yn conf-libclang.19 19"))
conf-libclang is now pinned to version 19
2026-02-04 09:34.32 ---> saved as "dfb4e0208eafa9c70f9d645fe06b74bca165a48e8734f0a7803885efc7d5efaa"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-libclang.19;\
                        \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 \"\\\"fedora-42\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'conf-libclang.19' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conf-libclang.19 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install conf-bash     1           [required by conf-libclang]
  - install conf-libclang 19 (pinned)

The following system packages will first need to be installed:
    clang-devel llvm-devel redhat-rpm-config zlib-devel

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

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "clang-devel" "llvm-devel" "redhat-rpm-config" "zlib-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package                            Arch   Version                 Repository      Size
- Installing:
-  clang-devel                       x86_64 20.1.8-4.fc42           updates     28.4 MiB
-  redhat-rpm-config                 noarch 342-4.fc42              updates    185.5 KiB
-  zlib-ng-compat-devel              x86_64 2.2.5-2.fc42            updates    107.0 KiB
- Installing dependencies:
-  add-determinism                   x86_64 0.6.0-1.fc42            fedora       2.5 MiB
-  annobin-docs                      noarch 12.94-1.fc42            updates     98.9 KiB
-  annobin-plugin-gcc                x86_64 12.94-1.fc42            updates    993.5 KiB
-  ansible-srpm-macros               noarch 1-17.1.fc42             fedora      35.7 KiB
-  build-reproducibility-srpm-macros noarch 0.6.0-1.fc42            fedora     735.0   B
-  clang                             x86_64 20.1.8-4.fc42           updates    372.9 KiB
-  clang-libs                        x86_64 20.1.8-4.fc42           updates    120.2 MiB
-  clang-resource-filesystem         x86_64 20.1.8-4.fc42           updates     15.3 KiB
-  clang-tools-extra                 x86_64 20.1.8-4.fc42           updates     67.2 MiB
-  cmake-filesystem                  x86_64 3.31.6-2.fc42           fedora       0.0   B
-  dwz                               x86_64 0.16-1.fc42             updates    287.1 KiB
-  efi-srpm-macros                   noarch 6-3.fc42                updates     40.1 KiB
-  file                              x86_64 5.46-3.fc42             updates    100.2 KiB
-  filesystem-srpm-macros            noarch 3.18-47.fc42            updates     38.2 KiB
-  fonts-srpm-macros                 noarch 1:2.0.5-22.fc42         updates     55.8 KiB
-  forge-srpm-macros                 noarch 0.4.0-2.fc42            fedora      38.9 KiB
-  fpc-srpm-macros                   noarch 1.3-14.fc42             fedora     144.0   B
-  gcc-plugin-annobin                x86_64 15.2.1-5.fc42           updates     57.1 KiB
-  ghc-srpm-macros                   noarch 1.9.2-2.fc42            fedora     779.0   B
-  glibc-gconv-extra                 x86_64 2.41-16.fc42            updates      7.2 MiB
-  gnat-srpm-macros                  noarch 6-7.fc42                fedora       1.0 KiB
-  go-srpm-macros                    noarch 3.8.0-1.fc42            updates     61.9 KiB
-  kernel-srpm-macros                noarch 1.0-25.fc42             fedora       1.9 KiB
-  libedit-devel                     x86_64 3.1-56.20251016cvs.fc42 updates     59.4 KiB
-  libzstd-devel                     x86_64 1.5.7-1.fc42            fedora     208.0 KiB
-  llvm                              x86_64 20.1.8-4.fc42           updates     89.7 MiB
-  llvm-devel                        x86_64 20.1.8-4.fc42           updates     28.9 MiB
-  llvm-googletest                   x86_64 20.1.8-4.fc42           updates      2.4 MiB
-  llvm-static                       x86_64 20.1.8-4.fc42           updates    365.1 MiB
-  llvm-test                         x86_64 20.1.8-4.fc42           updates      2.1 MiB
-  lua-srpm-macros                   noarch 1-15.fc42               fedora       1.3 KiB
-  ncurses-c++-libs                  x86_64 6.5-5.20250125.fc42     fedora     153.6 KiB
-  ncurses-devel                     x86_64 6.5-5.20250125.fc42     fedora     883.7 KiB
-  ocaml-srpm-macros                 noarch 10-4.fc42               fedora       1.9 KiB
-  openblas-srpm-macros              noarch 2-19.fc42               fedora     112.0   B
-  package-notes-srpm-macros         noarch 0.5-13.fc42             fedora       1.6 KiB
-  perl-srpm-macros                  noarch 1-57.fc42               fedora     861.0   B
-  pyproject-srpm-macros             noarch 1.18.6-1.fc42           updates      1.9 KiB
-  python-srpm-macros                noarch 3.13-5.fc42             updates     51.0 KiB
-  qt5-srpm-macros                   noarch 5.15.18-1.fc42          updates    500.0   B
-  qt6-srpm-macros                   noarch 6.9.3-1.fc42            updates    464.0   B
-  rust-srpm-macros                  noarch 28.4-1.fc42             updates      5.5 KiB
-  tree-sitter-srpm-macros           noarch 0.1.0-8.fc42            fedora       6.5 KiB
-  zig-srpm-macros                   noarch 1-4.fc42                fedora       1.1 KiB
-  zip                               x86_64 3.0-43.fc42             fedora     698.5 KiB
- Installing weak dependencies:
-  compiler-rt                       x86_64 20.1.8-4.fc42           updates     40.4 MiB
-  libatomic                         x86_64 15.2.1-5.fc42           updates     36.7 KiB
-  libomp                            x86_64 20.1.8-4.fc42           updates      2.2 MiB
-  libomp-devel                      x86_64 20.1.8-4.fc42           updates      1.5 MiB
- 
- Transaction Summary:
-  Installing:        52 packages
- 
- Total size of inbound packages is 135 MiB. Need to download 135 MiB.
- After this operation, 762 MiB extra will be used (install 762 MiB, remove 0 B).
- [ 1/52] clang-0:20.1.8-4.fc42.x86_64    100% | 364.4 KiB/s | 157.8 KiB |  00m00s
- [ 2/52] clang-devel-0:20.1.8-4.fc42.x86 100% | 134.7 KiB/s |   3.7 MiB |  00m28s
- [ 3/52] cmake-filesystem-0:3.31.6-2.fc4 100% | 161.4 KiB/s |  17.6 KiB |  00m00s
- [ 4/52] llvm-devel-0:20.1.8-4.fc42.x86_ 100% | 116.8 KiB/s |   4.8 MiB |  00m42s
- [ 5/52] clang-tools-extra-0:20.1.8-4.fc 100% | 229.6 KiB/s |  16.8 MiB |  01m15s
- [ 6/52] llvm-googletest-0:20.1.8-4.fc42 100% | 263.5 KiB/s | 445.2 KiB |  00m02s
- [ 7/52] llvm-0:20.1.8-4.fc42.x86_64     100% | 166.7 KiB/s |  23.2 MiB |  02m23s
- [ 8/52] llvm-test-0:20.1.8-4.fc42.x86_6 100% |  98.3 KiB/s | 723.1 KiB |  00m07s
- [ 9/52] clang-resource-filesystem-0:20. 100% |  89.9 KiB/s |  20.5 KiB |  00m00s
- [10/52] redhat-rpm-config-0:342-4.fc42. 100% | 181.0 KiB/s |  81.1 KiB |  00m00s
- [11/52] ansible-srpm-macros-0:1-17.1.fc 100% | 101.1 KiB/s |  20.3 KiB |  00m00s
- [12/52] build-reproducibility-srpm-macr 100% |  59.6 KiB/s |  11.7 KiB |  00m00s
- [13/52] forge-srpm-macros-0:0.4.0-2.fc4 100% |  91.5 KiB/s |  19.9 KiB |  00m00s
- [14/52] clang-libs-0:20.1.8-4.fc42.x86_ 100% | 168.8 KiB/s |  27.5 MiB |  02m47s
- [15/52] ghc-srpm-macros-0:1.9.2-2.fc42. 100% |  37.7 KiB/s |   9.2 KiB |  00m00s
- [16/52] gnat-srpm-macros-0:6-7.fc42.noa 100% |  32.9 KiB/s |   8.6 KiB |  00m00s
- [17/52] kernel-srpm-macros-0:1.0-25.fc4 100% |  92.3 KiB/s |   9.9 KiB |  00m00s
- [18/52] fpc-srpm-macros-0:1.3-14.fc42.n 100% |   6.8 KiB/s |   8.0 KiB |  00m01s
- [19/52] ocaml-srpm-macros-0:10-4.fc42.n 100% | 263.0 KiB/s |   9.2 KiB |  00m00s
- [20/52] openblas-srpm-macros-0:2-19.fc4 100% | 176.5 KiB/s |   7.8 KiB |  00m00s
- [21/52] lua-srpm-macros-0:1-15.fc42.noa 100% |  23.3 KiB/s |   8.9 KiB |  00m00s
- [22/52] package-notes-srpm-macros-0:0.5 100% |  10.1 KiB/s |   9.3 KiB |  00m01s
- [23/52] tree-sitter-srpm-macros-0:0.1.0 100% | 468.0 KiB/s |  11.2 KiB |  00m00s
- [24/52] zig-srpm-macros-0:1-4.fc42.noar 100% | 142.1 KiB/s |   8.2 KiB |  00m00s
- [25/52] perl-srpm-macros-0:1-57.fc42.no 100% |   9.8 KiB/s |   8.5 KiB |  00m01s
- [26/52] zip-0:3.0-43.fc42.x86_64        100% | 148.9 KiB/s | 263.5 KiB |  00m02s
- [27/52] zlib-ng-compat-devel-0:2.2.5-2. 100% | 292.6 KiB/s |  38.3 KiB |  00m00s
- [28/52] dwz-0:0.16-1.fc42.x86_64        100% | 142.5 KiB/s | 135.5 KiB |  00m01s
- [29/52] efi-srpm-macros-0:6-3.fc42.noar 100% | 449.9 KiB/s |  22.5 KiB |  00m00s
- [30/52] add-determinism-0:0.6.0-1.fc42. 100% | 310.1 KiB/s | 918.3 KiB |  00m03s
- [31/52] file-0:5.46-3.fc42.x86_64       100% | 163.8 KiB/s |  48.6 KiB |  00m00s
- [32/52] filesystem-srpm-macros-0:3.18-4 100% | 230.7 KiB/s |  26.1 KiB |  00m00s
- [33/52] fonts-srpm-macros-1:2.0.5-22.fc 100% | 210.9 KiB/s |  27.2 KiB |  00m00s
- [34/52] go-srpm-macros-0:3.8.0-1.fc42.n 100% | 341.0 KiB/s |  28.3 KiB |  00m00s
- [35/52] python-srpm-macros-0:3.13-5.fc4 100% | 148.8 KiB/s |  22.5 KiB |  00m00s
- [36/52] pyproject-srpm-macros-0:1.18.6- 100% |  53.5 KiB/s |  13.3 KiB |  00m00s
- [37/52] qt5-srpm-macros-0:5.15.18-1.fc4 100% |  58.1 KiB/s |   8.6 KiB |  00m00s
- [38/52] qt6-srpm-macros-0:6.9.3-1.fc42. 100% |  41.2 KiB/s |   9.2 KiB |  00m00s
- [39/52] rust-srpm-macros-0:28.4-1.fc42. 100% |  22.6 KiB/s |  10.8 KiB |  00m00s
- [40/52] libedit-devel-0:3.1-56.20251016 100% |  78.6 KiB/s |  40.5 KiB |  00m01s
- [41/52] ncurses-c++-libs-0:6.5-5.202501 100% | 143.1 KiB/s |  37.9 KiB |  00m00s
- [42/52] libzstd-devel-0:1.5.7-1.fc42.x8 100% | 121.2 KiB/s |  53.1 KiB |  00m00s
- [43/52] gcc-plugin-annobin-0:15.2.1-5.f 100% | 166.7 KiB/s |  59.3 KiB |  00m00s
- [44/52] ncurses-devel-0:6.5-5.20250125. 100% | 248.6 KiB/s | 583.5 KiB |  00m02s
- [45/52] annobin-plugin-gcc-0:12.94-1.fc 100% | 312.9 KiB/s | 981.9 KiB |  00m03s
- [46/52] annobin-docs-0:12.94-1.fc42.noa 100% | 473.4 KiB/s |  90.4 KiB |  00m00s
- [47/52] libatomic-0:15.2.1-5.fc42.x86_6 100% | 311.6 KiB/s |  46.4 KiB |  00m00s
- [48/52] glibc-gconv-extra-0:2.41-16.fc4 100% | 304.3 KiB/s |   1.6 MiB |  00m05s
- [49/52] libomp-0:20.1.8-4.fc42.x86_64   100% | 287.9 KiB/s | 738.4 KiB |  00m03s
- [50/52] libomp-devel-0:20.1.8-4.fc42.x8 100% | 156.5 KiB/s | 282.8 KiB |  00m02s
- [51/52] compiler-rt-0:20.1.8-4.fc42.x86 100% | 232.9 KiB/s |   2.9 MiB |  00m13s
- [52/52] llvm-static-0:20.1.8-4.fc42.x86 100% | 222.9 KiB/s |  48.3 MiB |  03m42s
- --------------------------------------------------------------------------------
- [52/52] Total                           100% | 461.8 KiB/s | 134.8 MiB |  04m59s
- Running transaction
- [ 1/54] Verify package files            100% | 115.0   B/s |  52.0   B |  00m00s
- [ 2/54] Prepare transaction             100% | 481.0   B/s |  52.0   B |  00m00s
- [ 3/54] Installing clang-resource-files 100% |   8.1 MiB/s |  16.7 KiB |  00m00s
- [ 4/54] Installing clang-libs-0:20.1.8- 100% | 348.6 MiB/s | 120.3 MiB |  00m00s
- [ 5/54] Installing cmake-filesystem-0:3 100% |   1.5 MiB/s |   7.6 KiB |  00m00s
- [ 6/54] Installing llvm-0:20.1.8-4.fc42 100% | 292.5 MiB/s |  89.8 MiB |  00m00s
- [ 7/54] Installing llvm-test-0:20.1.8-4 100% |  84.2 MiB/s |   2.1 MiB |  00m00s
- [ 8/54] Installing clang-0:20.1.8-4.fc4 100% |   9.2 MiB/s | 377.2 KiB |  00m00s
- [ 9/54] Installing clang-tools-extra-0: 100% | 312.5 MiB/s |  67.2 MiB |  00m00s
- [10/54] Installing libomp-0:20.1.8-4.fc 100% | 222.6 MiB/s |   2.2 MiB |  00m00s
- [11/54] Installing annobin-docs-0:12.94 100% |  97.7 MiB/s | 100.0 KiB |  00m00s
- [12/54] Installing annobin-plugin-gcc-0 100% | 242.9 MiB/s | 995.1 KiB |  00m00s
- [13/54] Installing gcc-plugin-annobin-0 100% |  57.3 MiB/s |  58.6 KiB |  00m00s
- [14/54] Installing libzstd-devel-0:1.5. 100% | 203.9 MiB/s | 208.8 KiB |  00m00s
- [15/54] Installing ncurses-c++-libs-0:6 100% |  50.4 MiB/s | 154.8 KiB |  00m00s
- [16/54] Installing ncurses-devel-0:6.5- 100% |  36.0 MiB/s |   1.0 MiB |  00m00s
- [17/54] Installing libedit-devel-0:3.1- 100% |  65.4 MiB/s |  67.0 KiB |  00m00s
- [18/54] Installing rust-srpm-macros-0:2 100% |   6.2 MiB/s |   6.4 KiB |  00m00s
- [19/54] Installing qt6-srpm-macros-0:6. 100% |   0.0   B/s | 740.0   B |  00m00s
- [20/54] Installing qt5-srpm-macros-0:5. 100% |   0.0   B/s | 776.0   B |  00m00s
- [21/54] Installing pyproject-srpm-macro 100% |   2.4 MiB/s |   2.5 KiB |  00m00s
- [22/54] Installing filesystem-srpm-macr 100% |  38.0 MiB/s |  38.9 KiB |  00m00s
- [23/54] Installing file-0:5.46-3.fc42.x 100% |   5.8 MiB/s | 101.7 KiB |  00m00s
- [24/54] Installing efi-srpm-macros-0:6- 100% |  40.2 MiB/s |  41.1 KiB |  00m00s
- [25/54] Installing dwz-0:0.16-1.fc42.x8 100% |  16.6 MiB/s | 288.5 KiB |  00m00s
- [26/54] Installing add-determinism-0:0. 100% | 107.2 MiB/s |   2.5 MiB |  00m00s
- [27/54] Installing build-reproducibilit 100% |   0.0   B/s |   1.0 KiB |  00m00s
- [28/54] Installing zip-0:3.0-43.fc42.x8 100% |  38.1 MiB/s | 702.4 KiB |  00m00s
- [29/54] Installing zig-srpm-macros-0:1- 100% |   1.6 MiB/s |   1.7 KiB |  00m00s
- [30/54] Installing tree-sitter-srpm-mac 100% |   7.2 MiB/s |   7.4 KiB |  00m00s
- [31/54] Installing perl-srpm-macros-0:1 100% |   0.0   B/s |   1.1 KiB |  00m00s
- [32/54] Installing package-notes-srpm-m 100% |   2.0 MiB/s |   2.0 KiB |  00m00s
- [33/54] Installing openblas-srpm-macros 100% |   0.0   B/s | 392.0   B |  00m00s
- [34/54] Installing ocaml-srpm-macros-0: 100% |   0.0   B/s |   2.2 KiB |  00m00s
- [35/54] Installing lua-srpm-macros-0:1- 100% |   1.9 MiB/s |   1.9 KiB |  00m00s
- [36/54] Installing kernel-srpm-macros-0 100% |   0.0   B/s |   2.3 KiB |  00m00s
- [37/54] Installing gnat-srpm-macros-0:6 100% |   0.0   B/s |   1.3 KiB |  00m00s
- [38/54] Installing ghc-srpm-macros-0:1. 100% |   0.0   B/s |   1.0 KiB |  00m00s
- [39/54] Installing fpc-srpm-macros-0:1. 100% |   0.0   B/s | 420.0   B |  00m00s
- [40/54] Installing ansible-srpm-macros- 100% |  35.4 MiB/s |  36.2 KiB |  00m00s
- [41/54] Installing forge-srpm-macros-0: 100% |  39.3 MiB/s |  40.3 KiB |  00m00s
- [42/54] Installing fonts-srpm-macros-1: 100% |  55.7 MiB/s |  57.0 KiB |  00m00s
- [43/54] Installing go-srpm-macros-0:3.8 100% |  61.6 MiB/s |  63.0 KiB |  00m00s
- [44/54] Installing python-srpm-macros-0 100% |  25.5 MiB/s |  52.2 KiB |  00m00s
- [45/54] Installing redhat-rpm-config-0: 100% |   3.9 MiB/s | 192.2 KiB |  00m00s
- [46/54] Installing llvm-static-0:20.1.8 100% | 402.7 MiB/s | 365.2 MiB |  00m01s
- [47/54] Installing llvm-googletest-0:20 100% | 107.3 MiB/s |   2.5 MiB |  00m00s
- [48/54] Installing llvm-devel-0:20.1.8- 100% |  76.1 MiB/s |  29.6 MiB |  00m00s
- [49/54] Installing clang-devel-0:20.1.8 100% | 146.1 MiB/s |  28.6 MiB |  00m00s
- [50/54] Installing libomp-devel-0:20.1. 100% | 220.9 MiB/s |   1.5 MiB |  00m00s
- [51/54] Installing zlib-ng-compat-devel 100% |  53.0 MiB/s | 108.5 KiB |  00m00s
- [52/54] Installing compiler-rt-0:20.1.8 100% | 430.4 MiB/s |  40.5 MiB |  00m00s
- [53/54] Installing libatomic-0:15.2.1-5 100% |  18.3 MiB/s |  37.5 KiB |  00m00s
- [54/54] Installing glibc-gconv-extra-0: 100% |  37.1 MiB/s |   7.3 MiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "clang-devel" "llvm-devel" "redhat-rpm-config" "zlib-devel"
- clang-devel-20.1.8-4.fc42.x86_64
- llvm-devel-20.1.8-4.fc42.x86_64
- redhat-rpm-config-342-4.fc42.noarch
- zlib-ng-compat-devel-2.2.5-2.fc42.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-libclang.19  (cached)
-> installed conf-bash.1
[ERROR] The compilation of conf-libclang.19 failed at "bash -ex configure.sh 19".

#=== ERROR while compiling conf-libclang.19 ===================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned
# path                 ~/.opam/5.4/.opam-switch/build/conf-libclang.19
# command              ~/.opam/opam-init/hooks/sandbox.sh build bash -ex configure.sh 19
# exit-code            127
# env-file             ~/.opam/log/conf-libclang-7-779fe1.env
# output-file          ~/.opam/log/conf-libclang-7-779fe1.out
### output ###
# + set -ex
# + '[' 1 '!=' 1 ']'
# + '[' 19 -lt 3 ']'
# + maximum_version=19
# + shopt -s nullglob
# ++ seq 19 -1 3
# + for version in default $(seq $maximum_version -1 3)
# + '[' default = default ']'
# + for kind in system brew none
# + case $kind in
# ++ command -v llvm-config
# + llvm_config=/usr/sbin/llvm-config
# ++ /usr/sbin/llvm-config --version
# + llvm_version=20.1.8
# + next_version=20
# ++ printf '20\n20'
# ++ sort -n
# ++ head -n1
# + '[' 20 = 20 ']'
# + continue
# + for kind in system brew none
# + case $kind in
# ++ brew --prefix
# configure.sh: line 33: brew: command not found
# + llvm_config=/opt/llvm/bin/llvm-config
# + continue
# + for kind in system brew none
# + case $kind in
# + break
# + '[' none == none ']'
# + continue
# + for version in default $(seq $maximum_version -1 3)
# + '[' 19 = default ']'
# + hash brew
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config-19
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config-19.0
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config190
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config19
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config-19-32
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config-19-64
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config-mp-19
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v llvm-config-mp-19.0
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v /usr/lib64/llvm/19/bin/llvm-config
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v /usr/lib/llvm/19/bin/llvm-config
# + llvm_config=
# + continue
# + for llvm_config in llvm-config-${version} llvm-config-${version}.0 llvm-config${version}0 llvm-config${version} llvm-config-${version}-32 llvm-config-${version}-64 llvm-config-mp-$version llvm-config-mp-${version}.0 $brew_llvm_config $brew_llvm_config_at /usr/lib64/llvm/${version}/bin/llvm-config /usr/lib/llvm/${version}/bin/llvm-config /usr/lib/llvm${version}/bin/llvm-config
# ++ command -v /usr/lib/llvm19/bin/llvm-config
# + llvm_config=
# + continue
# + '[' -z 20.1.8 ']'
# ++ --cflags
# configure.sh: line 74: --cflags: command not found
# + LLVM_CFLAGS=



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build conf-libclang 19
+- 
+- The following changes have been performed
| - install conf-bash 1
+- 
# 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-20260204093433.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.
A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.
"/usr/bin/env" "bash" "-c" "opam reinstall conf-libclang.19;
        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 "\"fedora-42\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'conf-libclang.19' && 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
2026-02-04 09:39.52: Job failed: Failed: Build failed
2026-02-04 09:39.52: Log analysis:
2026-02-04 09:39.52: >>> 
[ERROR] The compilation of conf-libclang.19 failed at "bash -ex configure.sh 19".
 (score = 20)
2026-02-04 09:39.52: >>> 
A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.
 (score = 100)
2026-02-04 09:39.52: [SKIP] Failure ignored