(for PR #28827)

2025-11-10 16:57.23: 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 debian-13-ocaml-5.4/s390x

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:debian-13-ocaml-5.4@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56
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 "\"debian-13\""; 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 "\"debian-13\""; 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.23: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56-nx-datasets.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.23: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56)
 (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 \"\\\"debian-13\\\"\"; 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 \"\\\"debian-13\\\"\"; 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.23: Waiting for resource in pool OCluster
2025-11-10 16:57.24: Waiting for worker…
2025-11-10 20:49.58: Got resource from pool OCluster
Building on s390x-worker-01.marist.ci.dev
All commits already cached
Updating files:  60% (11355/18716)
Updating files:  61% (11417/18716)
Updating files:  62% (11604/18716)
Updating files:  63% (11792/18716)
Updating files:  64% (11979/18716)
Updating files:  65% (12166/18716)
Updating files:  66% (12353/18716)
Updating files:  67% (12540/18716)
Updating files:  68% (12727/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:debian-13-ocaml-5.4@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56' locally
docker.io/ocaml/opam@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56: Pulling from ocaml/opam
Digest: sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56
Status: Downloaded newer image for ocaml/opam@sha256:e733631c59aa440d951cb917a01333a4dc56571de72bc1dad952e505f36c7a56
2025-11-10 20:50.01 ---> using "7f607fe1333a418fde1f1fa32ea5abb9f9a8467bb23abdb902126755c5a37ab9" 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 20:50.01 ---> using "19b79333d48698ec318976729fdacb4233e5b2e6406062f61ed10db355fb27a7" 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.

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 20:50.01 ---> using "5eabc99465f1bcb05ea22b81f8800ee9b0b21b8422aa42848cdeac0dd2ff30d6" 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=s390x os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 3
# 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 20:50.01 ---> using "ea51346f2a1594e0e2467ec6c4862707691cb342d4b6742076d64f756a5c03af" 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 20:50.01 ---> using "91f0541461d0ae6fe50f8365130f77253e63bbf7853ceceb3d8b4134aa854fb0" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 20:50.02 ---> using "176e005fe9672164fb6d35769e7f9a72b6f8ed3d029117f73fd69a9459e63871" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 20:50.02 ---> using "e9ec2b61c00918d650d203426fab0acf47c7d7549134f718fe3cbb467f3b669b" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main s390x Packages [63.4 kB]
- Fetched 154 kB in 0s (977 kB/s)
- Reading package lists...
- 
2025-11-10 20:50.02 ---> using "569863b54bd15797e2712d47e72844f60266130ecdf66b5e3f62e36e397c4261" 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 20:50.02 ---> using "e1303233c617d6d709b81b3cdbab2b23b6f7bf738b210ecbbff2d4eb1a4c3cb1" 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 \"\\\"debian-13\\\"\"; 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"
- Selecting previously unselected package comerr-dev:s390x.
- (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 ... 20412 files and directories currently installed.)
- Preparing to unpack .../00-comerr-dev_2.1-1.47.2-3+b3_s390x.deb ...
- Unpacking comerr-dev:s390x (2.1-1.47.2-3+b3) ...
- Selecting previously unselected package libgssrpc4t64:s390x.
- Preparing to unpack .../01-libgssrpc4t64_1.21.3-5_s390x.deb ...
- Unpacking libgssrpc4t64:s390x (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:s390x.
- Preparing to unpack .../02-libkadm5clnt-mit12_1.21.3-5_s390x.deb ...
- Unpacking libkadm5clnt-mit12:s390x (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:s390x.
- Preparing to unpack .../03-libkdb5-10t64_1.21.3-5_s390x.deb ...
- Unpacking libkdb5-10t64:s390x (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:s390x.
- Preparing to unpack .../04-libkadm5srv-mit12_1.21.3-5_s390x.deb ...
- Unpacking libkadm5srv-mit12:s390x (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:s390x.
- Preparing to unpack .../05-krb5-multidev_1.21.3-5_s390x.deb ...
- Unpacking krb5-multidev:s390x (1.21.3-5) ...
- Selecting previously unselected package libblas3:s390x.
- Preparing to unpack .../06-libblas3_3.12.1-6_s390x.deb ...
- Unpacking libblas3:s390x (3.12.1-6) ...
- Selecting previously unselected package libblas-dev:s390x.
- Preparing to unpack .../07-libblas-dev_3.12.1-6_s390x.deb ...
- Unpacking libblas-dev:s390x (3.12.1-6) ...
- Selecting previously unselected package libbrotli-dev:s390x.
- Preparing to unpack .../08-libbrotli-dev_1.1.0-2+b7_s390x.deb ...
- Unpacking libbrotli-dev:s390x (1.1.0-2+b7) ...
- Selecting previously unselected package libevent-2.1-7t64:s390x.
- Preparing to unpack .../09-libevent-2.1-7t64_2.1.12-stable-10+b1_s390x.deb ...
- Unpacking libevent-2.1-7t64:s390x (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:s390x.
- Preparing to unpack .../10-libunbound8_1.22.0-2_s390x.deb ...
- Unpacking libunbound8:s390x (1.22.0-2) ...
- Selecting previously unselected package libgnutls-dane0t64:s390x.
- Preparing to unpack .../11-libgnutls-dane0t64_3.8.9-3_s390x.deb ...
- Unpacking libgnutls-dane0t64:s390x (3.8.9-3) ...
- Selecting previously unselected package libgnutls-openssl27t64:s390x.
- Preparing to unpack .../12-libgnutls-openssl27t64_3.8.9-3_s390x.deb ...
- Unpacking libgnutls-openssl27t64:s390x (3.8.9-3) ...
- Selecting previously unselected package libidn2-dev:s390x.
- Preparing to unpack .../13-libidn2-dev_2.3.8-2_s390x.deb ...
- Unpacking libidn2-dev:s390x (2.3.8-2) ...
- Selecting previously unselected package libp11-kit-dev:s390x.
- Preparing to unpack .../14-libp11-kit-dev_0.25.5-3_s390x.deb ...
- Unpacking libp11-kit-dev:s390x (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:s390x.
- Preparing to unpack .../15-libtasn1-6-dev_4.20.0-2_s390x.deb ...
- Unpacking libtasn1-6-dev:s390x (4.20.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:s390x.
- Preparing to unpack .../16-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_s390x.deb ...
- Unpacking libgmpxx4ldbl:s390x (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:s390x.
- Preparing to unpack .../17-libgmp-dev_2%3a6.3.0+dfsg-3_s390x.deb ...
- Unpacking libgmp-dev:s390x (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package nettle-dev:s390x.
- Preparing to unpack .../18-nettle-dev_3.10.1-1_s390x.deb ...
- Unpacking nettle-dev:s390x (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:s390x.
- Preparing to unpack .../19-libgnutls28-dev_3.8.9-3_s390x.deb ...
- Unpacking libgnutls28-dev:s390x (3.8.9-3) ...
- Selecting previously unselected package libkrb5-dev:s390x.
- Preparing to unpack .../20-libkrb5-dev_1.21.3-5_s390x.deb ...
- Unpacking libkrb5-dev:s390x (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:s390x.
- Preparing to unpack .../21-libldap-dev_2.6.10+dfsg-1_s390x.deb ...
- Unpacking libldap-dev:s390x (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:s390x.
- Preparing to unpack .../22-libpkgconf3_1.8.1-4_s390x.deb ...
- Unpacking libpkgconf3:s390x (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../23-pkgconf-bin_1.8.1-4_s390x.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:s390x.
- Preparing to unpack .../24-pkgconf_1.8.1-4_s390x.deb ...
- Unpacking pkgconf:s390x (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:s390x.
- Preparing to unpack .../25-libnghttp2-dev_1.64.0-1.1_s390x.deb ...
- Unpacking libnghttp2-dev:s390x (1.64.0-1.1) ...
- Selecting previously unselected package libnghttp3-dev:s390x.
- Preparing to unpack .../26-libnghttp3-dev_1.8.0-1_s390x.deb ...
- Unpacking libnghttp3-dev:s390x (1.8.0-1) ...
- Selecting previously unselected package libngtcp2-crypto-gnutls-dev:s390x.
- Preparing to unpack .../27-libngtcp2-crypto-gnutls-dev_1.11.0-1_s390x.deb ...
- Unpacking libngtcp2-crypto-gnutls-dev:s390x (1.11.0-1) ...
- Selecting previously unselected package libngtcp2-dev:s390x.
- Preparing to unpack .../28-libngtcp2-dev_1.11.0-1_s390x.deb ...
- Unpacking libngtcp2-dev:s390x (1.11.0-1) ...
- Selecting previously unselected package libpsl-dev:s390x.
- Preparing to unpack .../29-libpsl-dev_0.21.2-1.1+b1_s390x.deb ...
- Unpacking libpsl-dev:s390x (0.21.2-1.1+b1) ...
- Selecting previously unselected package zlib1g-dev:s390x.
- Preparing to unpack .../30-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_s390x.deb ...
- Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package librtmp-dev:s390x.
- Preparing to unpack .../31-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_s390x.deb ...
- Unpacking librtmp-dev:s390x (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssl-dev:s390x.
- Preparing to unpack .../32-libssl-dev_3.5.1-1+deb13u1_s390x.deb ...
- Unpacking libssl-dev:s390x (3.5.1-1+deb13u1) ...
- Selecting previously unselected package libssh2-1-dev:s390x.
- Preparing to unpack .../33-libssh2-1-dev_1.11.1-1_s390x.deb ...
- Unpacking libssh2-1-dev:s390x (1.11.1-1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:s390x.
- Preparing to unpack .../34-libcurl4-gnutls-dev_8.14.1-2_s390x.deb ...
- Unpacking libcurl4-gnutls-dev:s390x (8.14.1-2) ...
- Selecting previously unselected package libgfortran5:s390x.
- Preparing to unpack .../35-libgfortran5_14.2.0-19_s390x.deb ...
- Unpacking libgfortran5:s390x (14.2.0-19) ...
- Selecting previously unselected package libopenblas0-pthread:s390x.
- Preparing to unpack .../36-libopenblas0-pthread_0.3.29+ds-3_s390x.deb ...
- Unpacking libopenblas0-pthread:s390x (0.3.29+ds-3) ...
- Selecting previously unselected package liblapack3:s390x.
- Preparing to unpack .../37-liblapack3_3.12.1-6_s390x.deb ...
- Unpacking liblapack3:s390x (3.12.1-6) ...
- Selecting previously unselected package libopenblas-pthread-dev:s390x.
- Preparing to unpack .../38-libopenblas-pthread-dev_0.3.29+ds-3_s390x.deb ...
- Unpacking libopenblas-pthread-dev:s390x (0.3.29+ds-3) ...
- Selecting previously unselected package liblapack-dev:s390x.
- Preparing to unpack .../39-liblapack-dev_3.12.1-6_s390x.deb ...
- Unpacking liblapack-dev:s390x (3.12.1-6) ...
- Selecting previously unselected package libtmglib3:s390x.
- Preparing to unpack .../40-libtmglib3_3.12.1-6_s390x.deb ...
- Unpacking libtmglib3:s390x (3.12.1-6) ...
- Selecting previously unselected package liblapacke:s390x.
- Preparing to unpack .../41-liblapacke_3.12.1-6_s390x.deb ...
- Unpacking liblapacke:s390x (3.12.1-6) ...
- Selecting previously unselected package libtmglib-dev:s390x.
- Preparing to unpack .../42-libtmglib-dev_3.12.1-6_s390x.deb ...
- Unpacking libtmglib-dev:s390x (3.12.1-6) ...
- Selecting previously unselected package liblapacke-dev:s390x.
- Preparing to unpack .../43-liblapacke-dev_3.12.1-6_s390x.deb ...
- Unpacking liblapacke-dev:s390x (3.12.1-6) ...
- Selecting previously unselected package libopenblas0:s390x.
- Preparing to unpack .../44-libopenblas0_0.3.29+ds-3_s390x.deb ...
- Unpacking libopenblas0:s390x (0.3.29+ds-3) ...
- Selecting previously unselected package libopenblas-dev:s390x.
- Preparing to unpack .../45-libopenblas-dev_0.3.29+ds-3_s390x.deb ...
- Unpacking libopenblas-dev:s390x (0.3.29+ds-3) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../46-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Selecting previously unselected package pkg-config:s390x.
- Preparing to unpack .../47-pkg-config_1.8.1-4_s390x.deb ...
- Unpacking pkg-config:s390x (1.8.1-4) ...
- Setting up libgnutls-openssl27t64:s390x (3.8.9-3) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libevent-2.1-7t64:s390x (2.1.12-stable-10+b1) ...
- Setting up libngtcp2-crypto-gnutls-dev:s390x (1.11.0-1) ...
- Setting up libngtcp2-dev:s390x (1.11.0-1) ...
- Setting up libpsl-dev:s390x (0.21.2-1.1+b1) ...
- Setting up libblas3:s390x (3.12.1-6) ...
- update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode
- Setting up libunbound8:s390x (1.22.0-2) ...
- Setting up libpkgconf3:s390x (1.8.1-4) ...
- Setting up libgmpxx4ldbl:s390x (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:s390x (3.8.9-3) ...
- Setting up libgssrpc4t64:s390x (1.21.3-5) ...
- Setting up libldap-dev:s390x (2.6.10+dfsg-1) ...
- Setting up comerr-dev:s390x (2.1-1.47.2-3+b3) ...
- Setting up libssl-dev:s390x (3.5.1-1+deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libidn2-dev:s390x (2.3.8-2) ...
- Setting up libgfortran5:s390x (14.2.0-19) ...
- Setting up libnghttp3-dev:s390x (1.8.0-1) ...
- Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libtasn1-6-dev:s390x (4.20.0-2) ...
- Setting up libbrotli-dev:s390x (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:s390x (0.25.5-3) ...
- Setting up libblas-dev:s390x (3.12.1-6) ...
- update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode
- Setting up libkadm5clnt-mit12:s390x (1.21.3-5) ...
- Setting up liblapack3:s390x (3.12.1-6) ...
- update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode
- Setting up libopenblas0-pthread:s390x (0.3.29+ds-3) ...
- update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/s390x-linux-gnu/libopenblas.so.0 (libopenblas.so.0-s390x-linux-gnu) in auto mode
- Setting up libgmp-dev:s390x (2:6.3.0+dfsg-3) ...
- Setting up nettle-dev:s390x (3.10.1-1) ...
- Setting up libkdb5-10t64:s390x (1.21.3-5) ...
- Setting up pkgconf:s390x (1.8.1-4) ...
- Setting up libtmglib3:s390x (3.12.1-6) ...
- Setting up liblapack-dev:s390x (3.12.1-6) ...
- update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode
- Setting up pkg-config:s390x (1.8.1-4) ...
- Setting up libssh2-1-dev:s390x (1.11.1-1) ...
- Setting up libopenblas0:s390x (0.3.29+ds-3) ...
- Setting up liblapacke:s390x (3.12.1-6) ...
- Setting up libkadm5srv-mit12:s390x (1.21.3-5) ...
- Setting up libtmglib-dev:s390x (3.12.1-6) ...
- Setting up krb5-multidev:s390x (1.21.3-5) ...
- Setting up libopenblas-pthread-dev:s390x (0.3.29+ds-3) ...
- update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode
- update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/s390x-linux-gnu/libopenblas.so (libopenblas.so-s390x-linux-gnu) in auto mode
- Setting up libgnutls28-dev:s390x (3.8.9-3) ...
- Setting up libnghttp2-dev:s390x (1.64.0-1.1) ...
- Setting up liblapacke-dev:s390x (3.12.1-6) ...
- Setting up libkrb5-dev:s390x (1.21.3-5) ...
- Setting up libopenblas-dev:s390x (0.3.29+ds-3) ...
- Setting up librtmp-dev:s390x (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libcurl4-gnutls-dev:s390x (8.14.1-2) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> 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 stdlib-shims.0.3.0
-> installed csv.2.4
-> installed ocurl.0.9.2
-> installed dune-configurator.3.20.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 20:51.21 ---> saved as "175c534eeb2bbe56c7cb53f7822492beb6a7b5b7e070fa53db7fc1cafffd4284"

/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 astring.0.8.5
-> installed re.1.14.0
-> installed cmdliner.2.0.0
-> removed   nx-datasets.1.0.0~alpha2
-> removed   logs.0.10.0
-> installed ocaml-syntax-shims.1.0.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed nx-datasets.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 20:51.59 ---> saved as "8c62952d29eb577d49669d3b4d5aaf0031858d564087cd23c3fd9b2e3c6850de"

/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 \"\\\"debian-13\\\"\"; 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" "3" "--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_generators.exe)
- Testing `Generators'.
- This run has ID `TYUVNEJQ'.
- 
-   [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.012s. 12 tests run.
- (cd _build/default/nx-datasets/test && ./test_dataset_utils.exe)
- Testing `Dataset Utils'.
- This run has ID `F8XMFUX0'.
- 
-   [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.
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 20:52.18 ---> saved as "69fc33386eb2e9a5c1dbee4e76b5d499b140b35e9be83255bfba1b0e61a34261"
Job succeeded
2025-11-10 20:52.21: Job succeeded