(for PR #28827)

2025-11-10 16:57.21: New job: test fehu.1.0.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28827/head (3adacbc6aba2762d0750bc10bb58285f6b461c46)
                              on debian-12-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-12-ocaml-5.4@sha256:b06e95244653b7a10c9a86ab3afe50b0d4203193f93120443e4f87ab11d1c528
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 fehu.1.0.0~alpha2 1.0.0~alpha2
RUN opam reinstall fehu.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'fehu.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 fehu.1.0.0~alpha2) || true
RUN opam reinstall --with-test --verbose fehu.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'fehu.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.21: Using cache hint "ocaml/opam:debian-12-ocaml-5.4@sha256:b06e95244653b7a10c9a86ab3afe50b0d4203193f93120443e4f87ab11d1c528-fehu.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.21: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.4@sha256:b06e95244653b7a10c9a86ab3afe50b0d4203193f93120443e4f87ab11d1c528)
 (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 fehu.1.0.0~alpha2 1.0.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall fehu.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'fehu.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 fehu.1.0.0~alpha2) || true"))
 (run (shell  "opam reinstall --with-test --verbose fehu.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'fehu.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.21: Waiting for resource in pool OCluster
2025-11-10 22:15.04: Waiting for worker…
2025-11-10 22:20.05: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  64% (12073/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-12-ocaml-5.4@sha256:b06e95244653b7a10c9a86ab3afe50b0d4203193f93120443e4f87ab11d1c528)
2025-11-10 22:20.09 ---> using "40a5f920114c3166be147678f3cb19bcdfdf558acba15096b01715581d62a6e1" 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:20.09 ---> using "2696122241c721011066a19576abf82dd23ed83bcfdbdd197354bce879d1a3bd" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=255 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 22:20.09 ---> using "b1041548d5751485838d428ccb97f8745f236caa478cbf45d5d1ab084c707045" 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=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2025-11-10 22:20.09 ---> using "5a820389bfbd88c76036f955421aaa6513a50a3f87dec1234340792ce2b581ca" 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:20.09 ---> using "247b7f2dca645bb89b55e6c225e23dd64a94fd2b594d114113db77640e3a5885" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 22:20.11 ---> using "a2aa113bda4147cd8dad5a0863d4bcce6d8a39e4e40d00f91feb1da00f772423" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Fetched 103 kB in 1s (201 kB/s)
- Reading package lists...
- 
2025-11-10 22:20.11 ---> using "357db0f905e5d5e7699599ff6e6b84ca182d3c6b2f54ec45aa7e7729e3636504" from cache

/home/opam: (run (shell "opam pin add -k version -yn fehu.1.0.0~alpha2 1.0.0~alpha2"))
fehu is now pinned to version 1.0.0~alpha2
2025-11-10 22:20.12 ---> saved as "3238180f282b3b165affb906431155ef8c4aedf7c934abb241ec0fd5cf3567c3"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall fehu.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'fehu.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"))
fehu.1.0.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 37 packages
  - install backoff            0.1.1                 [required by saturn]
  - install base-bytes         base                  [required by csv]
  - install bigarray-compat    1.1.0                 [required by ctypes]
  - install conf-bash          1                     [required by conf-llvm-static]
  - install conf-libcurl       2                     [required by ocurl]
  - install conf-libffi        2.0.0                 [required by ctypes-foreign]
  - install conf-llvm-static   19                    [required by rune]
  - install conf-pkg-config    4                     [required by nx, ctypes-foreign]
  - 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 ctypes             0.23.0                [required by rune]
  - install ctypes-foreign     0.23.0                [required by rune]
  - install domain-local-await 1.0.1                 [required by domainslib]
  - install domainslib         0.5.2                 [required by kaun]
  - install dune               3.20.2                [required by fehu]
  - install dune-configurator  3.20.2                [required by rune]
  - install fehu               1.0.0~alpha2 (pinned)
  - install integers           0.7.0                 [required by ctypes]
  - install kaun               1.0.0~alpha2          [required by fehu]
  - install logs               0.10.0                [required by kaun]
  - install multicore-magic    2.3.1                 [required by saturn]
  - install nx                 1.0.0~alpha2          [required by rune, nx-datasets, saga]
  - install nx-datasets        1.0.0~alpha2          [required by kaun]
  - install ocamlbuild         0.16.1                [required by logs]
  - install ocamlfind          1.9.8                 [required by logs]
  - install ocurl              0.9.2                 [required by nx-datasets]
  - install re                 1.14.0                [required by saga]
  - install rune               1.0.0~alpha2          [required by fehu]
  - install saga               1.0.0~alpha2          [required by kaun]
  - install saturn             1.0.0                 [required by domainslib]
  - install stdlib-shims       0.3.0                 [required by nx]
  - install thread-table       1.0.0                 [required by domain-local-await]
  - install topkg              1.1.1                 [required by logs]
  - install uucp               17.0.0                [required by saga]
  - install uutf               1.0.4                 [required by saga]
  - install yojson             3.0.0                 [required by fehu]

The following system packages will first need to be installed:
    libcurl4-gnutls-dev libffi-dev liblapacke-dev libopenblas-dev llvm-19-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" "libffi-dev" "liblapacke-dev" "libopenblas-dev" "llvm-19-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpipeline1: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 ... 18784 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.7-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.7-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-2_amd64.deb ...
- Unpacking binfmt-support (2.2.2-2) ...
- Selecting previously unselected package libpython3.11-minimal:amd64.
- Preparing to unpack .../libpython3.11-minimal_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3.11-minimal.
- Preparing to unpack .../python3.11-minimal_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking python3.11-minimal (3.11.2-6+deb12u6) ...
- Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ...
- Setting up python3.11-minimal (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3-minimal.
- (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 ... 19113 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ...
- Unpacking python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_10.0.0_all.deb ...
- Unpacking media-types (10.0.0) ...
- Selecting previously unselected package libpython3.11-stdlib:amd64.
- Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3.11.
- Preparing to unpack .../python3.11_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking python3.11 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package python3.
- (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 ... 19523 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.11.2-1+b1_amd64.deb ...
- Unpacking python3 (3.11.2-1+b1) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../01-libicu72_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../02-icu-devtools_72.1-3+deb12u1_amd64.deb ...
- Unpacking icu-devtools (72.1-3+deb12u1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../03-libblas3_3.11.0-2_amd64.deb ...
- Unpacking libblas3:amd64 (3.11.0-2) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../04-libblas-dev_3.11.0-2_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.11.0-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../05-libxml2_2.9.14+dfsg-1.3~deb12u4_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u4) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../06-libz3-4_4.8.12-3.1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.8.12-3.1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../07-libllvm19_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package libclang-cpp19.
- Preparing to unpack .../08-libclang-cpp19_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking libclang-cpp19 (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../09-libcurl4-gnutls-dev_7.88.1-10+deb12u14_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (7.88.1-10+deb12u14) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../10-libffi-dev_3.4.4-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.4-1) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../11-libgfortran5_12.2.0-14+deb12u1_amd64.deb ...
- Unpacking libgfortran5:amd64 (12.2.0-14+deb12u1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../12-libicu-dev_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu-dev:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package libopenblas0-pthread:amd64.
- Preparing to unpack .../13-libopenblas0-pthread_0.3.21+ds-4_amd64.deb ...
- Unpacking libopenblas0-pthread:amd64 (0.3.21+ds-4) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../14-liblapack3_3.11.0-2_amd64.deb ...
- Unpacking liblapack3:amd64 (3.11.0-2) ...
- Selecting previously unselected package libopenblas-pthread-dev:amd64.
- Preparing to unpack .../15-libopenblas-pthread-dev_0.3.21+ds-4_amd64.deb ...
- Unpacking libopenblas-pthread-dev:amd64 (0.3.21+ds-4) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../16-liblapack-dev_3.11.0-2_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.11.0-2) ...
- Selecting previously unselected package libtmglib3:amd64.
- Preparing to unpack .../17-libtmglib3_3.11.0-2_amd64.deb ...
- Unpacking libtmglib3:amd64 (3.11.0-2) ...
- Selecting previously unselected package liblapacke:amd64.
- Preparing to unpack .../18-liblapacke_3.11.0-2_amd64.deb ...
- Unpacking liblapacke:amd64 (3.11.0-2) ...
- Selecting previously unselected package libtmglib-dev:amd64.
- Preparing to unpack .../19-libtmglib-dev_3.11.0-2_amd64.deb ...
- Unpacking libtmglib-dev:amd64 (3.11.0-2) ...
- Selecting previously unselected package liblapacke-dev:amd64.
- Preparing to unpack .../20-liblapacke-dev_3.11.0-2_amd64.deb ...
- Unpacking liblapacke-dev:amd64 (3.11.0-2) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../21-libncurses6_6.4-4_amd64.deb ...
- Unpacking libncurses6:amd64 (6.4-4) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../22-libncurses-dev_6.4-4_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.4-4) ...
- Selecting previously unselected package libopenblas0:amd64.
- Preparing to unpack .../23-libopenblas0_0.3.21+ds-4_amd64.deb ...
- Unpacking libopenblas0:amd64 (0.3.21+ds-4) ...
- Selecting previously unselected package libopenblas-dev:amd64.
- Preparing to unpack .../24-libopenblas-dev_0.3.21+ds-4_amd64.deb ...
- Unpacking libopenblas-dev:amd64 (0.3.21+ds-4) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../25-libpfm4_4.13.0-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../26-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../27-libxml2-dev_2.9.14+dfsg-1.3~deb12u4_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u4) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../28-libyaml-0-2_0.2.5-1_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-1) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../29-libz3-dev_4.8.12-3.1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.8.12-3.1) ...
- Selecting previously unselected package llvm-19-runtime.
- Preparing to unpack .../30-llvm-19-runtime_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking llvm-19-runtime (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package llvm-19-linker-tools.
- Preparing to unpack .../31-llvm-19-linker-tools_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking llvm-19-linker-tools (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package llvm-19.
- Preparing to unpack .../32-llvm-19_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking llvm-19 (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package python3-pkg-resources.
- Preparing to unpack .../33-python3-pkg-resources_66.1.1-1+deb12u2_all.deb ...
- Unpacking python3-pkg-resources (66.1.1-1+deb12u2) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../34-python3-pygments_2.14.0+dfsg-1_all.deb ...
- Unpacking python3-pygments (2.14.0+dfsg-1) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../35-python3-yaml_6.0-3+b2_amd64.deb ...
- Unpacking python3-yaml (6.0-3+b2) ...
- Selecting previously unselected package llvm-19-tools.
- Preparing to unpack .../36-llvm-19-tools_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking llvm-19-tools (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package llvm-19-dev.
- Preparing to unpack .../37-llvm-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ...
- Unpacking llvm-19-dev (1:19.1.7-3~deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../38-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../39-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../40-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../41-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up media-types (10.0.0) ...
- Setting up libpipeline1:amd64 (1.5.7-1) ...
- Setting up libicu72:amd64 (72.1-3+deb12u1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-1) ...
- Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Setting up libcurl4-gnutls-dev:amd64 (7.88.1-10+deb12u14) ...
- Setting up libffi-dev:amd64 (3.4.4-1) ...
- Setting up libz3-4:amd64 (4.8.12-3.1) ...
- Setting up libblas3:amd64 (3.11.0-2) ...
- 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-1) ...
- Setting up libpfm4:amd64 (4.13.0-1) ...
- Setting up libncurses6:amd64 (6.4-4) ...
- Setting up binfmt-support (2.2.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up icu-devtools (72.1-3+deb12u1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgfortran5:amd64 (12.2.0-14+deb12u1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libicu-dev:amd64 (72.1-3+deb12u1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u4) ...
- Setting up libblas-dev:amd64 (3.11.0-2) ...
- 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 libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up libllvm19:amd64 (1:19.1.7-3~deb12u1) ...
- Setting up libz3-dev:amd64 (4.8.12-3.1) ...
- Setting up python3.11 (3.11.2-6+deb12u6) ...
- Setting up liblapack3:amd64 (3.11.0-2) ...
- 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 libncurses-dev:amd64 (6.4-4) ...
- Setting up libopenblas0-pthread:amd64 (0.3.21+ds-4) ...
- 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 python3 (3.11.2-1+b1) ...
- running python rtupdate hooks for python3.11...
- running python post-rtupdate hooks for python3.11...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u4) ...
- Setting up libtmglib3:amd64 (3.11.0-2) ...
- Setting up liblapack-dev:amd64 (3.11.0-2) ...
- 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-1) ...
- Setting up libopenblas0:amd64 (0.3.21+ds-4) ...
- Setting up liblapacke:amd64 (3.11.0-2) ...
- Setting up llvm-19-linker-tools (1:19.1.7-3~deb12u1) ...
- Setting up libtmglib-dev:amd64 (3.11.0-2) ...
- Setting up llvm-19-runtime (1:19.1.7-3~deb12u1) ...
- Setting up libclang-cpp19 (1:19.1.7-3~deb12u1) ...
- Setting up python3-pkg-resources (66.1.1-1+deb12u2) ...
- Setting up libopenblas-pthread-dev:amd64 (0.3.21+ds-4) ...
- 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 python3-yaml (6.0-3+b2) ...
- Setting up liblapacke-dev:amd64 (3.11.0-2) ...
- Setting up libopenblas-dev:amd64 (0.3.21+ds-4) ...
- Setting up python3-pygments (2.14.0+dfsg-1) ...
- Setting up llvm-19 (1:19.1.7-3~deb12u1) ...
- Setting up llvm-19-tools (1:19.1.7-3~deb12u1) ...
- Setting up llvm-19-dev (1:19.1.7-3~deb12u1) ...
- Processing triggers for libc-bin (2.36-9+deb12u13) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved conf-llvm-static.19  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved csv.2.4  (cached)
-> installed conf-bash.1
-> installed conf-libcurl.2
-> installed conf-pkg-config.4
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0  (cached)
-> installed conf-llvm-static.19
-> installed conf-libffi.2.0.0
-> installed conf-zlib.1
-> retrieved domain-local-await.1.0.1  (cached)
-> retrieved domainslib.0.5.2  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved fehu.1.0.0~alpha2, kaun.1.0.0~alpha2, nx.1.0.0~alpha2, nx-datasets.1.0.0~alpha2, rune.1.0.0~alpha2, saga.1.0.0~alpha2  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved multicore-magic.2.3.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved saturn.1.0.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved thread-table.1.0.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (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 uutf.1.0.4
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed thread-table.1.0.0
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed backoff.0.1.1
-> installed csv.2.4
-> installed multicore-magic.2.3.1
-> installed integers.0.7.0
-> installed domain-local-await.1.0.1
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed saturn.1.0.0
-> installed domainslib.0.5.2
-> installed dune-configurator.3.20.2
-> installed ocurl.0.9.2
-> installed ctypes.0.23.0
-> installed ctypes-foreign.0.23.0
-> installed uucp.17.0.0
-> installed nx.1.0.0~alpha2
-> installed nx-datasets.1.0.0~alpha2
-> installed saga.1.0.0~alpha2
-> installed rune.1.0.0~alpha2
-> installed kaun.1.0.0~alpha2
-> installed fehu.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:24.40 ---> saved as "6e7b29d2a56676ef35484d028ba1cab47052f55c356c9385e27794a5ad2ecd81"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test fehu.1.0.0~alpha2) || true"))
The following actions will be performed:
=== recompile 7 packages
  - recompile fehu               1.0.0~alpha2 (pinned)
  - recompile kaun               1.0.0~alpha2          [uses logs]
  - recompile logs               0.10.0                [uses cmdliner]
  - recompile nx-datasets        1.0.0~alpha2          [uses logs]
  - recompile saga               1.0.0~alpha2          [uses uucp, uutf]
  - recompile uucp               17.0.0                [uses cmdliner]
  - recompile uutf               1.0.4                 [uses cmdliner]
=== install 5 packages
  - install   alcotest           1.9.1                 [required by fehu]
  - 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]

<><> 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)
-> installed astring.0.8.5
-> retrieved fehu.1.0.0~alpha2, kaun.1.0.0~alpha2, nx-datasets.1.0.0~alpha2, saga.1.0.0~alpha2  (https://github.com/raven-ml/raven/releases/download/1.0.0_alpha2/raven-1.0.0.alpha2.tbz)
-> 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 uucp.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.0.0
-> removed   fehu.1.0.0~alpha2
-> removed   kaun.1.0.0~alpha2
-> removed   nx-datasets.1.0.0~alpha2
-> removed   logs.0.10.0
-> removed   saga.1.0.0~alpha2
-> removed   uucp.17.0.0
-> removed   uutf.1.0.4
-> installed ocaml-syntax-shims.1.0.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed nx-datasets.1.0.0~alpha2
-> installed uucp.17.0.0
-> installed saga.1.0.0~alpha2
-> installed kaun.1.0.0~alpha2
-> installed fehu.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:25.56 ---> saved as "efacd466188e34c0e53d4855ff47abcc24847925c9d7545bf3d61d5920a3d60b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [fehu: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "fehu" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2)
- (cd _build/default/fehu/test && ./test_env.exe)
- Testing `Env'.
- This run has ID `F2WSXC4K'.
- 
-   [OK]          Creation           0   create env.
-   [OK]          Creation           1   env spaces.
-   [OK]          Lifecycle          0   reset env.
-   [OK]          Lifecycle          1   step env.
-   [OK]          Lifecycle          2   episode termination.
-   [OK]          Lifecycle          3   close env.
-   [OK]          Metadata           0   metadata operations.
-   [OK]          Metadata           1   rng operations.
-   [OK]          Metadata           2   split rng.
-   [OK]          Utilities          0   render.
-   [OK]          Utilities          1   transition builder.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Env'.
- Test Successful in 0.002s. 11 tests run.
- (cd _build/default/fehu/test && ./test_trajectory.exe)
- Testing `Trajectory'.
- This run has ID `YQOI4A1W'.
- 
-   [OK]          Creation            0   create trajectory.
-   [OK]          Creation            1   create with log_probs and values.
-   [OK]          Creation            2   concatenate trajectories.
-   [OK]          Collection          0   collect steps.
-   [OK]          Collection          1   collect episodes.
-   [OK]          Collection          2   collect episodes with max_steps.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Trajectory'.
- Test Successful in 0.018s. 6 tests run.
- (cd _build/default/fehu/test && ./test_space.exe)
- Testing `Space'.
- This run has ID `SH8DPR8S'.
- 
-   [OK]          Discrete               0   basic discrete space.
-   [OK]          Discrete               1   discrete with start offset.
-   [OK]          Box                    0   1D box space.
-   [OK]          Box                    1   multidimensional box.
-   [OK]          Multi                  0   multi-binary space.
-   [OK]          Multi                  1   multi-discrete space.
-   [OK]          Composite              0   tuple space.
-   [OK]          Composite              1   dict space.
-   [OK]          Composite              2   sequence space.
-   [OK]          Composite              3   sequence space unbounded.
-   [OK]          Text                   0   text space.
-   [OK]          Text                   1   text with custom charset.
-   [OK]          Serialization          0   pack/unpack.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Space'.
- Test Successful in 0.009s. 13 tests run.
- (cd _build/default/fehu/test && ./test_training.exe)
- Testing `Training'.
- This run has ID `VGDJAMSF'.
- 
-   [OK]          Advantage Estimation          0   compute GAE.
-   [OK]          Advantage Estimation          1   compute GAE with bootstrap.
-   [OK]          Advantage Estimation          2   compute returns.
-   [OK]          Loss Functions                0   policy gradient loss.
-   [OK]          Loss Functions                1   policy gradient loss (no no...
-   [OK]          Loss Functions                2   PPO clip loss.
-   [OK]          Loss Functions                3   value loss.
-   [OK]          Loss Functions                4   value loss (clipped).
-   [OK]          Utilities                     0   normalize.
-   [OK]          Utilities                     1   explained variance.
-   [OK]          Evaluation                    0   evaluate policy.
-   [OK]          Evaluation                    1   evaluate updates observation.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Training'.
- Test Successful in 0.002s. 12 tests run.
- (cd _build/default/fehu/test && ./test_buffer.exe)
- Testing `Buffer'.
- This run has ID `9KWTY3PY'.
- 
-   [OK]          Replay           0   create replay buffer.
-   [OK]          Replay           1   add and sample.
-   [OK]          Replay           2   add_many.
-   [OK]          Replay           3   circular buffer behavior.
-   [OK]          Replay           4   clear buffer.
-   [OK]          Rollout          0   create rollout buffer.
-   [OK]          Rollout          1   add and get.
-   [OK]          Rollout          2   compute advantages.
-   [OK]          Rollout          3   compute advantages with truncation.
-   [OK]          Rollout          4   clear buffer.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Buffer'.
- Test Successful in 0.005s. 10 tests run.
- (cd _build/default/fehu/test && ./test_wrapper.exe)
- Testing `Wrapper'.
- This run has ID `AW7A7X6U'.
- 
-   [OK]          Map wrappers              0   map observation.
-   [OK]          Map wrappers              1   map action.
-   [OK]          Map wrappers              2   map reward.
-   [OK]          Map wrappers              3   map info.
-   [OK]          Utility wrappers          0   time limit.
-   [OK]          Utility wrappers          1   with metadata.
-   [OK]          Utility wrappers          2   clip action.
-   [OK]          Utility wrappers          3   clip observation.
-   [OK]          Composition               0   chained wrappers.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Wrapper'.
- Test Successful in 0.003s. 9 tests run.
- (cd _build/default/fehu/test && ./test_envs.exe)
- Testing `Environments'.
- This run has ID `DU4NDASP'.
- 
-   [OK]          RandomWalk          0   creation.
-   [OK]          RandomWalk          1   reset.
-   [OK]          RandomWalk          2   step left.
-   [OK]          RandomWalk          3   step right.
-   [OK]          RandomWalk          4   termination.
-   [OK]          RandomWalk          5   truncation.
-   [OK]          RandomWalk          6   render.
-   [OK]          GridWorld           0   creation.
-   [OK]          GridWorld           1   reset.
-   [OK]          GridWorld           2   move down.
-   [OK]          GridWorld           3   move right.
-   [OK]          GridWorld           4   obstacle collision.
-   [OK]          GridWorld           5   reach goal.
-   [OK]          GridWorld           6   render.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Environments'.
- Test Successful in 0.002s. 14 tests run.
- (cd _build/default/fehu/test && ./test_vector_env.exe)
- Testing `Vector_env'.
- This run has ID `6PVLHA6M'.
- 
-   [OK]          Creation            0   create vectorized env.
-   [OK]          Creation            1   reject incompatible action spaces.
-   [OK]          Lifecycle           0   reset vec env.
-   [OK]          Lifecycle           1   step vec env.
-   [OK]          Autoreset           0   autoreset next_step.
-   [OK]          Autoreset           1   autoreset disabled.
-   [OK]          Properties          0   spaces.
-   [OK]          Properties          1   metadata.
-   [OK]          Properties          2   close.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/Vector_env'.
- Test Successful in 0.025s. 9 tests run.
- (cd _build/default/fehu/test && ./test_reinforce.exe)
- Testing `REINFORCE'.
- This run has ID `P6PKDDJJ'.
- 
-   [OK]          Core          0   init.
-   [OK]          Core          1   init requires baseline.
-   [OK]          Core          2   init with baseline.
-   [OK]          Core          3   step completes episode.
-   [OK]          Core          4   train.
-   [OK]          Core          5   save/load.
-   [OK]          Core          6   train with baseline.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/REINFORCE'.
- Test Successful in 0.290s. 7 tests run.
- (cd _build/default/fehu/test && ./test_dqn.exe)
- Testing `DQN'.
- This run has ID `TCJXVRZF'.
- 
-   [OK]          Core          0   init.
-   [OK]          Core          1   step.
-   [OK]          Core          2   train.
-   [OK]          Core          3   save/load.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2/_build/default/fehu/test/_build/_tests/DQN'.
- Test Successful in 0.079s. 4 tests run.
Processing  2/4: [fehu: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "fehu" "--create-install-files" "fehu" (CWD=/home/opam/.opam/5.4/.opam-switch/build/fehu.1.0.0~alpha2)
-> compiled  fehu.1.0.0~alpha2
-> removed   fehu.1.0.0~alpha2
-> installed fehu.1.0.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:26.10 ---> saved as "9da0ea86965d2a21d047111b205c38f38b3624a477eda1f322ca08bbc026a6f2"
Job succeeded
2025-11-10 22:26.46: Job succeeded