(for PR #28827)
2025-11-10 16:57.20: New job: test rune.1.0.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28827/head (3adacbc6aba2762d0750bc10bb58285f6b461c46)
on fedora-41-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/28827/head" && git reset --hard 3adacbc6
git fetch origin master
git merge --no-edit b6a264c784afa1e19f7a926fc10d49010ad12be4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439
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 rune.1.0.0~alpha2 1.0.0~alpha2
RUN opam reinstall rune.1.0.0~alpha2; \
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-41\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rune.1.0.0~alpha2' && 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 rune.1.0.0~alpha2) || true
RUN opam reinstall --with-test --verbose rune.1.0.0~alpha2; \
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-41\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rune.1.0.0~alpha2' && 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-11-10 16:57.20: Using cache hint "ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439-rune.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.20: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439)
(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 rune.1.0.0~alpha2 1.0.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rune.1.0.0~alpha2;\
\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-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rune.1.0.0~alpha2' && 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 rune.1.0.0~alpha2) || true"))
(run (shell "opam reinstall --with-test --verbose rune.1.0.0~alpha2;\
\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-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rune.1.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-10 16:57.20: Waiting for resource in pool OCluster
2025-11-10 22:11.09: Waiting for worker…
2025-11-10 22:17.23: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at b6a264c784 Merge pull request #28853 from AltGr/catala100
Merge made by the 'ort' strategy.
packages/fehu/fehu.1.0.0~alpha2/opam | 49 +++++++++++++++
packages/hugin/hugin.1.0.0~alpha2/opam | 49 +++++++++++++++
packages/kaun/kaun.1.0.0~alpha2/opam | 50 ++++++++++++++++
packages/nx-datasets/nx-datasets.1.0.0~alpha2/opam | 54 +++++++++++++++++
packages/nx/nx.1.0.0~alpha2/opam | 65 ++++++++++++++++++++
packages/quill/quill.1.0.0~alpha2/opam | 70 ++++++++++++++++++++++
packages/raven/raven.1.0.0~alpha2/opam | 53 ++++++++++++++++
packages/rune/rune.1.0.0~alpha2/opam | 56 +++++++++++++++++
packages/saga/saga.1.0.0~alpha2/opam | 49 +++++++++++++++
packages/sowilo/sowilo.1.0.0~alpha2/opam | 47 +++++++++++++++
packages/talon/talon.1.0.0~alpha2/opam | 48 +++++++++++++++
11 files changed, 590 insertions(+)
create mode 100644 packages/fehu/fehu.1.0.0~alpha2/opam
create mode 100644 packages/hugin/hugin.1.0.0~alpha2/opam
create mode 100644 packages/kaun/kaun.1.0.0~alpha2/opam
create mode 100644 packages/nx-datasets/nx-datasets.1.0.0~alpha2/opam
create mode 100644 packages/nx/nx.1.0.0~alpha2/opam
create mode 100644 packages/quill/quill.1.0.0~alpha2/opam
create mode 100644 packages/raven/raven.1.0.0~alpha2/opam
create mode 100644 packages/rune/rune.1.0.0~alpha2/opam
create mode 100644 packages/saga/saga.1.0.0~alpha2/opam
create mode 100644 packages/sowilo/sowilo.1.0.0~alpha2/opam
create mode 100644 packages/talon/talon.1.0.0~alpha2/opam
(from ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439)
Unable to find image 'ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439' locally
docker.io/ocaml/opam@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439: Pulling from ocaml/opam
f1504a8c5299: Pulling fs layer
f1504a8c5299: Verifying Checksum
f1504a8c5299: Download complete
f1504a8c5299: Pull complete
Digest: sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439
Status: Downloaded newer image for ocaml/opam@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439
2025-11-10 22:21.25 ---> saved as "67b51f99ac7836393591a935eca5368aa4cb698201bcc99de9b2596806c042d7"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 22:21.26 ---> saved as "0d9e6b76c1781dfadeafdcb7c87a555afa0f9bf2c8b5617b1805bc4b7b4cb129"
/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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 22:21.49 ---> saved as "7d5314a85b7b3a54798ba577b69af3aca1204263c3461fbfe0ff5db84a6283d4"
/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.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=fedora os-version=41
# 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-11-10 22:21.51 ---> saved as "fb7491ec5386a50ef6183ed1214abe1c0839de16e7ac9692b23d3eac0b89f444"
/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-11-10 22:21.59 ---> saved as "ce9858a29486abfefb6196aec06c98e00a6d34608e3f16664ac029c301fb3a5e"
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 22:22.09 ---> saved as "b4ba10385db258e79280840570accea3d1a07e98fc3455fe2d7992d3ee91afe3"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 22:22.33 ---> saved as "7129b081278a4de37cb1134763d0c7e3f23e7136d666ae39100ba8f62fcb004b"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 41 - x86_64 - Updates 100% | 58.4 KiB/s | 18.4 KiB | 00m00s
- Fedora 41 - x86_64 100% | 105.9 KiB/s | 24.8 KiB | 00m00s
- Fedora 41 openh264 (From Cisco) - x86_ 100% | 8.2 KiB/s | 986.0 B | 00m00s
- Repositories loaded.
- Metadata cache created.
2025-11-10 22:22.38 ---> saved as "214d1bfa7106a662dcb7c5dfd9cc797deed7259380ec5f855248a17e52f0556c"
/home/opam: (run (shell "opam pin add -k version -yn rune.1.0.0~alpha2 1.0.0~alpha2"))
rune is now pinned to version 1.0.0~alpha2
2025-11-10 22:22.39 ---> saved as "0dbf9c0e3ef4b716f5b0eb9451a5d1998c6c6427290ebf1700b873dc405aac85"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rune.1.0.0~alpha2;\
\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-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rune.1.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
rune.1.0.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 15 packages
- install bigarray-compat 1.1.0 [required by ctypes]
- install conf-bash 1 [required by conf-llvm-static]
- install conf-libffi 2.0.0 [required by ctypes-foreign]
- install conf-llvm-static 19 [required by rune]
- install conf-pkg-config 4 [required by ctypes-foreign, nx]
- install conf-zlib 1 [required by nx]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.23.0 [required by rune]
- install ctypes-foreign 0.23.0 [required by rune]
- install dune 3.20.2 [required by rune]
- install dune-configurator 3.20.2 [required by rune]
- install integers 0.7.0 [required by ctypes]
- install nx 1.0.0~alpha2 [required by rune]
- install rune 1.0.0~alpha2 (pinned)
- install stdlib-shims 0.3.0 [required by nx]
The following system packages will first need to be installed:
libffi-devel llvm-devel openblas-devel zlib-ng-compat-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/bin/sudo "yum" "install" "-y" "libffi-devel" "llvm-devel" "openblas-devel" "zlib-ng-compat-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Upgrading:
- libedit x86_64 3.1-55.20251016cvs.fc41 updates 244.2 KiB
- replacing libedit x86_64 3.1-54.20250104cvs.fc41 updates 239.3 KiB
- Installing:
- libffi-devel x86_64 3.4.6-3.fc41 fedora 33.1 KiB
- llvm-devel x86_64 19.1.7-5.fc41 updates 25.7 MiB
- openblas-devel x86_64 0.3.26-5.fc41 fedora 1.7 MiB
- zlib-ng-compat-devel x86_64 2.2.3-2.fc41 updates 107.0 KiB
- Installing dependencies:
- cmake-filesystem x86_64 3.30.8-1.fc41 updates 0.0 B
- libedit-devel x86_64 3.1-55.20251016cvs.fc41 updates 59.4 KiB
- libgfortran x86_64 14.3.1-4.fc41 updates 3.0 MiB
- libzstd-devel x86_64 1.5.7-1.fc41 updates 208.0 KiB
- llvm x86_64 19.1.7-5.fc41 updates 75.3 MiB
- llvm-googletest x86_64 19.1.7-5.fc41 updates 2.5 MiB
- llvm-static x86_64 19.1.7-5.fc41 updates 340.1 MiB
- llvm-test x86_64 19.1.7-5.fc41 updates 2.1 MiB
- ncurses-c++-libs x86_64 6.5-2.20240629.fc41 fedora 161.7 KiB
- ncurses-devel x86_64 6.5-2.20240629.fc41 fedora 870.1 KiB
- openblas x86_64 0.3.26-5.fc41 fedora 96.0 KiB
- openblas-openmp x86_64 0.3.26-5.fc41 fedora 39.4 MiB
- openblas-openmp64 x86_64 0.3.26-5.fc41 fedora 39.5 MiB
- openblas-openmp64_ x86_64 0.3.26-5.fc41 fedora 39.5 MiB
- openblas-serial x86_64 0.3.26-5.fc41 fedora 37.9 MiB
- openblas-serial64 x86_64 0.3.26-5.fc41 fedora 38.1 MiB
- openblas-serial64_ x86_64 0.3.26-5.fc41 fedora 38.1 MiB
- openblas-srpm-macros noarch 2-18.fc41 fedora 112.0 B
- openblas-threads x86_64 0.3.26-5.fc41 fedora 39.3 MiB
- openblas-threads64 x86_64 0.3.26-5.fc41 fedora 39.5 MiB
- openblas-threads64_ x86_64 0.3.26-5.fc41 fedora 39.5 MiB
-
- Transaction Summary:
- Installing: 25 packages
- Upgrading: 1 package
- Replacing: 1 package
-
- Total size of inbound packages is 118 MiB. Need to download 118 MiB.
- After this operation, 803 MiB extra will be used (install 803 MiB, remove 239 KiB).
- [ 1/26] libffi-devel-0:3.4.6-3.fc41.x86 100% | 1.2 MiB/s | 28.8 KiB | 00m00s
- [ 2/26] llvm-googletest-0:19.1.7-5.fc41 100% | 3.5 MiB/s | 436.6 KiB | 00m00s
- [ 3/26] llvm-devel-0:19.1.7-5.fc41.x86_ 100% | 13.2 MiB/s | 4.2 MiB | 00m00s
- [ 4/26] llvm-test-0:19.1.7-5.fc41.x86_6 100% | 9.3 MiB/s | 713.1 KiB | 00m00s
- [ 5/26] openblas-devel-0:0.3.26-5.fc41. 100% | 6.7 MiB/s | 82.8 KiB | 00m00s
- [ 6/26] openblas-0:0.3.26-5.fc41.x86_64 100% | 9.5 MiB/s | 38.7 KiB | 00m00s
- [ 7/26] llvm-0:19.1.7-5.fc41.x86_64 100% | 23.7 MiB/s | 21.3 MiB | 00m01s
- [ 8/26] openblas-openmp-0:0.3.26-5.fc41 100% | 3.8 MiB/s | 5.1 MiB | 00m01s
- [ 9/26] llvm-static-0:19.1.7-5.fc41.x86 100% | 25.9 MiB/s | 45.5 MiB | 00m02s
- [10/26] openblas-openmp64-0:0.3.26-5.fc 100% | 4.3 MiB/s | 4.9 MiB | 00m01s
- [11/26] openblas-serial-0:0.3.26-5.fc41 100% | 19.2 MiB/s | 4.9 MiB | 00m00s
- [12/26] openblas-openmp64_-0:0.3.26-5.f 100% | 5.3 MiB/s | 4.9 MiB | 00m01s
- [13/26] openblas-srpm-macros-0:2-18.fc4 100% | 1.5 MiB/s | 7.7 KiB | 00m00s
- [14/26] openblas-serial64_-0:0.3.26-5.f 100% | 8.3 MiB/s | 4.8 MiB | 00m01s
- [15/26] openblas-serial64-0:0.3.26-5.fc 100% | 6.6 MiB/s | 4.8 MiB | 00m01s
- [16/26] openblas-threads64-0:0.3.26-5.f 100% | 14.1 MiB/s | 4.9 MiB | 00m00s
- [17/26] zlib-ng-compat-devel-0:2.2.3-2. 100% | 2.2 MiB/s | 38.3 KiB | 00m00s
- [18/26] libgfortran-0:14.3.1-4.fc41.x86 100% | 16.6 MiB/s | 952.3 KiB | 00m00s
- [19/26] cmake-filesystem-0:3.30.8-1.fc4 100% | 1.1 MiB/s | 16.8 KiB | 00m00s
- [20/26] libedit-devel-0:3.1-55.20251016 100% | 2.5 MiB/s | 40.3 KiB | 00m00s
- [21/26] ncurses-devel-0:6.5-2.20240629. 100% | 19.9 MiB/s | 570.0 KiB | 00m00s
- [22/26] ncurses-c++-libs-0:6.5-2.202406 100% | 7.4 MiB/s | 37.8 KiB | 00m00s
- [23/26] openblas-threads64_-0:0.3.26-5. 100% | 10.4 MiB/s | 4.9 MiB | 00m00s
- [24/26] openblas-threads-0:0.3.26-5.fc4 100% | 8.9 MiB/s | 5.1 MiB | 00m01s
- [25/26] libzstd-devel-0:1.5.7-1.fc41.x8 100% | 1.9 MiB/s | 53.1 KiB | 00m00s
- [26/26] libedit-0:3.1-55.20251016cvs.fc 100% | 6.0 MiB/s | 105.1 KiB | 00m00s
- --------------------------------------------------------------------------------
- [26/26] Total 100% | 33.3 MiB/s | 118.4 MiB | 00m04s
- Running transaction
- [ 1/29] Verify package files 100% | 67.0 B/s | 26.0 B | 00m00s
- [ 2/29] Prepare transaction 100% | 317.0 B/s | 27.0 B | 00m00s
- [ 3/29] Installing openblas-0:0.3.26-5. 100% | 95.5 MiB/s | 97.8 KiB | 00m00s
- [ 4/29] Installing libgfortran-0:14.3.1 100% | 253.3 MiB/s | 3.0 MiB | 00m00s
- [ 5/29] Installing cmake-filesystem-0:3 100% | 1.4 MiB/s | 7.3 KiB | 00m00s
- [ 6/29] Installing llvm-0:19.1.7-5.fc41 100% | 285.5 MiB/s | 75.4 MiB | 00m00s
- [ 7/29] Installing llvm-test-0:19.1.7-5 100% | 233.4 MiB/s | 2.1 MiB | 00m00s
- [ 8/29] Installing openblas-openmp-0:0. 100% | 437.5 MiB/s | 39.4 MiB | 00m00s
- [ 9/29] Installing openblas-openmp64-0: 100% | 425.1 MiB/s | 39.5 MiB | 00m00s
- [10/29] Installing openblas-openmp64_-0 100% | 425.0 MiB/s | 39.5 MiB | 00m00s
- [11/29] Installing openblas-serial-0:0. 100% | 440.7 MiB/s | 37.9 MiB | 00m00s
- [12/29] Installing openblas-serial64-0: 100% | 448.5 MiB/s | 38.1 MiB | 00m00s
- [13/29] Installing openblas-serial64_-0 100% | 443.2 MiB/s | 38.1 MiB | 00m00s
- [14/29] Installing openblas-threads-0:0 100% | 418.3 MiB/s | 39.3 MiB | 00m00s
- [15/29] Installing openblas-threads64-0 100% | 449.0 MiB/s | 39.5 MiB | 00m00s
- [16/29] Installing openblas-threads64_- 100% | 448.9 MiB/s | 39.5 MiB | 00m00s
- [17/29] Upgrading libedit-0:3.1-55.2025 100% | 120.1 MiB/s | 245.9 KiB | 00m00s
- [18/29] Installing libzstd-devel-0:1.5. 100% | 203.9 MiB/s | 208.8 KiB | 00m00s
- [19/29] Installing ncurses-c++-libs-0:6 100% | 53.0 MiB/s | 162.9 KiB | 00m00s
- [20/29] Installing ncurses-devel-0:6.5- 100% | 82.8 MiB/s | 1.0 MiB | 00m00s
- [21/29] Installing libedit-devel-0:3.1- 100% | 65.4 MiB/s | 67.0 KiB | 00m00s
- [22/29] Installing openblas-srpm-macros 100% | 382.8 KiB/s | 392.0 B | 00m00s
- [23/29] Installing llvm-static-0:19.1.7 100% | 401.6 MiB/s | 340.1 MiB | 00m01s
- [24/29] Installing llvm-googletest-0:19 100% | 165.2 MiB/s | 2.5 MiB | 00m00s
- [25/29] Installing llvm-devel-0:19.1.7- 100% | 108.4 MiB/s | 26.0 MiB | 00m00s
- [26/29] Installing openblas-devel-0:0.3 100% | 275.6 MiB/s | 1.7 MiB | 00m00s
- [27/29] Installing zlib-ng-compat-devel 100% | 53.0 MiB/s | 108.5 KiB | 00m00s
- [28/29] Installing libffi-devel-0:3.4.6 100% | 34.0 MiB/s | 34.8 KiB | 00m00s
- [29/29] Removing libedit-0:3.1-54.20250 100% | 92.0 B/s | 11.0 B | 00m00s
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "libffi-devel" "llvm-devel" "openblas-devel" "zlib-ng-compat-devel"
- libffi-devel-3.4.6-3.fc41.x86_64
- llvm-devel-19.1.7-5.fc41.x86_64
- openblas-devel-0.3.26-5.fc41.x86_64
- zlib-ng-compat-devel-2.2.3-2.fc41.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved conf-llvm-static.19 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached)
-> installed conf-bash.1
-> installed conf-pkg-config.4
-> installed conf-libffi.2.0.0
-> installed conf-llvm-static.19
-> installed conf-zlib.1
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved nx.1.0.0~alpha2, rune.1.0.0~alpha2 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.20.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.20.2
-> installed ctypes.0.23.0
-> installed ctypes-foreign.0.23.0
-> installed nx.1.0.0~alpha2
-> installed rune.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:24.05 ---> saved as "6460237420b4e259ed4542cdca05698c0857ca8236133186099fff47079222ba"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test rune.1.0.0~alpha2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile rune 1.0.0~alpha2 (pinned)
=== install 10 packages
- install alcotest 1.9.1 [required by rune]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.0.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install re 1.14.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.0.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed cmdliner.2.0.0
-> installed ocamlfind.1.9.8
-> removed rune.1.0.0~alpha2
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed rune.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:24.29 ---> saved as "d9b5217e9d94ab7a95c900aadaaaea2d88df7b38b6381ac5544045e7ca817cc4"
/home/opam: (run (shell "opam reinstall --with-test --verbose rune.1.0.0~alpha2;\
\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-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rune.1.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile rune 1.0.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [rune: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rune" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2)
- (cd _build/default/rune/vendor/llvm/llvm && ../config/discover.exe)
- Found LLVM version 19.1.7 using llvm-config-19
- (cd _build/default/rune/vendor/llvm/llvm && /usr/bin/gcc -fPIC -I/usr/include -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -g -I /home/opam/.opam/5.4/lib/ocaml -o llvm_ocaml.o -c llvm_ocaml.c)
- llvm_ocaml.c: In function 'llvm_const_nuw_neg':
- llvm_ocaml.c:1167:3: warning: 'LLVMConstNUWNeg' is deprecated: Use LLVMConstNull instead. [-Wdeprecated-declarations]
- 1167 | LLVMValueRef NegValue = LLVMConstNUWNeg(Value_val(Value));
- | ^~~~~~~~~~~~
- In file included from /usr/include/llvm-c/Core.h:18,
- from llvm_ocaml.c:22:
- /usr/include/llvm-c/Core.h:2438:1: note: declared here
- 2438 | LLVM_ATTRIBUTE_C_DEPRECATED(
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- llvm_ocaml.c: In function 'llvm_build_nuw_neg':
- llvm_ocaml.c:2364:7: warning: 'LLVMBuildNUWNeg' is deprecated: Use LLVMBuildNeg + LLVMSetNUW instead. [-Wdeprecated-declarations]
- 2364 | LLVMBuildNUWNeg(Builder_val(B), Value_val(X), String_val(Name)));
- | ^~~~~~~~~~~~~~~
- /usr/include/llvm-c/Core.h:4341:1: note: declared here
- 4341 | LLVM_ATTRIBUTE_C_DEPRECATED(LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- (cd _build/default/rune/test/jit && ./test_llvm.exe)
- Testing `LLVM backend'.
- This run has ID `M0MD9O4V'.
-
- [OK] sanity 0 basic IR creation.
- [OK] end-to-end 0 add f32.
- [OK] end-to-end 1 where f32.
- [OK] end-to-end 2 mulacc f32.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2/_build/default/rune/test/jit/_build/_tests/LLVM backend'.
- Test Successful in 0.004s. 4 tests run.
- (cd _build/default/rune/test && ./test_autodiff.exe)
- Testing `Rune Autodiff Tests'.
- This run has ID `AG0OLU6M'.
-
- [OK] binary operations 0 add.
- [OK] binary operations 1 mul.
- [OK] binary operations 2 sub.
- [OK] binary operations 3 div.
- [OK] binary operations 4 pow.
- [OK] binary operations 5 minimum.
- [OK] binary operations 6 maximum.
- [OK] unary operations 0 exp.
- [OK] unary operations 1 log.
- [OK] unary operations 2 sin.
- [OK] unary operations 3 cos.
- [OK] unary operations 4 sqrt.
- [OK] unary operations 5 neg.
- [OK] unary operations 6 relu.
- [OK] unary operations 7 tanh.
- [OK] unary operations 8 abs.
- [OK] unary operations 9 sigmoid.
- [OK] unary operations 10 softmax.
- [OK] unary operations 11 square.
- [OK] unary operations 12 recip.
- [OK] unary operations 13 rsqrt.
- [OK] unary operations 14 sign.
- [OK] unary operations 15 tan.
- [OK] unary operations 16 sinh.
- [OK] unary operations 17 cosh.
- [OK] reduction operations 0 sum.
- [OK] reduction operations 1 mean.
- [OK] reduction operations 2 max.
- [OK] reduction operations 3 sum with axis.
- [OK] reduction operations 4 min.
- [OK] reduction operations 5 prod.
- [OK] broadcasting 0 broadcast add.
- [OK] broadcasting 1 broadcast mul.
- [OK] broadcasting 2 scalar broadcast.
- [OK] broadcasting 3 expand.
- [OK] broadcasting 4 where.
- [OK] shape manipulation 0 reshape.
- [OK] shape manipulation 1 transpose.
- [OK] shape manipulation 2 squeeze.
- [OK] shape manipulation 3 unsqueeze.
- [OK] shape manipulation 4 flatten.
- [OK] shape manipulation 5 flip.
- [OK] shape manipulation 6 pad.
- [OK] shape manipulation 7 tile.
- [OK] shape manipulation 8 concatenate.
- [OK] shape manipulation 9 stack.
- [OK] indexing operations 0 get.
- [OK] indexing operations 1 slice.
- [OK] indexing operations 2 take.
- [OK] indexing operations 3 take_along_axis.
- [OK] linear algebra 0 dot.
- [OK] linear algebra 1 trace.
- [OK] linear algebra 2 norm.
- [OK] neural network operations 0 matmul.
- [OK] neural network operations 1 pooling.
- [OK] neural network operations 2 conv2d.
- [OK] neural network operations 3 avg_pool2d overlapp...
- [OK] neural network operations 4 leaky_relu.
- [OK] neural network operations 5 elu.
- [OK] neural network operations 6 selu.
- [OK] cumulative 0 cumsum.
- [OK] cumulative 1 cumprod.
- [OK] compound operations 0 linear layer.
- [OK] compound operations 1 cross entropy.
- [OK] compound operations 2 binary cross entropy.
- [OK] composition and higher-order 0 multi-variable.
- [OK] composition and higher-order 1 chain rule.
- [OK] composition and higher-order 2 shared subexpression.
- [OK] composition and higher-order 3 second order.
- [OK] api functions 0 value_and_grad.
- [OK] api functions 1 value_and_grads.
- [OK] api functions 2 no_grad.
- [OK] api functions 3 detach constant.
- [OK] api functions 4 detach partial grad...
- [OK] special cases 0 gradient at zero.
- [OK] special cases 1 NaN propagation.
- [OK] special cases 2 large values.
- [OK] special cases 3 small values.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2/_build/default/rune/test/_build/_tests/Rune Autodiff Tests'.
- Test Successful in 0.024s. 78 tests run.
- (cd _build/default/rune/test && ./test_jvp.exe)
- Testing `Rune JVP Comprehensive Tests'.
- This run has ID `JPYZUK2O'.
-
- [OK] binary operations 0 add.
- [OK] binary operations 1 mul.
- [OK] binary operations 2 sub.
- [OK] binary operations 3 div.
- [OK] binary operations 4 pow.
- [OK] binary operations 5 max.
- [OK] unary operations 0 exp.
- [OK] unary operations 1 log.
- [OK] unary operations 2 sin/cos.
- [OK] unary operations 3 sqrt.
- [OK] unary operations 4 neg.
- [OK] unary operations 5 relu.
- [OK] unary operations 6 tanh.
- [OK] unary operations 7 abs.
- [OK] unary operations 8 cumsum.
- [OK] unary operations 9 cumprod.
- [OK] unary operations 10 sigmoid.
- [OK] unary operations 11 square.
- [OK] unary operations 12 recip.
- [OK] unary operations 13 rsqrt.
- [OK] unary operations 14 tan.
- [OK] unary operations 15 sinh/cosh.
- [OK] reduction operations 0 sum.
- [OK] reduction operations 1 mean.
- [OK] reduction operations 2 max.
- [OK] reduction operations 3 sum with axis.
- [OK] reduction operations 4 prod.
- [OK] broadcasting 0 broadcast add.
- [OK] broadcasting 1 scalar broadcast.
- [OK] shape operations 0 reshape.
- [OK] shape operations 1 transpose.
- [OK] shape operations 2 squeeze.
- [OK] shape operations 3 expand_dims.
- [OK] shape operations 4 concatenate.
- [OK] complex compositions 0 softmax.
- [OK] complex compositions 1 layer norm.
- [OK] complex compositions 2 nested.
- [OK] complex compositions 3 higher order.
- [OK] edge cases 0 zero tangent.
- [OK] edge cases 1 constant function.
- [OK] edge cases 2 identity.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2/_build/default/rune/test/_build/_tests/Rune JVP Comprehensive Tests'.
- Test Successful in 0.008s. 41 tests run.
- (cd _build/default/rune/test && ./test_gradcheck.exe)
- Testing `Gradient Checking'.
- This run has ID `WE9ERQKQ'.
-
- [OK] finite_diff 0 simple quadratic.
- [OK] finite_diff 1 polynomial.
- [OK] finite_diff 2 vector gradient.
- [OK] finite_diff 3 different methods.
- [OK] finite_diff 4 jacobian.
- [OK] check_gradient 0 passing check.
- [OK] check_gradient 1 verify correctness.
- [OK] check_gradient 2 tolerance settings.
- [OK] check_gradient 3 complex function.
- [OK] check_gradient 4 multiple inputs.
- [OK] check_gradient 5 matrix operations.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2/_build/default/rune/test/_build/_tests/Gradient Checking'.
- Test Successful in 0.006s. 11 tests run.
- (cd _build/default/rune/test && ./test_rng.exe)
- Testing `Rune.Rng'.
- This run has ID `B2QC572T'.
-
- [OK] key 0 creation.
- [OK] key 1 splitting.
- [OK] key 2 fold_in.
- [OK] sampling 0 uniform.
- [OK] sampling 1 normal.
- [OK] sampling 2 randint.
- [OK] sampling 3 bernoulli.
- [OK] sampling 4 shuffle_preserves_shape.
- [OK] sampling 5 truncated_normal.
- [OK] sampling 6 truncated_normal_distribution.
- [OK] sampling 7 categorical.
- [OK] sampling 8 categorical_2d.
- [OK] sampling 9 categorical_axis_handling.
- [OK] sampling 10 categorical_shape_prefix_axis.
- [OK] sampling 11 categorical_distribution.
- [OK] autodiff 0 rng_with_grad.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2/_build/default/rune/test/_build/_tests/Rune.Rng'.
- Test Successful in 30.643s. 16 tests run.
Processing 2/4: [rune: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "rune" "--create-install-files" "rune" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rune.1.0.0~alpha2)
-> compiled rune.1.0.0~alpha2
-> removed rune.1.0.0~alpha2
-> installed rune.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:25.11 ---> saved as "438c1c6048a680d7fc934ededa4c08ecfa2e089a55605c315c3690799144e74f"
Job succeeded
2025-11-10 22:25.30: Job succeeded