(not at the head of any monitored branch or PR)
2026-03-10 08:59.55: New job: test picos.0.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on alpine-3.22-ocaml-4.14/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/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
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 picos.0.4.0 0.4.0
RUN opam reinstall picos.0.4.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 "\"alpine-3.22\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'picos.0.4.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 picos.0.4.0) || true
RUN opam reinstall --with-test --verbose picos.0.4.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 "\"alpine-3.22\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'picos.0.4.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 .

2026-03-10 08:59.55: Using cache hint "ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216-picos.0.4.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.55: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
 (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 picos.0.4.0 0.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall picos.0.4.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 \"\\\"alpine-3.22\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'picos.0.4.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 picos.0.4.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose picos.0.4.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 \"\\\"alpine-3.22\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'picos.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-10 08:59.55: Waiting for resource in pool OCluster
2026-03-10 10:02.04: Waiting for worker…
2026-03-10 10:04.29: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 6 +++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 400 insertions(+), 84 deletions(-)

(from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
2026-03-10 10:04.37 ---> using "d1cef22083ba59d6db4e2f107091c68dd70ebdcc64c3894ad7db7be62ad17f4a" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-10 10:04.37 ---> using "d2cb172e755b5e8a0ee24e133445a3ea22478f4e48886729c76cbcde08270342" from cache

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

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

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-10 10:04.49 ---> saved as "4b7ed401555204d1f183307388cb649d473c8a52ff80ce2f5a4e8504a88269c7"

/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
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=alpine os-version=3.22.2
# 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-10 10:04.50 ---> saved as "9b1883465557a61ecd00e6282d59de098d32d80cc71a923a8ed0faa5af1a02e7"

/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/"))
2026-03-10 10:05.04 ---> saved as "be1c70f0be6391803fdc2f3adb75bd0fc31dd6c9a80328fabfc5d1e074dcb1ff"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 10:05.20 ---> saved as "dd4d2d6f4e0fdd650ac507063138f74e66aa4d613a8b3d18eead26d0e46a23e8"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 10:05.38 ---> saved as "f70eeb40261340de0ddb4b15cabc41b3e2ba309ea9767cd2b35fb8c027d60708"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.22.3-57-g13791beeb8c [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.3-57-g13791beeb8c [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v20260127-2669-gfaed0951ec3 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-2695-ge0d9a410ac7 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-2687-g19b6aa5b806 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 61032 distinct packages available
2026-03-10 10:05.41 ---> saved as "4c0b99d0ece37f67ba41e9e1b28bcae609abfa3edff6307cfc3064bdf5ba27c5"

/home/opam: (run (shell "opam pin add -k version -yn picos.0.4.0 0.4.0"))
picos is now pinned to version 0.4.0
2026-03-10 10:05.42 ---> saved as "304914c606f46242d4b6b012e35d0a25771bd9b8ecd78a39ea983a04de72e0e3"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall picos.0.4.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 \"\\\"alpine-3.22\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'picos.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
picos.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
  - install backoff              0.1.1          [required by picos]
  - install base-bytes           base           [required by ocplib-endian]
  - install cppo                 1.8.0          [required by lwt]
  - install csexp                1.5.2          [required by dune-configurator]
  - install dune                 3.21.1         [required by picos]
  - install dune-configurator    3.21.1         [required by lwt]
  - install lwt                  6.1.1          [required by picos]
  - install mtime                2.1.0          [required by picos]
  - install multicore-magic      2.3.2          [required by picos]
  - install ocamlbuild           0.16.1         [required by mtime]
  - install ocamlfind            1.9.8          [required by mtime]
  - install ocplib-endian        1.2            [required by lwt]
  - install picos                0.4.0 (pinned)
  - install psq                  0.2.1          [required by picos]
  - install seq                  base           [required by psq]
  - install thread-local-storage 0.1            [required by picos]
  - install topkg                1.1.1          [required by mtime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.6.1.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved multicore-magic.2.3.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved picos.0.4.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved thread-local-storage.0.1  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed dune.3.21.1
-> installed backoff.0.1.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed multicore-magic.2.3.2
-> installed psq.0.2.1
-> installed thread-local-storage.0.1
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.6.1.1
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:06.21 ---> saved as "4a032b059b7f8954ba1ed407ccd194cf7d124b4a71409a3f3c32405b30edf052"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test picos.0.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile picos                      0.4.0 (pinned)
=== install 40 packages
  - install   alcotest                   1.9.1          [required by picos]
  - install   astring                    0.8.5          [required by alcotest, mdx]
  - install   camlp-streams              5.0.1          [required by mdx]
  - install   cmdliner                   2.1.0          [required by dscheck, alcotest, mdx]
  - install   conf-npm                   1              [required by picos]
  - install   containers                 3.18           [required by dscheck]
  - install   domain-local-await         1.0.1          [required by multicore-bench]
  - install   domain_shims               0.1.0          [required by picos]
  - install   dscheck                    0.5.0          [required by picos]
  - install   either                     1.0.0          [required by containers]
  - install   fmt                        0.11.0         [required by alcotest, mdx]
  - install   gen                        1.1            [required by sedlex]
  - install   js_of_ocaml                5.8.2          [required by picos]
  - install   js_of_ocaml-compiler       5.8.2          [required by js_of_ocaml]
  - install   logs                       0.10.0         [required by mdx]
  - install   mdx                        2.5.1          [required by picos]
  - install   menhir                     20260209       [required by js_of_ocaml-compiler]
  - install   menhirCST                  20260209       [required by menhir]
  - install   menhirGLR                  20260209       [required by menhir]
  - install   menhirLib                  20260209       [required by js_of_ocaml-compiler]
  - install   menhirSdk                  20260209       [required by js_of_ocaml-compiler]
  - install   multicore-bench            0.1.7          [required by picos]
  - install   ocaml-compiler-libs        v0.12.4        [required by ppxlib]
  - install   ocaml-syntax-shims         1.0.0          [required by alcotest]
  - install   ocaml-version              4.0.3          [required by picos]
  - install   oseq                       0.5.1          [required by dscheck]
  - install   ppx_derivers               1.2.1          [required by ppxlib]
  - install   ppxlib                     0.35.0         [required by js_of_ocaml]
  - install   qcheck-core                0.91           [required by picos]
  - install   qcheck-multicoretests-util 0.10           [required by picos]
  - install   qcheck-stm                 0.10           [required by picos]
  - install   re                         1.14.0         [required by alcotest, mdx]
  - install   result                     1.5            [required by mdx]
  - install   sedlex                     3.7            [required by js_of_ocaml-compiler]
  - install   sexplib0                   v0.17.0        [required by ppxlib]
  - install   stdlib-shims               0.3.0          [required by alcotest]
  - install   thread-table               1.0.0          [required by domain-local-await]
  - install   tsort                      2.2.0          [required by dscheck]
  - install   uutf                       1.0.4          [required by alcotest]
  - install   yojson                     3.0.0          [required by multicore-bench]

The following system packages will first need to be installed:
    npm

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
  2. Display the recommended apk 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 "apk" "add" "npm"
- (1/7) Installing ada-libs (2.9.2-r4)
- (2/7) Installing icu-data-en (76.1-r1)
- Executing icu-data-en-76.1-r1.post-install
- *
- * If you need ICU with non-English locales and legacy charset support, install
- * package icu-data-full.
- *
- (3/7) Installing icu-libs (76.1-r1)
- (4/7) Installing simdjson (3.12.0-r0)
- (5/7) Installing simdutf (7.2.1-r0)
- (6/7) Installing nodejs (22.22.0-r0)
- (7/7) Installing npm (11.6.4-r0)
- Executing busybox-1.37.0-r20.trigger
- OK: 376 MiB in 109 packages

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> installed conf-npm.1
-> retrieved domain-local-await.1.0.1  (https://opam.ocaml.org/cache)
-> retrieved domain_shims.0.1.0  (https://opam.ocaml.org/cache)
-> retrieved dscheck.0.5.0  (https://opam.ocaml.org/cache)
-> installed domain_shims.0.1.0
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved gen.1.1  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> installed astring.0.8.5
-> retrieved js_of_ocaml.5.8.2, js_of_ocaml-compiler.5.8.2  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed containers.3.18
-> installed gen.1.1
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> installed menhirCST.20260209
-> retrieved multicore-bench.0.1.7  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> retrieved oseq.0.5.1  (https://opam.ocaml.org/cache)
-> installed menhirSdk.20260209
-> installed ocaml-version.4.0.3
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> installed oseq.0.5.1
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> retrieved sedlex.3.7  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> installed result.1.5
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved thread-table.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved tsort.2.2.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed thread-table.1.0.0
-> installed tsort.2.2.0
-> installed sexplib0.v0.17.0
-> installed dscheck.0.5.0
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed domain-local-await.1.0.1
-> installed uutf.1.0.4
-> installed qcheck-multicoretests-util.0.10
-> removed   picos.0.4.0
-> installed yojson.3.0.0
-> installed qcheck-stm.0.10
-> installed alcotest.1.9.1
-> installed multicore-bench.0.1.7
-> installed menhir.20260209
-> installed ppxlib.0.35.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.5.8.2
-> installed logs.0.10.0
-> installed mdx.2.5.1
-> installed js_of_ocaml.5.8.2
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:07.46 ---> saved as "4e1499c57f6bf2142d73a5b7b646ed374c504d8202cb88f35af973d979190a64"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [picos: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "picos" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/picos.0.4.0)
- (cd _build/default/test && ./test_mpscq.exe)
- 
random seed: 351099887
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Picos_mpscq sequential
[✓] 1000    0    0 1000 / 1000     0.0s Picos_mpscq sequential
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test && /usr/bin/node test_js_of_ocaml.bc.js)
- Hello, from js_of_ocaml with Picos!
- (cd _build/default/test && ./test_server_and_client.exe)
- Using blocking sockets and threads on OCaml 4:
-   Looping server running
-   Server listening
-   Server accepting
-   Client B running
-   Client A running
-   Client B connected
-   Server accepted client
-   Client A connected
-   Client   Server read 100
-   Server accepting
- B wrote 100
-   Client A wrote 100
-   Client B read 50
-   Server accepted client
-   Server wrote 50
-   Server accepting
-   Server read 100
-   Server wrote 50
-   Client A read 50
- Server and Client test: OK
- (cd _build/default/test && ./test_picos.exe)
- Testing `Picos'.
- This run has ID `WDX1A9VQ'.
- 
-   [OK]          Trigger basics                        0   
-   [OK]          Computation basics                    0   
-   [OK]          Fiber.FLS basics                      0   
-   [OK]          Thread cancelation                    0   
-   [OK]          Cancel after                          0   
-   [OK]          Computation signals in order          0   
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos'.
- Test Successful in 0.023s. 6 tests run.
- (cd _build/default/test && ./test_schedulers.exe)
- Testing `Picos schedulers'.
- This run has ID `WOP7WOPQ'.
- 
-   [OK]          Returns               0   
-   [OK]          Current               0   
-   [OK]          Cancel_after          0   basic.
-   [OK]          Cancel_after          1   long timeout.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos schedulers'.
- Test Successful in 0.101s. 4 tests run.
- (cd _build/default/test && ./test_stdio.exe)
- Testing `Picos_stdio'.
- This run has ID `VI6LIMEW'.
- 
-   [OK]          Unix          0   openfile and read.
-   [OK]          Unix          1   sleepf.
-   [OK]          Unix          2   select empty timeout.
-   [OK]          Unix          3   select empty ∞.
-   [OK]          Unix          4   select.
-   [OK]          Unix          5   system.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_stdio'.
- Test Successful in 0.341s. 6 tests run.
- (cd _build/default/test && ./test_structured.exe)
- Testing `Picos_structured'.
- This run has ID `X3MK00TQ'.
- 
-   [OK]          Bundle          0   fork after terminate.
-   [OK]          Bundle          1   fork after escape.
-   [OK]          Bundle          2   exception in child terminates.
-   [OK]          Bundle          3   cancelation awaits children.
-   [OK]          Bundle          4   termination nests.
-   [OK]          Bundle          5   promise cancelation does not terminate.
-   [OK]          Bundle          6   error in promise terminates.
-   [OK]          Bundle          7   can wait promises.
-   [OK]          Bundle          8   any and all errors.
-   [OK]          Bundle          9   any and all returns.
-   [OK]          Bundle         10   race any.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_structured'.
- Test Successful in 0.425s. 11 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `E469OGWP'.
- 
-   [OK]          Intr          0   
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_select'.
- Test Successful in 0.997s. 1 test run.
- (cd _build/default/test && ./test_sync.exe)
- Testing `Picos_sync'.
- This run has ID `E0ACTURR'.
- 
-   [OK]          Mutex and Condition          0   basics.
-   [OK]          Mutex and Condition          1   errors.
-   [OK]          Mutex and Condition          2   cancelation.
-   [OK]          Lazy                         0   basics.
-   [OK]          Lazy                         1   cancelation.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_sync'.
- Test Successful in 2.023s. 5 tests run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `4GFOFSPS'.
- 
-   [OK]          Unix          0   system.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_stdio_with_lwt'.
- Test Successful in 2.014s. 1 test run.
- (cd _build/default/bench && ./main.exe -brief)
- Fib:
- Picos Cancel_after with Picos_select:
-   async round-trips over time/1 worker:
-     0.48 M/s
-   round-trips over time/1 worker:
-     0.06 M/s
-   time per async round-trip/1 worker:
-     2072.20 ns
-   time per round-trip/1 worker:
-     17241.68 ns
- Picos Computation:
-   attach detach pairs over time/1 worker:
-     11.87 M/s
-   attach detach pairs over time/2 workers:
-     12.09 M/s
-   attach detach pairs over time/4 workers:
-     10.38 M/s
-   attach detach pairs over time/trivial:
-     42.48 M/s
-   time per attach detach pair/1 worker:
-     84.25 ns
-   time per attach detach pair/2 workers:
-     165.47 ns
-   time per attach detach pair/4 workers:
-     385.25 ns
-   time per attach detach pair/trivial:
-     23.54 ns
- Picos Current:
-   ops over time/1 worker:
-     160.60 M/s
-   ops over time/2 workers:
-     155.28 M/s
-   ops over time/4 workers:
-     152.10 M/s
-   time per op/1 worker:
-     6.23 ns
-   time per op/2 workers:
-     12.88 ns
-   time per op/4 workers:
-     26.30 ns
- Picos DLS:
-   gets over time/1 worker:
-     357.52 M/s
-   sets over time/1 worker:
-     170.17 M/s
-   time per get/1 worker:
-     2.80 ns
-   time per set/1 worker:
-     5.88 ns
- Picos FLS (excluding Current):
-   gets over time/1 worker:
-     204.32 M/s
-   sets over time/1 worker:
-     173.37 M/s
-   time per get/1 worker:
-     4.89 ns
-   time per set/1 worker:
-     5.77 ns
- Picos Mutex:
-   locked yields over time/1 fiber:
-     0.07 M/s
-   locked yields over time/2 fibers:
-     0.04 M/s
-   locked yields over time/4 fibers:
-     0.04 M/s
-   locked yields over time/8 fibers:
-     0.05 M/s
-   time per locked yield/1 fiber:
-     15362.67 ns
-   time per locked yield/2 fibers:
-     24955.18 ns
-   time per locked yield/4 fibers:
-     27733.49 ns
-   time per locked yield/8 fibers:
-     21729.55 ns
- Picos Spawn:
-   spawns over time/1 at a time:
-     0.01 M/s
-   spawns over time/2 at a time:
-     0.01 M/s
-   spawns over time/4 at a time:
-     0.01 M/s
-   spawns over time/8 at a time:
-     0.01 M/s
-   time per spawn/1 at a time:
-     155482.49 ns
-   time per spawn/2 at a time:
-     144444.20 ns
-   time per spawn/4 at a time:
-     152678.36 ns
-   time per spawn/8 at a time:
-     148347.43 ns
- Picos TLS:
-   gets over time/1 worker:
-     224.43 M/s
-   sets over time/1 worker:
-     142.44 M/s
-   time per get/1 worker:
-     4.46 ns
-   time per set/1 worker:
-     7.02 ns
- Picos Yield:
-   time per yield/100 fibers:
-     11585.61 ns
-   time per yield/10 fibers:
-     9068.31 ns
-   time per yield/1 fiber:
-     14404.55 ns
-   yields over time/100 fibers:
-     0.09 M/s
-   yields over time/10 fibers:
-     0.11 M/s
-   yields over time/1 fiber:
-     0.07 M/s
- Picos binaries:
-   binary size/picos:
-     21.44 kB
-   binary size/picos_domain:
-     7.42 kB
-   binary size/picos_exn_bt:
-     11.90 kB
-   binary size/picos_fd:
-     10.00 kB
-   binary size/picos_htbl:
-     43.19 kB
-   binary size/picos_mpscq:
-     18.32 kB
-   binary size/picos_rc:
-     19.21 kB
-   binary size/picos_select:
-     54.93 kB
-   binary size/picos_stdio:
-     86.26 kB
-   binary size/picos_structured:
-     64.29 kB
-   binary size/picos_sync:
-     59.04 kB
-   binary size/picos_thread:
-     4.23 kB
-   binary size/picos_threaded:
-     25.65 kB
- Picos_htbl:
-   operations over time/1 worker, 10% reads:
-     21.37 M/s
-   operations over time/1 worker, 50% reads:
-     23.39 M/s
-   operations over time/1 worker, 90% reads:
-     34.45 M/s
-   time per operation/1 worker, 10% reads:
-     46.80 ns
-   time per operation/1 worker, 50% reads:
-     42.75 ns
-   time per operation/1 worker, 90% reads:
-     29.03 ns
- Picos_mpscq:
-   messages over time/1 nb adder, 1 nb taker:
-     27.35 M/s
-   messages over time/2 nb adders, 1 nb taker:
-     28.00 M/s
-   messages over time/4 nb adders, 1 nb taker:
-     25.56 M/s
-   messages over time/one domain:
-     16.67 M/s
-   time per message/1 nb adder, 1 nb taker:
-     73.14 ns
-   time per message/2 nb adders, 1 nb taker:
-     107.13 ns
-   time per message/4 nb adders, 1 nb taker:
-     195.60 ns
-   time per message/one domain:
-     59.98 ns
- Picos_stdio:
-   blocking reads over time/1 worker:
-     0.10 M/s
-   non-blocking reads over time/1 worker:
-     0.66 M/s
-   time per blocking read/1 worker:
-     10272.14 ns
-   time per non-blocking read/1 worker:
-     1513.25 ns
- Ref with Picos_sync.Mutex:
-   ops over time/cas int (checked):
-     26.28 M/s
-   ops over time/cas int (unchecked):
-     39.68 M/s
-   ops over time/get (checked):
-     27.87 M/s
-   ops over time/get (unchecked):
-     45.25 M/s
-   ops over time/incr (checked):
-     29.60 M/s
-   ops over time/incr (unchecked):
-     45.41 M/s
-   ops over time/push & pop (checked):
-     23.28 M/s
-   ops over time/push & pop (unchecked):
-     37.03 M/s
-   ops over time/swap (checked):
-     26.21 M/s
-   ops over time/swap (unchecked):
-     39.85 M/s
-   ops over time/xchg int (checked):
-     26.14 M/s
-   ops over time/xchg int (unchecked):
-     38.80 M/s
-   time per op/cas int (checked):
-     38.05 ns
-   time per op/cas int (unchecked):
-     25.20 ns
-   time per op/get (checked):
-     35.88 ns
-   time per op/get (unchecked):
-     22.10 ns
-   time per op/incr (checked):
-     33.78 ns
-   time per op/incr (unchecked):
-     22.02 ns
-   time per op/push & pop (checked):
-     42.96 ns
-   time per op/push & pop (unchecked):
-     27.01 ns
-   time per op/swap (checked):
-     38.16 ns
-   time per op/swap (unchecked):
-     25.10 ns
-   time per op/xchg int (checked):
-     38.25 ns
-   time per op/xchg int (unchecked):
-     25.77 ns
- (cd _build/default/test && ./test_htbl.exe)
- 
random seed: 272257285
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Picos_htbl sequential
[✓] 1000    0    0 1000 / 1000     0.0s Picos_htbl sequential
- 
[ ]    0    0    0    0 / 1000     0.0s Picos_htbl concurrent
[ ]   14    0    0   14 / 1000     0.2s Picos_htbl concurrent
[ ]   21    0    0   21 / 1000     0.3s Picos_htbl concurrent
[ ]   27    0    0   27 / 1000     0.5s Picos_htbl concurrent
[ ]   38    0    0   38 / 1000     0.6s Picos_htbl concurrent
[ ]   41    0    0   41 / 1000     0.7s Picos_htbl concurrent
[ ]   46    0    0   46 / 1000     0.9s Picos_htbl concurrent
[ ]   53    0    0   53 / 1000     1.0s Picos_htbl concurrent
[ ]   59    0    0   59 / 1000     1.1s Picos_htbl concurrent
[ ]   60    0    0   60 / 1000     1.2s Picos_htbl concurrent
[ ]   71    0    0   71 / 1000     1.4s Picos_htbl concurrent
[ ]   82    0    0   82 / 1000     1.5s Picos_htbl concurrent
[ ]   95    0    0   95 / 1000     1.6s Picos_htbl concurrent
[ ]  102    0    0  102 / 1000     1.8s Picos_htbl concurrent
[ ]  106    0    0  106 / 1000     1.9s Picos_htbl concurrent
[ ]  109    0    0  109 / 1000     2.1s Picos_htbl concurrent
[ ]  115    0    0  115 / 1000     2.2s Picos_htbl concurrent
[ ]  118    0    0  118 / 1000     2.3s Picos_htbl concurrent
[ ]  133    0    0  133 / 1000     2.5s Picos_htbl concurrent
[ ]  148    0    0  148 / 1000     2.6s Picos_htbl concurrent
[ ]  153    0    0  153 / 1000     2.7s Picos_htbl concurrent
[ ]  170    0    0  170 / 1000     2.8s Picos_htbl concurrent
[ ]  181    0    0  181 / 1000     2.9s Picos_htbl concurrent
[ ]  200    0    0  200 / 1000     3.2s Picos_htbl concurrent
[ ]  205    0    0  205 / 1000     3.3s Picos_htbl concurrent
[ ]  213    0    0  213 / 1000     3.4s Picos_htbl concurrent
[ ]  220    0    0  220 / 1000     3.6s Picos_htbl concurrent
[ ]  238    0    0  238 / 1000     3.7s Picos_htbl concurrent
[ ]  250    0    0  250 / 1000     3.8s Picos_htbl concurrent
[ ]  252    0    0  252 / 1000     3.9s Picos_htbl concurrent
[ ]  253    0    0  253 / 1000     4.1s Picos_htbl concurrent
[ ]  258    0    0  258 / 1000     4.2s Picos_htbl concurrent
[ ]  259    0    0  259 / 1000     4.4s Picos_htbl concurrent
[ ]  261    0    0  261 / 1000     4.5s Picos_htbl concurrent
[ ]  283    0    0  283 / 1000     4.6s Picos_htbl concurrent
[ ]  288    0    0  288 / 1000     4.7s Picos_htbl concurrent
[ ]  290    0    0  290 / 1000     4.8s Picos_htbl concurrent
[ ]  297    0    0  297 / 1000     5.0s Picos_htbl concurrent
[ ]  298    0    0  298 / 1000     5.1s Picos_htbl concurrent
[ ]  299    0    0  299 / 1000     5.2s Picos_htbl concurrent
[ ]  305    0    0  305 / 1000     5.4s Picos_htbl concurrent
[ ]  333    0    0  333 / 1000     5.6s Picos_htbl concurrent
[ ]  350    0    0  350 / 1000     5.7s Picos_htbl concurrent
[ ]  359    0    0  359 / 1000     5.8s Picos_htbl concurrent
[ ]  369    0    0  369 / 1000     6.1s Picos_htbl concurrent
[ ]  390    0    0  390 / 1000     6.2s Picos_htbl concurrent
[ ]  396    0    0  396 / 1000     6.3s Picos_htbl concurrent
[ ]  409    0    0  409 / 1000     6.4s Picos_htbl concurrent
[ ]  422    0    0  422 / 1000     6.6s Picos_htbl concurrent
[ ]  439    0    0  439 / 1000     6.7s Picos_htbl concurrent
[ ]  450    0    0  450 / 1000     6.8s Picos_htbl concurrent
[ ]  458    0    0  458 / 1000     7.1s Picos_htbl concurrent
[ ]  464    0    0  464 / 1000     7.2s Picos_htbl concurrent
[ ]  471    0    0  471 / 1000     7.4s Picos_htbl concurrent
[ ]  476    0    0  476 / 1000     7.5s Picos_htbl concurrent
[ ]  487    0    0  487 / 1000     7.7s Picos_htbl concurrent
[ ]  498    0    0  498 / 1000     7.9s Picos_htbl concurrent
[ ]  505    0    0  505 / 1000     8.1s Picos_htbl concurrent
[ ]  511    0    0  511 / 1000     8.2s Picos_htbl concurrent
[ ]  522    0    0  522 / 1000     8.3s Picos_htbl concurrent
[ ]  531    0    0  531 / 1000     8.4s Picos_htbl concurrent
[ ]  539    0    0  539 / 1000     8.5s Picos_htbl concurrent
[ ]  545    0    0  545 / 1000     8.7s Picos_htbl concurrent
[ ]  549    0    0  549 / 1000     8.8s Picos_htbl concurrent
[ ]  551    0    0  551 / 1000     8.9s Picos_htbl concurrent
[ ]  570    0    0  570 / 1000     9.0s Picos_htbl concurrent
[ ]  584    0    0  584 / 1000     9.1s Picos_htbl concurrent
[ ]  590    0    0  590 / 1000     9.3s Picos_htbl concurrent
[ ]  611    0    0  611 / 1000     9.5s Picos_htbl concurrent
[ ]  627    0    0  627 / 1000     9.6s Picos_htbl concurrent
[ ]  634    0    0  634 / 1000     9.8s Picos_htbl concurrent
[ ]  658    0    0  658 / 1000     9.9s Picos_htbl concurrent
[ ]  671    0    0  671 / 1000    10.0s Picos_htbl concurrent
[ ]  680    0    0  680 / 1000    10.1s Picos_htbl concurrent
[ ]  681    0    0  681 / 1000    10.3s Picos_htbl concurrent
[ ]  692    0    0  692 / 1000    10.4s Picos_htbl concurrent
[ ]  706    0    0  706 / 1000    10.5s Picos_htbl concurrent
[ ]  716    0    0  716 / 1000    10.6s Picos_htbl concurrent
[ ]  741    0    0  741 / 1000    10.7s Picos_htbl concurrent
[ ]  747    0    0  747 / 1000    11.0s Picos_htbl concurrent
[ ]  751    0    0  751 / 1000    11.1s Picos_htbl concurrent
[ ]  759    0    0  759 / 1000    11.2s Picos_htbl concurrent
[ ]  760    0    0  760 / 1000    11.3s Picos_htbl concurrent
[ ]  768    0    0  768 / 1000    11.5s Picos_htbl concurrent
[ ]  780    0    0  780 / 1000    11.6s Picos_htbl concurrent
[ ]  794    0    0  794 / 1000    11.7s Picos_htbl concurrent
[ ]  797    0    0  797 / 1000    11.8s Picos_htbl concurrent
[ ]  802    0    0  802 / 1000    12.0s Picos_htbl concurrent
[ ]  814    0    0  814 / 1000    12.1s Picos_htbl concurrent
[ ]  825    0    0  825 / 1000    12.2s Picos_htbl concurrent
[ ]  829    0    0  829 / 1000    12.3s Picos_htbl concurrent
[ ]  838    0    0  838 / 1000    12.4s Picos_htbl concurrent
[ ]  841    0    0  841 / 1000    12.6s Picos_htbl concurrent
[ ]  860    0    0  860 / 1000    12.7s Picos_htbl concurrent
[ ]  872    0    0  872 / 1000    12.8s Picos_htbl concurrent
[ ]  890    0    0  890 / 1000    12.9s Picos_htbl concurrent
[ ]  895    0    0  895 / 1000    13.0s Picos_htbl concurrent
[ ]  907    0    0  907 / 1000    13.2s Picos_htbl concurrent
[ ]  917    0    0  917 / 1000    13.3s Picos_htbl concurrent
[ ]  934    0    0  934 / 1000    13.5s Picos_htbl concurrent
[ ]  953    0    0  953 / 1000    13.6s Picos_htbl concurrent
[ ]  965    0    0  965 / 1000    13.7s Picos_htbl concurrent
[ ]  990    0    0  990 / 1000    13.8s Picos_htbl concurrent
[✓] 1000    0    0 1000 / 1000    13.9s Picos_htbl concurrent
- ================================================================================
- success (ran 2 tests)
-> compiled  picos.0.4.0
-> removed   picos.0.4.0
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:08.05 ---> saved as "0c49fbe44e3ded72d93e3034aa66f13fd4f208aa551e2cdbcda46609a5e56e5b"
Job succeeded
2026-03-10 10:08.15: Job succeeded