(for PR #28827)
2025-11-10 16:57.20: New job: test nx-datasets.1.0.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28827/head (3adacbc6aba2762d0750bc10bb58285f6b461c46)
on ubuntu-24.04-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:ubuntu-24.04-ocaml-5.4@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e
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 nx-datasets.1.0.0~alpha2 1.0.0~alpha2
RUN opam reinstall nx-datasets.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'nx-datasets.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 nx-datasets.1.0.0~alpha2) || true
RUN opam reinstall --with-test --verbose nx-datasets.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'nx-datasets.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:ubuntu-24.04-ocaml-5.4@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e-nx-datasets.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.20: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e)
(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 nx-datasets.1.0.0~alpha2 1.0.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall nx-datasets.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'nx-datasets.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 nx-datasets.1.0.0~alpha2) || true"))
(run (shell "opam reinstall --with-test --verbose nx-datasets.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'nx-datasets.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:09.14: Waiting for worker…
2025-11-10 22:15.15: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 68% (12825/18716)
Updating files: 69% (12915/18716)
Updating files: 70% (13102/18716)
Updating files: 71% (13289/18716)
Updating files: 72% (13476/18716)
Updating files: 73% (13663/18716)
Updating files: 74% (13850/18716)
Updating files: 75% (14037/18716)
Updating files: 76% (14225/18716)
Updating files: 77% (14412/18716)
Updating files: 78% (14599/18716)
Updating files: 79% (14786/18716)
Updating files: 80% (14973/18716)
Updating files: 81% (15160/18716)
Updating files: 82% (15348/18716)
Updating files: 83% (15535/18716)
Updating files: 84% (15722/18716)
Updating files: 85% (15909/18716)
Updating files: 86% (16096/18716)
Updating files: 87% (16283/18716)
Updating files: 88% (16471/18716)
Updating files: 89% (16658/18716)
Updating files: 90% (16845/18716)
Updating files: 91% (17032/18716)
Updating files: 92% (17219/18716)
Updating files: 93% (17406/18716)
Updating files: 94% (17594/18716)
Updating files: 95% (17781/18716)
Updating files: 96% (17968/18716)
Updating files: 97% (18155/18716)
Updating files: 98% (18342/18716)
Updating files: 99% (18529/18716)
Updating files: 100% (18716/18716)
Updating files: 100% (18716/18716), done.
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:ubuntu-24.04-ocaml-5.4@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e' locally
docker.io/ocaml/opam@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e: Pulling from ocaml/opam
946c53f269af: Pulling fs layer
fd8935a79a2b: Pulling fs layer
8f2328199b75: Pulling fs layer
d22608d8fad3: Pulling fs layer
605887ba4e9a: Pulling fs layer
923ecc3585ca: Pulling fs layer
9ae994361455: Pulling fs layer
8f2328199b75: Waiting
9192b8392654: Pulling fs layer
fd8935a79a2b: Waiting
9ae994361455: Waiting
d22608d8fad3: Waiting
923ecc3585ca: Waiting
fd8935a79a2b: Download complete
8f2328199b75: Verifying Checksum
8f2328199b75: Download complete
946c53f269af: Verifying Checksum
946c53f269af: Download complete
d22608d8fad3: Verifying Checksum
d22608d8fad3: Download complete
923ecc3585ca: Verifying Checksum
923ecc3585ca: Download complete
9192b8392654: Verifying Checksum
9192b8392654: Download complete
9ae994361455: Verifying Checksum
9ae994361455: Download complete
605887ba4e9a: Verifying Checksum
605887ba4e9a: Download complete
946c53f269af: Pull complete
fd8935a79a2b: Pull complete
8f2328199b75: Pull complete
d22608d8fad3: Pull complete
605887ba4e9a: Pull complete
923ecc3585ca: Pull complete
9ae994361455: Pull complete
9192b8392654: Pull complete
Digest: sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e
Status: Downloaded newer image for ocaml/opam@sha256:56682c3c5912cf2d84f3184292407e82fc235880b2922ba5661e4db967070c2e
2025-11-10 22:15.19 ---> using "ee6f1d6ce22ee93aca4f99ca18dac31fa4897330e669f647678dc620eb9153fe" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 22:15.19 ---> using "3145206f25b32b28b55daff96d533e131aba04fbfe555d6d4e48b3ab82193a7d" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 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-11-10 22:15.19 ---> using "12b0632391968fc23a0de54149e6f73c4618a28adba7764c78fa20bfa19fe9ae" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0~alpha1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=ubuntu os-version=24.04
# 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-11-10 22:15.19 ---> using "4fcf076d92613d46c943404a34511580a0ce9afc9372faacd1e6a14e87ab96d6" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-11-10 22:15.19 ---> using "81ddb6a28796ca835f964e9735cf56df0542a672c886c7d0a4aa8c73690fc387" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 22:15.20 ---> using "d381951e25b829f31de24d565f8126711b20418ccad063b05d29a1bd06eb82ca" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 22:15.20 ---> using "6ee255446d8019a451c16d95e158a004f1a5501abffbbdf43261914b93c60e42" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease
- Get:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
- Get:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
- Fetched 378 kB in 1s (269 kB/s)
- Reading package lists...
-
2025-11-10 22:15.20 ---> using "1b0970c849a0981c6cb800580ffa08dbcf2bf311efb2c93e2599e0f0ec320b86" from cache
/home/opam: (run (shell "opam pin add -k version -yn nx-datasets.1.0.0~alpha2 1.0.0~alpha2"))
nx-datasets is now pinned to version 1.0.0~alpha2
2025-11-10 22:15.20 ---> using "736b2dd48ba95ce625b8db124366b5d0a3f2d58988db89aa9863f5533f21237e" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall nx-datasets.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'nx-datasets.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"))
nx-datasets.1.0.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
- install base-bytes base [required by csv]
- install conf-libcurl 2 [required by ocurl]
- install conf-pkg-config 4 [required by nx]
- install conf-zlib 1 [required by nx]
- install csexp 1.5.2 [required by dune-configurator]
- install csv 2.4 [required by nx-datasets]
- install dune 3.20.2 [required by nx-datasets]
- install dune-configurator 3.20.2 [required by nx]
- install logs 0.10.0 [required by nx-datasets]
- install nx 1.0.0~alpha2 [required by nx-datasets]
- install nx-datasets 1.0.0~alpha2 (pinned)
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs, ocurl]
- install ocurl 0.9.2 [required by nx-datasets]
- install stdlib-shims 0.3.0 [required by nx]
- install topkg 1.1.1 [required by logs]
The following system packages will first need to be installed:
libcurl4-gnutls-dev liblapacke-dev libopenblas-dev pkg-config zlib1g-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libcurl4-gnutls-dev" "liblapacke-dev" "libopenblas-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libblas3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16365 files and directories currently installed.)
- Preparing to unpack .../00-libblas3_3.12.0-3build1.1_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../01-libblas-dev_3.12.0-3build1.1_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../02-libcurl4-gnutls-dev_8.5.0-2ubuntu10.6_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.5.0-2ubuntu10.6) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../03-libgfortran5_14.2.0-4ubuntu2~24.04_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-4ubuntu2~24.04) ...
- Selecting previously unselected package libopenblas0-pthread:amd64.
- Preparing to unpack .../04-libopenblas0-pthread_0.3.26+ds-1_amd64.deb ...
- Unpacking libopenblas0-pthread:amd64 (0.3.26+ds-1) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../05-liblapack3_3.12.0-3build1.1_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libopenblas-pthread-dev:amd64.
- Preparing to unpack .../06-libopenblas-pthread-dev_0.3.26+ds-1_amd64.deb ...
- Unpacking libopenblas-pthread-dev:amd64 (0.3.26+ds-1) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../07-liblapack-dev_3.12.0-3build1.1_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libtmglib3:amd64.
- Preparing to unpack .../08-libtmglib3_3.12.0-3build1.1_amd64.deb ...
- Unpacking libtmglib3:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package liblapacke:amd64.
- Preparing to unpack .../09-liblapacke_3.12.0-3build1.1_amd64.deb ...
- Unpacking liblapacke:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libtmglib-dev:amd64.
- Preparing to unpack .../10-libtmglib-dev_3.12.0-3build1.1_amd64.deb ...
- Unpacking libtmglib-dev:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package liblapacke-dev:amd64.
- Preparing to unpack .../11-liblapacke-dev_3.12.0-3build1.1_amd64.deb ...
- Unpacking liblapacke-dev:amd64 (3.12.0-3build1.1) ...
- Selecting previously unselected package libopenblas0:amd64.
- Preparing to unpack .../12-libopenblas0_0.3.26+ds-1_amd64.deb ...
- Unpacking libopenblas0:amd64 (0.3.26+ds-1) ...
- Selecting previously unselected package libopenblas-dev:amd64.
- Preparing to unpack .../13-libopenblas-dev_0.3.26+ds-1_amd64.deb ...
- Unpacking libopenblas-dev:amd64 (0.3.26+ds-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../14-libpkgconf3_1.8.1-2build1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../15-pkgconf-bin_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../16-pkgconf_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../17-pkg-config_1.8.1-2build1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../18-zlib1g-dev_1%3a1.3.dfsg-3.1ubuntu2.1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.5.0-2ubuntu10.6) ...
- Setting up libblas3:amd64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- Setting up libpkgconf3:amd64 (1.8.1-2build1) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up libgfortran5:amd64 (14.2.0-4ubuntu2~24.04) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libblas-dev:amd64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
- Setting up liblapack3:amd64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- Setting up libopenblas0-pthread:amd64 (0.3.26+ds-1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode
- Setting up pkgconf:amd64 (1.8.1-2build1) ...
- Setting up libtmglib3:amd64 (3.12.0-3build1.1) ...
- Setting up liblapack-dev:amd64 (3.12.0-3build1.1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
- Setting up pkg-config:amd64 (1.8.1-2build1) ...
- Setting up libopenblas0:amd64 (0.3.26+ds-1) ...
- Setting up liblapacke:amd64 (3.12.0-3build1.1) ...
- Setting up libtmglib-dev:amd64 (3.12.0-3build1.1) ...
- Setting up libopenblas-pthread-dev:amd64 (0.3.26+ds-1) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode
- Setting up liblapacke-dev:amd64 (3.12.0-3build1.1) ...
- Setting up libopenblas-dev:amd64 (0.3.26+ds-1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.6) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> installed conf-libcurl.2
-> installed conf-pkg-config.4
-> retrieved csv.2.4 (cached)
-> installed conf-zlib.1
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved nx.1.0.0~alpha2, nx-datasets.1.0.0~alpha2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocurl.0.9.2 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed csv.2.4
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.20.2
-> installed ocurl.0.9.2
-> installed nx.1.0.0~alpha2
-> installed nx-datasets.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:17.47 ---> saved as "8f2c17988f608c4318b0e1c04ec0e2e03b95741f0be0297cd5ebe225e9dd0674"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test nx-datasets.1.0.0~alpha2) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile logs 0.10.0 [uses cmdliner]
- recompile nx-datasets 1.0.0~alpha2 (pinned)
=== install 7 packages
- install alcotest 1.9.1 [required by nx-datasets]
- 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 re 1.14.0 [required by alcotest]
- 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 logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (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 astring.0.8.5
-> removed nx-datasets.1.0.0~alpha2
-> removed logs.0.10.0
-> installed cmdliner.2.0.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed nx-datasets.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:18.29 ---> saved as "1ac391a328609e946ad5f655bc59c1109a926cde42a827c43269641e8079b18c"
/home/opam: (run (shell "opam reinstall --with-test --verbose nx-datasets.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'nx-datasets.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 nx-datasets 1.0.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [nx-datasets: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "nx-datasets" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/nx-datasets.1.0.0~alpha2)
- (cd _build/default/nx-datasets/test && ./test_dataset_utils.exe)
- Testing `Dataset Utils'.
- This run has ID `9LV0HFCG'.
-
- [OK] Cache Directory Resolution 0 Environment variable ...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/nx-datasets.1.0.0~alpha2/_build/default/nx-datasets/test/_build/_tests/Dataset Utils'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/nx-datasets/test && ./test_generators.exe)
- Testing `Generators'.
- This run has ID `0K811HQP'.
-
- [OK] Classification 0 make_blobs.
- [OK] Classification 1 make_classification.
- [OK] Classification 2 make_gaussian_quantiles.
- [OK] Classification 3 make_circles.
- [OK] Classification 4 make_moons.
- [OK] Regression 0 make_regression.
- [OK] Regression 1 make_friedman1.
- [OK] Manifold 0 make_s_curve.
- [OK] Manifold 1 make_swiss_roll.
- [OK] Matrix 0 make_low_rank_matrix.
- [OK] Matrix 1 make_spd_matrix.
- [OK] Matrix 2 make_biclusters.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/nx-datasets.1.0.0~alpha2/_build/default/nx-datasets/test/_build/_tests/Generators'.
- Test Successful in 0.626s. 12 tests run.
Processing 2/4: [nx-datasets: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "nx-datasets" "--create-install-files" "nx-datasets" (CWD=/home/opam/.opam/5.4/.opam-switch/build/nx-datasets.1.0.0~alpha2)
-> compiled nx-datasets.1.0.0~alpha2
-> removed nx-datasets.1.0.0~alpha2
-> installed nx-datasets.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:18.43 ---> saved as "0b6f11ed17f85a5e6b8db01fdeea32aee382291253586e4ac5adc85926992538"
Job succeeded
2025-11-10 22:18.52: Job succeeded