(for PR #28827)

2025-11-10 16:57.22: 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 freebsd-14.3-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 freebsd-14.3-ocaml-5.4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/local/bin/opam-dev /usr/local/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 "\"freebsd-14.3\""; 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 "\"freebsd-14.3\""; 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.22: Using cache hint "freebsd-14.3-ocaml-5.4-talon.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.22: Using OBuilder spec:
((from freebsd-14.3-ocaml-5.4)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 \"\\\"freebsd-14.3\\\"\"; 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 \"\\\"freebsd-14.3\\\"\"; 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.22: Waiting for resource in pool OCluster
2025-11-10 16:57.24: Waiting for worker…
2025-11-10 17:43.37: Got resource from pool OCluster
Building on rosemary
All commits already cached
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 freebsd-14.3-ocaml-5.4)
2025-11-10 17:43.13 ---> using "463e9b939b79b2568bf98b05cff00f85b3ec5717170cf88773a44ae3b08f11e7" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
2025-11-10 17:43.14 ---> using "0f4f38cca0f09ffdac905c0015fdbe56f9214c89e28a28ae3325cd6eed47fd99" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit -ni"))
No configuration file found, using 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.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2025-11-10 17:43.14 ---> using "430d75e95f6be08ef0776e6e6bb864bc698709d5f7d071fd7fbbf37d0a8617d5" 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.4.1
# self-upgrade         no
# system               arch=x86_64 os=freebsd os-distribution=freebsd os-version=1403000
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 39
# repositories         1 (version-controlled)
# pinned               0
# current-switch       5.4.0
# invariant            ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "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.0/lib/ocaml/stublibs:/home/opam/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2025-11-10 17:43.15 ---> using "8a5a57fecc1d42886ddc4a5b75b36583eef8196838ccdc1bf870bc7798f6f185" 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 17:43.15 ---> using "5d57b5e6a2b42d2aa72fb2cc8558fd5735263edde7f2032c7588b729f1b1565f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 17:43.22 ---> using "17786ce7a56eaa3a1beda70011b555d45ae1a7fc8cca42d60ea0bd1723a7d70b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 17:43.42 ---> saved as "cef7c808bde8f986d6c220883ee035469010ca4d50231e113ff17ba642053169"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
[WARNING] Unknown update command for bsd, skipping system update
2025-11-10 17:43.44 ---> saved as "4602dece75a469ef7753ae2d9787d116fc2a5b304e060dba8e9fc3773855647b"

/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 17:43.46 ---> saved as "0bdb84115e7559d8dd8d9f1faffa2ef3448832c2ae573b39cd7c54a8c7a1986e"

/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 \"\\\"freebsd-14.3\\\"\"; 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
  ∗ base-bytes        base                  [required by csv]
  ∗ conf-pkg-config   4                     [required by nx]
  ∗ conf-zlib         1                     [required by nx]
  ∗ csexp             1.5.2                 [required by dune-configurator]
  ∗ csv               2.4                   [required by talon]
  ∗ dune              3.20.2                [required by talon]
  ∗ dune-configurator 3.20.2                [required by nx]
  ∗ nx                1.0.0~alpha2          [required by talon]
  ∗ ocamlfind         1.9.8                 [required by base-bytes]
  ∗ re                1.14.0                [required by talon]
  ∗ stdlib-shims      0.3.0                 [required by nx]
  ∗ talon             1.0.0~alpha2 (pinned)
  ∗ yojson            3.0.0                 [required by talon]

The following system packages will first need to be installed:
    lapacke openblas

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

opam believes some required external dependencies are missing. opam can:
> 1. Run pkg to install them (may need root/sudo access)
  2. Display the recommended pkg 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/local/bin/sudo "pkg" "install" "-y" "lapacke" "openblas"
- Updating FreeBSD repository catalogue...
- [rosemary] Fetching data.pkg: .
- ..
- ..
- ..
- .
- .. done
- Processing entries: 
- .
- .
- ..
- ..
- ..
- .
- . done
- FreeBSD repository update completed. 36638 packages processed.
- Updating FreeBSD-kmods repository catalogue...
- [rosemary] Fetching data.pkg: .. done
- Processing entries: .......... done
- FreeBSD-kmods repository update completed. 213 packages processed.
- All repositories are up to date.
- New version of pkg detected; it needs to be installed first.
- The following 1 package(s) will be affected (of 0 checked):
- 
- Installed packages to be UPGRADED:
- 	pkg: 2.3.1 -> 2.3.1_1 [FreeBSD]
- 
- Number of packages to be upgraded: 1
- 
- 12 MiB to be downloaded.
- [rosemary] [1/1] Fetching pkg-2.3.1_1.pkg: .
- .
- .
- .
- .
- .
- ..
- .
- . done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/1] Upgrading pkg from 2.3.1 to 2.3.1_1...
- [rosemary] [1/1] Extracting pkg-2.3.1_1: .
- ........
- . done
- Updating FreeBSD repository catalogue...
- FreeBSD repository is up to date.
- Updating FreeBSD-kmods repository catalogue...
- FreeBSD-kmods repository is up to date.
- All repositories are up to date.
- The following 9 package(s) will be affected (of 0 checked):
- 
- New packages to be INSTALLED:
- 	binutils: 2.44,1 [FreeBSD]
- 	blas: 3.12.1 [FreeBSD]
- 	gcc13: 13.3.0_3 [FreeBSD]
- 	gmp: 6.3.0 [FreeBSD]
- 	lapack: 3.12.1 [FreeBSD]
- 	lapacke: 3.12.1 [FreeBSD]
- 	mpc: 1.3.1_1 [FreeBSD]
- 	mpfr: 4.2.2,1 [FreeBSD]
- 	openblas: 0.3.30,2 [FreeBSD]
- 
- Number of packages to be installed: 9
- 
- The process will require 573 MiB more space.
- 119 MiB to be downloaded.
- [rosemary] [1/9] Fetching mpc-1.3.1_1.pkg: ......
- . done
- [rosemary] [2/9] Fetching lapacke-3.12.1.pkg: .......... done
- [rosemary] [3/9] Fetching lapack-3.12.1.pkg: 
- ..
- .
- .
- .
- .
- .
- .
- .
- . done
- [rosemary] [4/9] Fetching gcc13-13.3.0_3.pkg: 
- .
- .
- .
- .
- .
- .
- .
- .
- .
- . done
- [rosemary] [5/9] Fetching blas-3.12.1.pkg: .......... done
- [rosemary] [6/9] Fetching mpfr-4.2.2,1.pkg: .......... done
- [rosemary] [7/9] Fetching gmp-6.3.0.pkg: .......... done
- [rosemary] [8/9] Fetching binutils-2.44,1.pkg: 
- ..
- ..
- ...
- ..
- . done
- [rosemary] [9/9] Fetching openblas-0.3.30,2.pkg: 
- ..
- .
- .
- ..
- .
- ..
- . done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/9] Installing binutils-2.44,1...
- [rosemary] [1/9] Extracting binutils-2.44,1: 
- .......... done
- [rosemary] [2/9] Installing gmp-6.3.0...
- [rosemary] [2/9] Extracting gmp-6.3.0: .......... done
- [rosemary] [3/9] Installing mpfr-4.2.2,1...
- [rosemary] [3/9] Extracting mpfr-4.2.2,1: .......... done
- [rosemary] [4/9] Installing mpc-1.3.1_1...
- [rosemary] [4/9] Extracting mpc-1.3.1_1: ......... done
- [rosemary] [5/9] Installing gcc13-13.3.0_3...
- [rosemary] [5/9] Extracting gcc13-13.3.0_3: 
- .........
- . done
- [rosemary] [6/9] Installing blas-3.12.1...
- [rosemary] [6/9] Extracting blas-3.12.1: ........ done
- [rosemary] [7/9] Installing lapack-3.12.1...
- [rosemary] [7/9] Extracting lapack-3.12.1: ..
- .......
- . done
- [rosemary] [8/9] Installing lapacke-3.12.1...
- [rosemary] [8/9] Extracting lapacke-3.12.1: .......... done
- [rosemary] [9/9] Installing openblas-0.3.30,2...
- [rosemary] [9/9] Extracting openblas-0.3.30,2: .......... done
- =====
- Message from gcc13-13.3.0_3:
- 
- --
- To ensure binaries built with this toolchain find appropriate versions
- of the necessary run-time libraries, you may want to link using
- 
-   -Wl,-rpath=/usr/local/lib/gcc13
- 
- For ports leveraging USE_GCC, USES=compiler, or USES=fortran this happens
- transparently.

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
∗ installed conf-pkg-config.4
∗ installed conf-zlib.1
⬇ retrieved csexp.1.5.2  (cached)
⬇ retrieved csv.2.4  (cached)
⬇ retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
⬇ retrieved nx.1.0.0~alpha2, talon.1.0.0~alpha2  (https://github.com/raven-ml/raven/releases/download/1.0.0_alpha2/raven-1.0.0.alpha2.tbz)
⬇ 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 yojson.3.0.0
∗ installed stdlib-shims.0.3.0
∗ installed re.1.14.0
∗ installed csv.2.4
∗ installed dune-configurator.3.20.2
∗ installed nx.1.0.0~alpha2
∗ installed talon.1.0.0~alpha2
Done.
2025-11-10 17:48.21 ---> saved as "d194cfb983700684bc8443eff9c41495fe441f0c49bdc310c07846a02511f91c"

/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
  ↻ talon              1.0.0~alpha2 (pinned)
=== install 8 packages
  ∗ alcotest           1.9.1                 [required by talon]
  ∗ astring            0.8.5                 [required by alcotest]
  ∗ cmdliner           2.0.0                 [required by alcotest]
  ∗ fmt                0.11.0                [required by alcotest]
  ∗ ocaml-syntax-shims 1.0.0                 [required by alcotest]
  ∗ ocamlbuild         0.16.1                [required by fmt, astring, uutf]
  ∗ topkg              1.1.1                 [required by fmt, astring, uutf]
  ∗ uutf               1.0.4                 [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.1  (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
⬇ retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
⬇ retrieved cmdliner.2.0.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-2.0.0.tbz)
⬇ retrieved fmt.0.11.0  (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
⬇ retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
⬇ retrieved ocamlbuild.0.16.1  (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
⬇ retrieved topkg.1.1.1  (https://erratique.ch/software/topkg/releases/topkg-1.1.1.tbz)
∗ installed ocaml-syntax-shims.1.0.0
⬇ retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
∗ 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.
2025-11-10 17:48.53 ---> saved as "0f0bc15c2066785389a7ace952c9a883f93b0c9636deaa4de89c77c5549b88bf"

/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 \"\\\"freebsd-14.3\\\"\"; 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
  ↻ talon 1.0.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [talon: dune build]
+ /home/opam/.opam/5.4.0/bin/dune "build" "-p" "talon" "-j" "39" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4.0/.opam-switch/build/talon.1.0.0~alpha2)
- (cd _build/default/talon/test && ./test_talon_csv.exe)
- Testing `Talon CSV'.
- This run has ID `M73Q35OL'.
- 
-   [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.0/.opam-switch/build/talon.1.0.0~alpha2/_build/default/talon/test/_build/_tests/Talon CSV'.
- Test Successful in 0.002s. 14 tests run.
- (cd _build/default/talon/test && ./test_talon_json.exe)
- Testing `Talon JSON'.
- This run has ID `0NLR4R6B'.
- 
-   [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.0/.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.exe)
- Testing `Talon'.
- This run has ID `VJKGYJV5'.
- 
-   [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.0/.opam-switch/build/talon.1.0.0~alpha2/_build/default/talon/test/_build/_tests/Talon'.
- Test Successful in 0.858s. 72 tests run.
Processing  2/4: [talon: dune install]
+ /home/opam/.opam/5.4.0/bin/dune "install" "-p" "talon" "--create-install-files" "talon" (CWD=/home/opam/.opam/5.4.0/.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.
2025-11-10 17:49.00 ---> saved as "067dd2a311344ade664afa7241186fdd0091bcc37dc27751388b356838c38026"
Job succeeded
2025-11-10 17:49.52: Job succeeded