(for PR #28827)

2025-11-10 16:57.20: New job: test talon.1.0.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28827/head (3adacbc6aba2762d0750bc10bb58285f6b461c46)
                              on debian-testing-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:debian-testing-ocaml-5.4@sha256:dabda907a86eb1d6c424cb20f70d1d032de47bee488069e14b432424f04cf1d6
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 talon.1.0.0~alpha2 1.0.0~alpha2
RUN opam reinstall talon.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-testing\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'talon.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 talon.1.0.0~alpha2) || true
RUN opam reinstall --with-test --verbose talon.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-testing\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'talon.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:debian-testing-ocaml-5.4@sha256:dabda907a86eb1d6c424cb20f70d1d032de47bee488069e14b432424f04cf1d6-talon.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.20: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-5.4@sha256:dabda907a86eb1d6c424cb20f70d1d032de47bee488069e14b432424f04cf1d6)
 (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 talon.1.0.0~alpha2 1.0.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall talon.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-testing\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'talon.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 talon.1.0.0~alpha2) || true"))
 (run (shell  "opam reinstall --with-test --verbose talon.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-testing\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'talon.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.49: Waiting for worker…
2025-11-10 22:17.40: Got resource from pool OCluster
Building on asteria.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:debian-testing-ocaml-5.4@sha256:dabda907a86eb1d6c424cb20f70d1d032de47bee488069e14b432424f04cf1d6)
2025-11-10 22:29.16 ---> using "729b8333126b39228f0faa530eb99b4f823032e9865c0c5d032521ec10d52b96" 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:29.16 ---> using "be00dcd45f2fd30fee99b8d55a5edb11c7b11df3dcd0c8be8150716cf947a63c" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 22:29.16 ---> using "ca69a108aed7db1981e4b6805a96124225a75f04a89a45439d962fe5aa7d6df9" 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=debian os-version=unknown
# 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:29.16 ---> using "dadc2aaa382ad339c89e1aad5a4c9b70a6e7db707017fd33b135a533b5a8fe08" 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:29.16 ---> using "981418dadd1b86cd6df8af7c9a08390705abf597a0cfc01decb5eb24d290e591" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 22:29.17 ---> using "ecce797a4d59cd7b9d8f338ec94e666a61fe097c581f17be4e5618b7574d1488" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 22:29.17 ---> using "9155e9a315ca3f72f969b565667d320936f5a0c464522083614c660d66f6ab8e" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [148 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [45.1 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-11-10-2007.45-F-2025-11-08-1405.45.pdiff [114 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-11-10-2007.45-F-2025-11-08-1405.45.pdiff [114 kB]
- Fetched 414 kB in 1s (336 kB/s)
- Reading package lists...
2025-11-10 22:29.17 ---> using "7a13ddc9df72a07569ea313bf2abaacf025381329aa29a82ff3450777a0972ed" from cache

/home/opam: (run (shell "opam pin add -k version -yn talon.1.0.0~alpha2 1.0.0~alpha2"))
talon is now pinned to version 1.0.0~alpha2
2025-11-10 22:29.17 ---> using "34e98d616b2bcd8db6cd9155baba304f62a06e0d12a22c3f9f631ee46bd5e03e" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall talon.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-testing\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'talon.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"))
talon.1.0.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
  - install base-bytes        base                  [required by csv]
  - 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 talon]
  - install dune              3.20.2                [required by talon]
  - install dune-configurator 3.20.2                [required by nx]
  - install nx                1.0.0~alpha2          [required by talon]
  - install ocamlfind         1.9.8                 [required by base-bytes]
  - install re                1.14.0                [required by talon]
  - install stdlib-shims      0.3.0                 [required by nx]
  - install talon             1.0.0~alpha2 (pinned)
  - install yojson            3.0.0                 [required by talon]

The following system packages will first need to be installed:
    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" "liblapacke-dev" "libopenblas-dev" "pkg-config" "zlib1g-dev"
- 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 ... 20800 files and directories currently installed.)
- Preparing to unpack .../00-libblas3_3.12.1-7_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-7) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../01-libblas-dev_3.12.1-7_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.12.1-7) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../02-libgfortran5_15.2.0-7_amd64.deb ...
- Unpacking libgfortran5:amd64 (15.2.0-7) ...
- Selecting previously unselected package libopenblas0-pthread:amd64.
- Preparing to unpack .../03-libopenblas0-pthread_0.3.29+ds-3_amd64.deb ...
- Unpacking libopenblas0-pthread:amd64 (0.3.29+ds-3) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../04-liblapack3_3.12.1-7_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-7) ...
- Selecting previously unselected package libopenblas-pthread-dev:amd64.
- Preparing to unpack .../05-libopenblas-pthread-dev_0.3.29+ds-3_amd64.deb ...
- Unpacking libopenblas-pthread-dev:amd64 (0.3.29+ds-3) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../06-liblapack-dev_3.12.1-7_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.12.1-7) ...
- Selecting previously unselected package libtmglib3:amd64.
- Preparing to unpack .../07-libtmglib3_3.12.1-7_amd64.deb ...
- Unpacking libtmglib3:amd64 (3.12.1-7) ...
- Selecting previously unselected package liblapacke:amd64.
- Preparing to unpack .../08-liblapacke_3.12.1-7_amd64.deb ...
- Unpacking liblapacke:amd64 (3.12.1-7) ...
- Selecting previously unselected package libtmglib-dev:amd64.
- Preparing to unpack .../09-libtmglib-dev_3.12.1-7_amd64.deb ...
- Unpacking libtmglib-dev:amd64 (3.12.1-7) ...
- Selecting previously unselected package liblapacke-dev:amd64.
- Preparing to unpack .../10-liblapacke-dev_3.12.1-7_amd64.deb ...
- Unpacking liblapacke-dev:amd64 (3.12.1-7) ...
- Selecting previously unselected package libopenblas0:amd64.
- Preparing to unpack .../11-libopenblas0_0.3.29+ds-3_amd64.deb ...
- Unpacking libopenblas0:amd64 (0.3.29+ds-3) ...
- Selecting previously unselected package libopenblas-dev:amd64.
- Preparing to unpack .../12-libopenblas-dev_0.3.29+ds-3_amd64.deb ...
- Unpacking libopenblas-dev:amd64 (0.3.29+ds-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../13-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../14-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../15-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../16-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../17-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libblas3:amd64 (3.12.1-7) ...
- 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-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgfortran5:amd64 (15.2.0-7) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libblas-dev:amd64 (3.12.1-7) ...
- 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.1-7) ...
- 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.29+ds-3) ...
- 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-4) ...
- Setting up libtmglib3:amd64 (3.12.1-7) ...
- Setting up liblapack-dev:amd64 (3.12.1-7) ...
- 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-4) ...
- Setting up libopenblas0:amd64 (0.3.29+ds-3) ...
- Setting up liblapacke:amd64 (3.12.1-7) ...
- Setting up libtmglib-dev:amd64 (3.12.1-7) ...
- Setting up libopenblas-pthread-dev:amd64 (0.3.29+ds-3) ...
- 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.1-7) ...
- Setting up libopenblas-dev:amd64 (0.3.29+ds-3) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> 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 nx.1.0.0~alpha2, talon.1.0.0~alpha2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed csv.2.4
-> installed re.1.14.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed dune-configurator.3.20.2
-> installed nx.1.0.0~alpha2
-> installed talon.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:30.05 ---> saved as "4a3864e84b54068fc6f57e6415502988e344b9896cbdc7f9d824dc9e526522cb"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test talon.1.0.0~alpha2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile talon              1.0.0~alpha2 (pinned)
=== install 8 packages
  - install   alcotest           1.9.1                 [required by talon]
  - 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   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 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 cmdliner.2.0.0
-> removed   talon.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 talon.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:30.26 ---> saved as "2d96bb4de10624ca3dec6beefe653c9553a7f5fe09c18bc894f07e52da8d160f"

/home/opam: (run (shell  "opam reinstall --with-test --verbose talon.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-testing\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'talon.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 talon 1.0.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [talon: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "talon" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/talon.1.0.0~alpha2)
- (cd _build/default/talon/test && ./test_talon_json.exe)
- Testing `Talon JSON'.
- This run has ID `V0X7735Z'.
- 
-   [OK]          Dtype Spec               0   Force all-null to Float64.
-   [OK]          Dtype Spec               1   Force string ID to Int64.
-   [OK]          Serialization            0   to_string_records.
-   [OK]          Serialization            1   to_string_columns.
-   [OK]          Serialization            2   with_nulls.
-   [OK]          Serialization            3   int null masks.
-   [OK]          Serialization            4   empty_dataframe.
-   [OK]          Serialization            5   single_row.
-   [OK]          Serialization            6   complex_types.
-   [OK]          Serialization            7   large_ints.
-   [OK]          Deserialization          0   from_string_records.
-   [OK]          Deserialization          1   from_string_columns.
-   [OK]          Deserialization          2   bool_parsing.
-   [OK]          Deserialization          3   mixed_types.
-   [OK]          Integration              0   round_trip_records.
-   [OK]          Integration              1   round_trip_columns.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/talon.1.0.0~alpha2/_build/default/talon/test/_build/_tests/Talon JSON'.
- Test Successful in 0.002s. 16 tests run.
- (cd _build/default/talon/test && ./test_talon_csv.exe)
- Testing `Talon CSV'.
- This run has ID `718KF117'.
- 
-   [OK]          Reading              0   basic.
-   [OK]          Reading              1   no_header.
-   [OK]          Reading              2   custom_sep.
-   [OK]          Reading              3   with_nulls.
-   [OK]          Reading              4   dtype_spec.
-   [OK]          Reading              5   empty.
-   [OK]          Reading              6   auto_detect.
-   [OK]          Reading              7   mixed_nulls.
-   [OK]          Reading              8   big_int_detection.
-   [OK]          Writing              0   basic.
-   [OK]          Writing              1   no_header.
-   [OK]          Writing              2   custom_sep.
-   [OK]          Writing              3   with_nulls.
-   [OK]          Integration          0   round_trip.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/talon.1.0.0~alpha2/_build/default/talon/test/_build/_tests/Talon CSV'.
- Test Successful in 0.001s. 14 tests run.
- (cd _build/default/talon/test && ./test_talon.exe)
- Testing `Talon'.
- This run has ID `UU84I6V6'.
- 
-   [OK]          Col                       0   creation.
-   [OK]          Col                       1   nulls.
-   [OK]          Col                       2   null mask.
-   [OK]          Col                       3   drop_nulls mask.
-   [OK]          Col                       4   fill_nulls mask.
-   [OK]          Creation                  0   basic.
-   [OK]          Creation                  1   empty.
-   [OK]          Columns                   0   access.
-   [OK]          Columns                   1   add_drop.
-   [OK]          Columns                   2   rename.
-   [OK]          Columns                   3   select.
-   [OK]          Null masks                0   projection.
-   [OK]          Null masks                1   concat.
-   [OK]          Null masks                2   cast.
-   [OK]          Null masks                3   pct_change.
-   [OK]          Option accessors          0   row_opt_accessors.
-   [OK]          Option accessors          1   to_options.
-   [OK]          Option accessors          2   drop_nulls.
-   [OK]          Option accessors          3   fill_missing.
-   [OK]          Option accessors          4   fillna.
-   [OK]          Option accessors          5   null_count.
-   [OK]          Option accessors          6   mask_aware_agg.
-   [OK]          Rows                      0   head_tail.
-   [OK]          Rows                      1   slice.
-   [OK]          Rows                      2   filter.
-   [OK]          Rows                      3   filter_by.
-   [OK]          Rows                      4   drop_duplicates.
-   [OK]          Concatenation             0   rows.
-   [OK]          Concatenation             1   columns.
-   [OK]          Row module                0   accessors.
-   [OK]          Row module                1   map.
-   [OK]          Sort & Group              0   sort.
-   [OK]          Sort & Group              1   group_by.
-   [OK]          Aggregations              0   float.
-   [OK]          Aggregations              1   int.
-   [OK]          Aggregations              2   string.
-   [OK]          Aggregations              3   bool.
-   [OK]          Aggregations              4   cumulative.
-   [OK]          Aggregations              5   nulls.
-   [OK]          Conversions               0   to_arrays.
-   [OK]          Conversions               1   to_nx.
-   [OK]          Conversions               2   from_nx.
-   [OK]          Conversions               3   cast_column.
-   [OK]          Edge cases                0   empty_operations.
-   [OK]          Edge cases                1   single_row.
-   [OK]          Wide operations           0   map_list product.
-   [OK]          Wide operations           1   sequence sum.
-   [OK]          Wide operations           2   weighted sum.
-   [OK]          Wide operations           3   numeric_column_names.
-   [OK]          Wide operations           4   row helpers.
-   [OK]          Wide operations           5   sequence/all equivalence.
-   [OK]          Ergonomic APIs            0   with_columns.
-   [OK]          Ergonomic APIs            1   with_columns_map.
-   [OK]          Ergonomic APIs            2   column_selectors.
-   [OK]          Ergonomic APIs            3   columns_except.
-   [OK]          Ergonomic APIs            4   Row.number.
-   [OK]          Ergonomic APIs            5   Row.fold_list.
-   [OK]          Ergonomic APIs            6   Row.Agg.sum.
-   [OK]          Ergonomic APIs            7   rowagg_sum_skipna_false.
-   [OK]          Ergonomic APIs            8   rowagg_mean_skipna_false.
-   [OK]          Ergonomic APIs            9   rowagg_min_skipna_false.
-   [OK]          Ergonomic APIs           10   rowagg_max_skipna_false.
-   [OK]          Ergonomic APIs           11   rowagg_bool_reducers.
-   [OK]          Ergonomic APIs           12   Row.Agg.dot.
-   [OK]          Join & Reshape            0   join inner.
-   [OK]          Join & Reshape            1   join left.
-   [OK]          Join & Reshape            2   merge.
-   [OK]          Join & Reshape            3   join preserves masks.
-   [OK]          Join & Reshape            4   pivot.
-   [OK]          Join & Reshape            5   pivot numeric index.
-   [OK]          Join & Reshape            6   melt.
-   [OK]          Join & Reshape            7   join with suffixes.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/talon.1.0.0~alpha2/_build/default/talon/test/_build/_tests/Talon'.
- Test Successful in 0.007s. 72 tests run.
Processing  2/4: [talon: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "talon" "--create-install-files" "talon" (CWD=/home/opam/.opam/5.4/.opam-switch/build/talon.1.0.0~alpha2)
-> compiled  talon.1.0.0~alpha2
-> removed   talon.1.0.0~alpha2
-> installed talon.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:30.31 ---> saved as "46b8c8c2ad7572d8edf4fa217738c187e22253eff26c4955fc3faabe8ea603f4"
Job succeeded
2025-11-10 22:30.42: Job succeeded