(for PR #28866)

2025-11-10 14:40.55: New job: test mel-bastet.1.0.0 with melange.6.0.0-54, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28866/head (780331e30462ca6bc8d8e82d472fe1019e01770d)
                              on debian-13-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/28866/head" && git reset --hard 780331e3
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
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 melange.6.0.0-54 6.0.0-54
RUN opam reinstall melange.6.0.0-54; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'melange.6.0.0-54' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall mel-bastet.1.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mel-bastet.1.0.0' && 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 mel-bastet.1.0.0) || true
RUN opam reinstall --with-test --verbose mel-bastet.1.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mel-bastet.1.0.0' && 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 14:40.55: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58-melange.6.0.0-54-mel-bastet.1.0.0-780331e30462ca6bc8d8e82d472fe1019e01770d"
2025-11-10 14:40.55: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
 (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 melange.6.0.0-54 6.0.0-54"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall melange.6.0.0-54;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'melange.6.0.0-54' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mel-bastet.1.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mel-bastet.1.0.0' && 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 mel-bastet.1.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose mel-bastet.1.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mel-bastet.1.0.0' && 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 14:40.55: Waiting for resource in pool OCluster
2025-11-10 14:51.18: Waiting for worker…
2025-11-10 14:54.56: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Updating 21f97b2e6d..780331e304
Fast-forward
 packages/melange/melange.6.0.0-414/opam | 41 +++++++++++++++++++++++++++++++++
 packages/melange/melange.6.0.0-51/opam  | 41 +++++++++++++++++++++++++++++++++
 packages/melange/melange.6.0.0-52/opam  | 41 +++++++++++++++++++++++++++++++++
 packages/melange/melange.6.0.0-53/opam  | 41 +++++++++++++++++++++++++++++++++
 packages/melange/melange.6.0.0-54/opam  | 41 +++++++++++++++++++++++++++++++++
 5 files changed, 205 insertions(+)
 create mode 100644 packages/melange/melange.6.0.0-414/opam
 create mode 100644 packages/melange/melange.6.0.0-51/opam
 create mode 100644 packages/melange/melange.6.0.0-52/opam
 create mode 100644 packages/melange/melange.6.0.0-53/opam
 create mode 100644 packages/melange/melange.6.0.0-54/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58' locally
docker.io/ocaml/opam@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58: Pulling from ocaml/opam
8a986146d58a: Pulling fs layer
8a986146d58a: Verifying Checksum
8a986146d58a: Download complete
8a986146d58a: Pull complete
Digest: sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
Status: Downloaded newer image for ocaml/opam@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
2025-11-10 14:55.13 ---> using "9f1bc9b76367c8d29be355965b06cbbd4aeb05818e6e1915136daad8eabad361" 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 14:55.13 ---> using "7167cf2609d50147b3cfe8b00e0f1981e785c56c3c47bd6356e0f3732d6bafd7" 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 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 14:55.13 ---> using "db7b310c65b31b91b9590efe8919a126934a7e42418115cd912ed2612662d318" 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=13
# 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 14:55.13 ---> using "370daf58656f453890b2ebe0d8367763e6fea8bbb7471d68f3d783ad40f9e8ee" 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 14:55.13 ---> using "d7d7d34009e7cd5bb4f41663ceab70bbd4c419269902dabc72ab91552d36d91d" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 14:55.14 ---> using "3b6a6f5f8ee72c620a8ad02ed3c37ecd18b25ae7da338e8a4e234dd0e0b2975b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 14:55.14 ---> using "9d6062130b26bffb624fb4cc27e20e3c9b04928cd52ed0b81008e7cb9e0f8951" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Fetched 90.7 kB in 0s (1019 kB/s)
- Reading package lists...
2025-11-10 14:55.14 ---> using "7ae840edbb5e8c34478a108ffb1725cfeb3c710b211417d36cbe56ffeae07c5f" from cache

/home/opam: (run (shell "opam pin add -k version -yn melange.6.0.0-54 6.0.0-54"))
melange is now pinned to version 6.0.0-54
2025-11-10 14:55.14 ---> using "5ad9eb6bb9ef63a1f80bfd4ea38b3a18d5b2ed617ea6c51c6bb3574d79c36284" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall melange.6.0.0-54;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'melange.6.0.0-54' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
melange.6.0.0-54 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install cmdliner            2.0.0             [required by melange]
  - install cppo                1.8.0             [required by melange]
  - install dune                3.20.2            [required by melange]
  - install dune-build-info     3.20.2            [required by melange]
  - install melange             6.0.0-54 (pinned)
  - install menhir              20250912          [required by melange]
  - install menhirCST           20250912          [required by menhir]
  - install menhirLib           20250912          [required by menhir]
  - install menhirSdk           20250912          [required by menhir]
  - install ocaml-compiler-libs v0.17.0           [required by ppxlib]
  - install ppx_derivers        1.2.1             [required by ppxlib]
  - install ppxlib              0.37.0            [required by melange]
  - install sexplib0            v0.17.0           [required by ppxlib]
  - install stdlib-shims        0.3.0             [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.0.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved dune.3.20.2, dune-build-info.3.20.2  (cached)
-> retrieved melange.6.0.0-54  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed cmdliner.2.0.0
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.20.2
-> installed cppo.1.8.0
-> installed menhirCST.20250912
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed menhirSdk.20250912
-> installed sexplib0.v0.17.0
-> installed menhirLib.20250912
-> installed dune-build-info.3.20.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed melange.6.0.0-54
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:55.56 ---> saved as "b4c60e25506cea3b9c515c5d414d7430b6436436674e8ccd35226fa75a25e43c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mel-bastet.1.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'mel-bastet.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mel-bastet.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install mel-bastet 1.0.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mel-bastet.1.0.0  (https://opam.ocaml.org/cache)
-> installed mel-bastet.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:56.11 ---> saved as "9bbebd6857720cbdc580c0525426ff5305d4f982348fba64f50d349f44b43ca3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mel-bastet.1.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile mel-bastet         1.0.0
=== install 15 packages
  - install   alcotest           1.9.1  [required by mel-bastet]
  - install   astring            0.8.5  [required by alcotest]
  - install   fmt                0.11.0 [required by mel-bastet]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - install   ocamlfind          1.9.8  [required by fmt, astring, uutf]
  - install   ounit2             2.2.7  [required by qcheck-ounit]
  - install   qcheck             0.27   [required by mel-bastet]
  - install   qcheck-alcotest    0.27   [required by mel-bastet]
  - install   qcheck-core        0.27   [required by mel-bastet]
  - install   qcheck-ounit       0.27   [required by qcheck]
  - install   re                 1.14.0 [required by alcotest]
  - install   seq                base   [required by ounit2]
  - 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 fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved mel-bastet.1.0.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 ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.27, qcheck-alcotest.0.27, qcheck-core.0.27, qcheck-ounit.0.27  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ounit2.2.2.7
-> installed re.1.14.0
-> installed qcheck-core.0.27
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> installed ocamlfind.1.9.8
-> removed   mel-bastet.1.0.0
-> 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 qcheck-alcotest.0.27
-> installed mel-bastet.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:56.39 ---> saved as "c828a60d4a39337d0dd8e75febd27024ef6b66bf530238708b3144eeaa7389dd"

/home/opam: (run (shell  "opam reinstall --with-test --verbose mel-bastet.1.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'mel-bastet.1.0.0' && 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 mel-bastet 1.0.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [mel-bastet.1.0.0: extract]
-> retrieved mel-bastet.1.0.0  (cached)
Processing  2/4: [mel-bastet: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mel-bastet" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mel-bastet.1.0.0)
- (cd _build/default/bastet/test && ./test_bastet.exe)
- qcheck random seed: 89621132
- 
- Testing `Ocaml_abstract'.
- This run has ID `GNCETPSB'.
- 
-   [OK]          Array.zip_with                             0   should zip_wit...
-   [OK]          Array.zip                                  0   should zip two...
-   [OK]          Array.Foldable                             0   should do a le...
-   [OK]          Array.Foldable                             1   should do a ri...
-   [OK]          Array.Foldable                             2   should do a ma...
-   [OK]          Array.Foldable                             3   should do a ma...
-   [OK]          Array.Unfoldable                           0   should do an u...
-   [OK]          Array.Unfoldable                           1   should do an u...
-   [OK]          Array.Traversable                          0   should travers...
-   [OK]          Array.Traversable                          1   should sequenc...
-   [OK]          Array.Show                                 0   should show th...
-   [OK]          Array.Extend                               0   should satisfy...
-   [OK]          Array.Alt.alt                              0   should order t...
-   [OK]          Array.Functor                              0   should satisfy...
-   [OK]          Array.Functor                              1   should satisfy...
-   [OK]          Array.Apply                                0   should satisfy...
-   [OK]          Array.Applicative                          0   should satisfy...
-   [OK]          Array.Applicative                          1   should satisfy...
-   [OK]          Array.Applicative                          2   should satisfy...
-   [OK]          Array.Monad                                0   should satisfy...
-   [OK]          Array.Monad                                1   should satisfy...
-   [OK]          Array.Alt                                  0   should satisfy...
-   [OK]          Array.Alt                                  1   should satisfy...
-   [OK]          Array.Eq                                   0   should satisfy...
-   [OK]          Array.Eq                                   1   should satisfy...
-   [OK]          Array.Eq                                   2   should satisfy...
-   [OK]          Array.Ord                                  0   should satisfy...
-   [OK]          Array.Ord                                  1   should satisfy...
-   [OK]          Array.Ord                                  2   should satisfy...
-   [OK]          Array.Invariant                            0   should satisfy...
-   [OK]          Array.Invariant                            1   should satisfy...
-   [OK]          Bool.Conjunctive.Medial_Magma              0   should satisfy...
-   [OK]          Bool.Conjunctive.Semigroup                 0   should satisfy...
-   [OK]          Bool.Conjunctive.Monoid                    0   should satisfy...
-   [OK]          Bool.Disjunctive.Medial_Magma              0   should satisfy...
-   [OK]          Bool.Disjunctive.Semigroup                 0   should satisfy...
-   [OK]          Bool.Disjunctive.Monoid                    0   should satisfy...
-   [OK]          Bool.Eq                                    0   should satisfy...
-   [OK]          Bool.Eq                                    1   should satisfy...
-   [OK]          Bool.Eq                                    2   should satisfy...
-   [OK]          Bool.Ord                                   0   should satisfy...
-   [OK]          Bool.Ord                                   1   should satisfy...
-   [OK]          Bool.Ord                                   2   should satisfy...
-   [OK]          Bool.Join_Semilattice                      0   should satisfy...
-   [OK]          Bool.Join_Semilattice                      1   should satisfy...
-   [OK]          Bool.Join_Semilattice                      2   should satisfy...
-   [OK]          Bool.Meet_Semilattice                      0   should satisfy...
-   [OK]          Bool.Meet_Semilattice                      1   should satisfy...
-   [OK]          Bool.Meet_Semilattice                      2   should satisfy...
-   [OK]          Bool.Bounded_Join_Semilattice              0   should satisfy...
-   [OK]          Bool.Bounded_Meet_Semilattice              0   should satisfy...
-   [OK]          Bool.Lattice                               0   should satisfy...
-   [OK]          Bool.Bounded_Lattice                       0   should satisfy...
-   [OK]          Bool.Distributive_Lattice                  0   should satisfy...
-   [OK]          Bool.Bounded_Distributive_Lattice          0   should satisfy...
-   [OK]          Bool.Heyting_Algebra                       0   should satisfy...
-   [OK]          Bool.Heyting_Algebra                       1   should satisfy...
-   [OK]          Bool.Involutive_Heyting_Algebra            0   should satisfy...
-   [OK]          Bool.Boolean_Algebra                       0   should satisfy...
-   [OK]          Default.Foldable                           0   should do a le...
-   [OK]          Default.Traversable                        0   should travers...
-   [OK]          Float.Additive.Medial_Magma                0   should satisfy...
-   [OK]          Float.Additive.Semigroup                   0   should satisfy...
-   [OK]          Float.Additive.Monoid                      0   should satisfy...
-   [OK]          Float.Additive.Quasigroup                  0   should satisfy...
-   [OK]          Float.Additive.Loop                        0   should satisfy...
-   [OK]          Float.Additive.Group                       0   should satisfy...
-   [OK]          Float.Additive.Group                       1   should satisfy...
-   [OK]          Float.Additive.Abelian_Group               0   should satisfy...
-   [OK]          Float.Multiplicative.Medial_Magma          0   should satisfy...
-   [OK]          Float.Multiplicative.Semigroup             0   should satisfy...
-   [OK]          Float.Multiplicative.Monoid                0   should satisfy...
-   [OK]          Float.Multiplicative.Quasigroup            0   should satisfy...
-   [OK]          Float.Multiplicative.Loop                  0   should satisfy...
-   [OK]          Float.Subtractive.Medial_Magma             0   should satisfy...
-   [OK]          Float.Subtractive.Quasigroup               0   should satisfy...
-   [OK]          Float.Divisive.Medial_Magma                0   should satisfy...
-   [OK]          Float.Divisive.Quasigroup                  0   should satisfy...
-   [OK]          Float.Eq                                   0   should satisfy...
-   [OK]          Float.Eq                                   1   should satisfy...
-   [OK]          Float.Eq                                   2   should satisfy...
-   [OK]          Float.Ord                                  0   should satisfy...
-   [OK]          Float.Ord                                  1   should satisfy...
-   [OK]          Float.Ord                                  2   should satisfy...
-   [OK]          Float.Bounded                              0   should satisfy...
-   [OK]          Float.Semiring                             0   should satisfy...
-   [OK]          Float.Semiring                             1   should satisfy...
-   [OK]          Float.Semiring                             2   should satisfy...
-   [OK]          Float.Semiring                             3   should satisfy...
-   [OK]          Float.Semiring                             4   should satisfy...
-   [OK]          Float.Semiring                             5   should satisfy...
-   [OK]          Float.Ring                                 0   should satisfy...
-   [OK]          Float.Commutative_Ring                     0   should satisfy...
-   [OK]          Float.Division_Ring                        0   should be a no...
-   [OK]          Float.Division_Ring                        1   should satisfy...
-   [OK]          Float.Euclidean_Ring                       0   should be a no...
-   [OK]          Float.Euclidean_Ring                       1   should satisfy...
-   [OK]          Float.Euclidean_Ring                       2   should satisfy...
-   [OK]          Float.Euclidean_Ring                       3   should satisfy...
-   [OK]          Float.Euclidean_Ring                       4   should satisfy...
-   [OK]          Float.Field                                0   should satisfy...
-   [OK]          List.Foldable                              0   should do a le...
-   [OK]          List.Foldable                              1   should do a ri...
-   [OK]          List.Foldable                              2   should do a ma...
-   [OK]          List.Foldable                              3   should do a ma...
-   [OK]          List.Unfoldable                            0   should do an u...
-   [OK]          List.Unfoldable                            1   should do an u...
-   [OK]          List.Traversable                           0   should travers...
-   [OK]          List.Traversable                           1   should sequenc...
-   [OK]          List.Show                                  0   should show th...
-   [OK]          List.Alt.alt                               0   should order t...
-   [OK]          List.Functor                               0   should satisfy...
-   [OK]          List.Functor                               1   should satisfy...
-   [OK]          List.Apply                                 0   should satisfy...
-   [OK]          List.Applicative                           0   should satisfy...
-   [OK]          List.Applicative                           1   should satisfy...
-   [OK]          List.Applicative                           2   should satisfy...
-   [OK]          List.Monad                                 0   should satisfy...
-   [OK]          List.Monad                                 1   should satisfy...
-   [OK]          List.Alt                                   0   should satisfy...
-   [OK]          List.Alt                                   1   should satisfy...
-   [OK]          List.Eq                                    0   should satisfy...
-   [OK]          List.Eq                                    1   should satisfy...
-   [OK]          List.Eq                                    2   should satisfy...
-   [OK]          Option.Infix                               0   should apply a...
-   [OK]          Option.Foldable                            0   should do a le...
-   [OK]          Option.Foldable                            1   should do a ri...
-   [OK]          Option.Foldable                            2   should do a ma...
-   [OK]          Option.Foldable                            3   should do a ma...
-   [OK]          Option.Traversable                         0   should travers...
-   [OK]          Option.Traversable                         1   should sequenc...
-   [OK]          Option.Semigroup                           0   should satisfy...
-   [OK]          Option.Monoid                              0   should satisfy...
-   [OK]          Option.Functor                             0   should satisfy...
-   [OK]          Option.Functor                             1   should satisfy...
-   [OK]          Option.Apply                               0   should satisfy...
-   [OK]          Option.Applicative                         0   should satisfy...
-   [OK]          Option.Applicative                         1   should satisfy...
-   [OK]          Option.Applicative                         2   should satisfy...
-   [OK]          Option.Monad                               0   should satisfy...
-   [OK]          Option.Monad                               1   should satisfy...
-   [OK]          Option.Alt                                 0   should satisfy...
-   [OK]          Option.Alt                                 1   should satisfy...
-   [OK]          Option.Alternative                         0   should satisfy...
-   [OK]          Option.Alternative                         1   should satisfy...
-   [OK]          Option.Plus                                0   should satisfy...
-   [OK]          Option.Plus                                1   should satisfy...
-   [OK]          Option.Eq                                  0   should satisfy...
-   [OK]          Option.Eq                                  1   should satisfy...
-   [OK]          Option.Eq                                  2   should satisfy...
-   [OK]          Option.Ord                                 0   should satisfy...
-   [OK]          Option.Ord                                 1   should satisfy...
-   [OK]          Option.Ord                                 2   should satisfy...
-   [OK]          String.Semigroup                           0   should satisfy...
-   [OK]          String.Monoid                              0   should satisfy...
-   [OK]          String.Quasigroup                          0   should satisfy...
-   [OK]          String.Loop                                0   should satisfy...
-   [OK]          String.Eq                                  0   should satisfy...
-   [OK]          String.Eq                                  1   should satisfy...
-   [OK]          String.Eq                                  2   should satisfy...
-   [OK]          String.Ord                                 0   should satisfy...
-   [OK]          String.Ord                                 1   should satisfy...
-   [OK]          String.Ord                                 2   should satisfy...
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/mel-bastet.1.0.0/_build/default/bastet/test/_build/_tests/Ocaml_abstract'.
- Test Successful in 0.259s. 163 tests run.
-> compiled  mel-bastet.1.0.0
-> removed   mel-bastet.1.0.0
-> installed mel-bastet.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:56.53 ---> saved as "af57e7cf67f59a639f8bb1846b587d03e8a36d29e8ad1edb70435f7581bca6e4"
Job succeeded
2025-11-10 14:57.03: Job succeeded