- github
- ocaml
- opam-repository
- 395113
- distributions,centos-9-ocaml-4.14,picos.0.4.0,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:25.59: New job: test picos.0.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
on centos-9-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 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88
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 "\"centos-9\""; 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 "\"centos-9\""; 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-17 10:25.59: Using cache hint "ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88-picos.0.4.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.59: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88)
(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 \"\\\"centos-9\\\"\"; 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 \"\\\"centos-9\\\"\"; 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-17 10:25.59: Waiting for resource in pool OCluster
2026-03-17 11:43.21: Waiting for worker…
2026-03-17 11:45.27: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.
warning: There are too many unreachable loose objects; run 'git prune' to remove them.
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 | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5.1/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5/opam | 7 ++++++-
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, 403 insertions(+), 84 deletions(-)
(from ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88)
2026-03-17 11:46.06 ---> saved as "dac63719edf1fb21abdbd4be411809fd1fc4ba1e61f121a32295e1441c2ad5f6"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 11:46.07 ---> saved as "71dbb97d71e6460b05ec32d11b70da123019d56301d3bf840b8da494222830b7"
/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-17 11:46.41 ---> saved as "cc7810378f1cc4ff5018728cd84c3f8d59184450cb20ac13dae814bdf947e85d"
/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=centos os-version=9
# 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 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-17 11:46.43 ---> saved as "8ae7199532a3bd978c316c7676fa3a4e0e477331048be7cf0634cf98fb60228a"
/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-17 11:47.01 ---> saved as "ec3c59830e7a9d178c0cd7d8c55035b3d6e78426eda3fc9454ced8a7aa5a7b3e"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:47.09 ---> saved as "d2e2d6c7ecc84e27ea15d5d160669d8f3c794ab28cd418cba21e30c9da045a05"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:47.31 ---> saved as "0c9bd9a99be955501c6501e9090c6118633670b6b70e39b6d43d8daeb23032b6"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 99 kB/s | 13 kB 00:00
- CentOS Stream 9 - BaseOS 14 MB/s | 8.9 MB 00:00
- CentOS Stream 9 - AppStream 95 kB/s | 14 kB 00:00
- CentOS Stream 9 - AppStream 13 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 101 kB/s | 13 kB 00:00
- CentOS Stream 9 - CRB 11 MB/s | 8.0 MB 00:00
- CentOS Stream 9 - Extras packages 112 kB/s | 17 kB 00:00
- Metadata cache created.
2026-03-17 11:47.50 ---> saved as "27784f1f55ce3ba5e477c3531f29f44404fcfcb30f28ff393d23974f777d2acf"
/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-17 11:47.52 ---> saved as "f27abc3ef7e0e235c7871d69eda2c25cb829af4414265ff157111294fc1b9a46"
/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 \"\\\"centos-9\\\"\"; 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 csexp.1.5.2
-> installed backoff.0.1.1
-> 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-17 11:48.41 ---> saved as "216446fee28ee0482945ddaf764c2c53527acaaec89588eeb677513dd7a69531"
/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:
epel-release npm
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "epel-release"
- Last metadata expiration check: 0:00:58 ago on Tue Mar 17 11:47:48 2026.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- epel-release noarch 9-7.el9 extras-common 19 k
- Installing weak dependencies:
- dnf-plugins-core noarch 4.3.0-26.el9 baseos 36 k
- epel-next-release noarch 9-7.el9 extras-common 8.1 k
-
- Transaction Summary
- ================================================================================
- Install 3 Packages
-
- Total download size: 62 k
- Installed size: 51 k
- Downloading Packages:
- (1/3): epel-next-release-9-7.el9.noarch.rpm 641 kB/s | 8.1 kB 00:00
- (2/3): dnf-plugins-core-4.3.0-26.el9.noarch.rpm 2.1 MB/s | 36 kB 00:00
- (3/3): epel-release-9-7.el9.noarch.rpm 938 kB/s | 19 kB 00:00
- --------------------------------------------------------------------------------
- Total 211 kB/s | 62 kB 00:00
- CentOS Stream 9 - Extras packages 2.1 MB/s | 2.1 kB 00:00
- Importing GPG key 0x1D997668:
- Userid : "CentOS Extras SIG (https://wiki.centos.org/SpecialInterestGroup) <security@centos.org>"
- Fingerprint: 363F C097 2F64 B699 AED3 968E 1FF6 A217 1D99 7668
- From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Extras-SHA512
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : dnf-plugins-core-4.3.0-26.el9.noarch 1/3
- Installing : epel-next-release-9-7.el9.noarch 2/3
- Installing : epel-release-9-7.el9.noarch 3/3
- Running scriptlet: epel-release-9-7.el9.noarch 3/3
- Many EPEL packages require the CodeReady Builder (CRB) repository.
- It is recommended that you run /usr/bin/crb enable to enable the CRB repository.
-
- Verifying : dnf-plugins-core-4.3.0-26.el9.noarch 1/3
- Verifying : epel-next-release-9-7.el9.noarch 2/3
- Verifying : epel-release-9-7.el9.noarch 3/3
-
- Installed:
- dnf-plugins-core-4.3.0-26.el9.noarch epel-next-release-9-7.el9.noarch
- epel-release-9-7.el9.noarch
-
- Complete!
+ /usr/bin/sudo "yum" "install" "-y" "npm"
- Extra Packages for Enterprise Linux 9 - x86_64 5.5 MB/s | 20 MB 00:03
- Extra Packages for Enterprise Linux 9 openh264 5.9 kB/s | 2.5 kB 00:00
- Extra Packages for Enterprise Linux 9 - Next - 817 kB/s | 259 kB 00:00
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- npm x86_64 1:8.19.4-1.16.20.2.8.el9 appstream 2.2 M
- Installing dependencies:
- nodejs x86_64 1:16.20.2-8.el9 appstream 112 k
- nodejs-libs x86_64 1:16.20.2-8.el9 appstream 14 M
- Installing weak dependencies:
- nodejs-docs noarch 1:16.20.2-8.el9 appstream 7.2 M
- nodejs-full-i18n x86_64 1:16.20.2-8.el9 appstream 8.2 M
-
- Transaction Summary
- ================================================================================
- Install 5 Packages
-
- Total download size: 32 M
- Installed size: 168 M
- Downloading Packages:
- (1/5): nodejs-16.20.2-8.el9.x86_64.rpm 4.1 MB/s | 112 kB 00:00
- (2/5): nodejs-full-i18n-16.20.2-8.el9.x86_64.rp 12 MB/s | 8.2 MB 00:00
- (3/5): npm-8.19.4-1.16.20.2.8.el9.x86_64.rpm 17 MB/s | 2.2 MB 00:00
- (4/5): nodejs-libs-16.20.2-8.el9.x86_64.rpm 14 MB/s | 14 MB 00:01
- (5/5): nodejs-docs-16.20.2-8.el9.noarch.rpm 6.1 MB/s | 7.2 MB 00:01
- --------------------------------------------------------------------------------
- Total 24 MB/s | 32 MB 00:01
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Running scriptlet: npm-1:8.19.4-1.16.20.2.8.el9.x86_64 1/1
- Preparing : 1/1
-
- Installing : nodejs-libs-1:16.20.2-8.el9.x86_64 1/5
- Installing : nodejs-docs-1:16.20.2-8.el9.noarch 2/5
-
- Installing : nodejs-full-i18n-1:16.20.2-8.el9.x86_64 3/5
- Installing : npm-1:8.19.4-1.16.20.2.8.el9.x86_64 4/5
- Installing : nodejs-1:16.20.2-8.el9.x86_64 5/5
- Running scriptlet: nodejs-1:16.20.2-8.el9.x86_64 5/5
- Verifying : nodejs-1:16.20.2-8.el9.x86_64 1/5
- Verifying : nodejs-docs-1:16.20.2-8.el9.noarch 2/5
- Verifying : nodejs-full-i18n-1:16.20.2-8.el9.x86_64 3/5
- Verifying : nodejs-libs-1:16.20.2-8.el9.x86_64 4/5
- Verifying : npm-1:8.19.4-1.16.20.2.8.el9.x86_64 5/5
-
- Installed:
- nodejs-1:16.20.2-8.el9.x86_64 nodejs-docs-1:16.20.2-8.el9.noarch
- nodejs-full-i18n-1:16.20.2-8.el9.x86_64 nodejs-libs-1:16.20.2-8.el9.x86_64
- npm-1:8.19.4-1.16.20.2.8.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "epel-release" "npm"
- epel-release-9-7.el9.noarch
- npm-8.19.4-1.16.20.2.8.el9.x86_64
- npm-8.19.4-1.16.20.2.8.el9.x86_64
<><> 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)
-> retrieved containers.3.18 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.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)
-> retrieved either.1.0.0 (https://opam.ocaml.org/cache)
-> installed domain_shims.0.1.0
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> installed conf-npm.1
-> retrieved gen.1.1 (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved js_of_ocaml.5.8.2, js_of_ocaml-compiler.5.8.2 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> 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
-> retrieved oseq.0.5.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed menhirSdk.20260209
-> installed menhirGLR.20260209
-> installed ocaml-version.4.0.3
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> installed oseq.0.5.1
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> 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)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed result.1.5
-> 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 dscheck.0.5.0
-> installed sexplib0.v0.17.0
-> installed domain-local-await.1.0.1
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed uutf.1.0.4
-> removed picos.0.4.0
-> installed yojson.3.0.0
-> installed qcheck-multicoretests-util.0.10
-> installed multicore-bench.0.1.7
-> installed qcheck-stm.0.10
-> installed alcotest.1.9.1
-> 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-17 11:51.12 ---> saved as "eac07a1eb4b3b5bc288e5cbb7c014e615c0f8f1350cc31cbbe6761571db65275"
/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 \"\\\"centos-9\\\"\"; 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" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/picos.0.4.0)
- (cd _build/default/test && ./test_mpscq.exe)
-
random seed: 113002301
- 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 && ./test_server_and_client.exe)
- Using non-blocking sockets and threads on OCaml 4:
- Recursive server running
- Server listening
- Client B running
- Client A running
- Server accepting
- Server accepted client
- Server accepting
- Client A connected
- Server accepted client
- Client B connected
- Client A wrote 100
- Server accepting
- Server read 100
- Client B wrote 100
- Server wrote 50
- Client A read 50
- Server read 100
- Server wrote 50
- Client B read 50
- Server and Client test: OK
- (cd _build/default/test && ./test_picos.exe)
- Testing `Picos'.
- This run has ID `D26LV42K'.
-
- [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 `RQUMJYFZ'.
-
- [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 && /usr/bin/node test_js_of_ocaml.bc.js)
- Hello, from js_of_ocaml with Picos!
- (cd _build/default/test && ./test_stdio.exe)
- Testing `Picos_stdio'.
- This run has ID `7U2DFTGX'.
-
- [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.336s. 6 tests run.
- (cd _build/default/test && ./test_structured.exe)
- Testing `Picos_structured'.
- This run has ID `IOSOD1L3'.
-
- [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.418s. 11 tests run.
- (cd _build/default/test && ./test_sync.exe)
- Testing `Picos_sync'.
- This run has ID `JY6R8DR5'.
-
- [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 0.625s. 5 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `OICBVJZY'.
-
- [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 1.030s. 1 test run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `WHGO2YFE'.
-
- [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.015s. 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.24 M/s
- round-trips over time/1 worker:
- 0.04 M/s
- time per async round-trip/1 worker:
- 4124.24 ns
- time per round-trip/1 worker:
- 23737.25 ns
- Picos Computation:
- attach detach pairs over time/1 worker:
- 7.03 M/s
- attach detach pairs over time/2 workers:
- 6.11 M/s
- attach detach pairs over time/4 workers:
- 5.98 M/s
- attach detach pairs over time/trivial:
- 32.82 M/s
- time per attach detach pair/1 worker:
- 142.30 ns
- time per attach detach pair/2 workers:
- 327.45 ns
- time per attach detach pair/4 workers:
- 669.09 ns
- time per attach detach pair/trivial:
- 30.47 ns
- Picos Current:
- ops over time/1 worker:
- 117.41 M/s
- ops over time/2 workers:
- 115.21 M/s
- ops over time/4 workers:
- 104.60 M/s
- time per op/1 worker:
- 8.52 ns
- time per op/2 workers:
- 17.36 ns
- time per op/4 workers:
- 38.29 ns
- Picos DLS:
- gets over time/1 worker:
- 286.86 M/s
- sets over time/1 worker:
- 182.71 M/s
- time per get/1 worker:
- 3.49 ns
- time per set/1 worker:
- 5.47 ns
- Picos FLS (excluding Current):
- gets over time/1 worker:
- 166.77 M/s
- sets over time/1 worker:
- 102.48 M/s
- time per get/1 worker:
- 6.00 ns
- time per set/1 worker:
- 9.76 ns
- Picos Mutex:
- locked yields over time/1 fiber:
- 0.09 M/s
- locked yields over time/2 fibers:
- 0.05 M/s
- locked yields over time/4 fibers:
- 0.05 M/s
- locked yields over time/8 fibers:
- 0.05 M/s
- time per locked yield/1 fiber:
- 11488.79 ns
- time per locked yield/2 fibers:
- 21284.10 ns
- time per locked yield/4 fibers:
- 21364.48 ns
- time per locked yield/8 fibers:
- 18904.22 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:
- 90235.65 ns
- time per spawn/2 at a time:
- 78042.89 ns
- time per spawn/4 at a time:
- 90823.46 ns
- time per spawn/8 at a time:
- 81005.25 ns
- Picos TLS:
- gets over time/1 worker:
- 106.32 M/s
- sets over time/1 worker:
- 107.04 M/s
- time per get/1 worker:
- 9.41 ns
- time per set/1 worker:
- 9.34 ns
- Picos Yield:
- time per yield/100 fibers:
- 7639.04 ns
- time per yield/10 fibers:
- 6949.92 ns
- time per yield/1 fiber:
- 10937.29 ns
- yields over time/100 fibers:
- 0.13 M/s
- yields over time/10 fibers:
- 0.14 M/s
- yields over time/1 fiber:
- 0.09 M/s
- Picos binaries:
- binary size/picos:
- 20.46 kB
- binary size/picos_domain:
- 6.80 kB
- binary size/picos_exn_bt:
- 11.44 kB
- binary size/picos_fd:
- 9.42 kB
- binary size/picos_htbl:
- 40.12 kB
- binary size/picos_mpscq:
- 16.89 kB
- binary size/picos_rc:
- 18.05 kB
- binary size/picos_select:
- 52.02 kB
- binary size/picos_stdio:
- 80.11 kB
- binary size/picos_structured:
- 60.47 kB
- binary size/picos_sync:
- 55.98 kB
- binary size/picos_thread:
- 4.04 kB
- binary size/picos_threaded:
- 24.44 kB
- Picos_htbl:
- operations over time/1 worker, 10% reads:
- 12.95 M/s
- operations over time/1 worker, 50% reads:
- 14.92 M/s
- operations over time/1 worker, 90% reads:
- 19.32 M/s
- time per operation/1 worker, 10% reads:
- 77.21 ns
- time per operation/1 worker, 50% reads:
- 67.01 ns
- time per operation/1 worker, 90% reads:
- 51.76 ns
- Picos_mpscq:
- messages over time/1 nb adder, 1 nb taker:
- 64.76 M/s
- messages over time/2 nb adders, 1 nb taker:
- 75.08 M/s
- messages over time/4 nb adders, 1 nb taker:
- 38.13 M/s
- messages over time/one domain:
- 27.18 M/s
- time per message/1 nb adder, 1 nb taker:
- 30.88 ns
- time per message/2 nb adders, 1 nb taker:
- 39.96 ns
- time per message/4 nb adders, 1 nb taker:
- 131.11 ns
- time per message/one domain:
- 36.80 ns
- Picos_stdio:
- blocking reads over time/1 worker:
- 0.04 M/s
- non-blocking reads over time/1 worker:
- 0.37 M/s
- time per blocking read/1 worker:
- 26157.54 ns
- time per non-blocking read/1 worker:
- 2726.43 ns
- Ref with Picos_sync.Mutex:
- ops over time/cas int (checked):
- 22.76 M/s
- ops over time/cas int (unchecked):
- 32.47 M/s
- ops over time/get (checked):
- 17.34 M/s
- ops over time/get (unchecked):
- 37.07 M/s
- ops over time/incr (checked):
- 18.44 M/s
- ops over time/incr (unchecked):
- 36.86 M/s
- ops over time/push & pop (checked):
- 13.75 M/s
- ops over time/push & pop (unchecked):
- 31.16 M/s
- ops over time/swap (checked):
- 22.54 M/s
- ops over time/swap (unchecked):
- 31.12 M/s
- ops over time/xchg int (checked):
- 22.46 M/s
- ops over time/xchg int (unchecked):
- 32.14 M/s
- time per op/cas int (checked):
- 43.94 ns
- time per op/cas int (unchecked):
- 30.80 ns
- time per op/get (checked):
- 57.68 ns
- time per op/get (unchecked):
- 26.97 ns
- time per op/incr (checked):
- 54.24 ns
- time per op/incr (unchecked):
- 27.13 ns
- time per op/push & pop (checked):
- 72.73 ns
- time per op/push & pop (unchecked):
- 32.10 ns
- time per op/swap (checked):
- 44.37 ns
- time per op/swap (unchecked):
- 32.14 ns
- time per op/xchg int (checked):
- 44.53 ns
- time per op/xchg int (unchecked):
- 31.12 ns
- (cd _build/default/test && ./test_htbl.exe)
-
random seed: 268539983
- 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
[ ] 15 0 0 15 / 1000 0.1s Picos_htbl concurrent
[ ] 31 0 0 31 / 1000 0.2s Picos_htbl concurrent
[ ] 39 0 0 39 / 1000 0.5s Picos_htbl concurrent
[ ] 42 0 0 42 / 1000 0.7s Picos_htbl concurrent
[ ] 55 0 0 55 / 1000 0.8s Picos_htbl concurrent
[ ] 61 0 0 61 / 1000 0.9s Picos_htbl concurrent
[ ] 65 0 0 65 / 1000 1.0s Picos_htbl concurrent
[ ] 66 0 0 66 / 1000 1.6s Picos_htbl concurrent
[ ] 71 0 0 71 / 1000 1.7s Picos_htbl concurrent
[ ] 87 0 0 87 / 1000 2.5s Picos_htbl concurrent
[ ] 90 0 0 90 / 1000 2.7s Picos_htbl concurrent
[ ] 103 0 0 103 / 1000 2.9s Picos_htbl concurrent
[ ] 110 0 0 110 / 1000 3.2s Picos_htbl concurrent
[ ] 114 0 0 114 / 1000 3.5s Picos_htbl concurrent
[ ] 117 0 0 117 / 1000 3.8s Picos_htbl concurrent
[ ] 128 0 0 128 / 1000 3.9s Picos_htbl concurrent
[ ] 143 0 0 143 / 1000 4.1s Picos_htbl concurrent
[ ] 148 0 0 148 / 1000 4.4s Picos_htbl concurrent
[ ] 153 0 0 153 / 1000 4.5s Picos_htbl concurrent
[ ] 164 0 0 164 / 1000 4.7s Picos_htbl concurrent
[ ] 167 0 0 167 / 1000 4.8s Picos_htbl concurrent
[ ] 180 0 0 180 / 1000 4.9s Picos_htbl concurrent
[ ] 182 0 0 182 / 1000 5.3s Picos_htbl concurrent
[ ] 185 0 0 185 / 1000 5.5s Picos_htbl concurrent
[ ] 187 0 0 187 / 1000 5.8s Picos_htbl concurrent
[ ] 192 0 0 192 / 1000 5.9s Picos_htbl concurrent
[ ] 195 0 0 195 / 1000 6.0s Picos_htbl concurrent
[ ] 199 0 0 199 / 1000 6.2s Picos_htbl concurrent
[ ] 207 0 0 207 / 1000 6.3s Picos_htbl concurrent
[ ] 223 0 0 223 / 1000 6.6s Picos_htbl concurrent
[ ] 236 0 0 236 / 1000 6.8s Picos_htbl concurrent
[ ] 247 0 0 247 / 1000 6.9s Picos_htbl concurrent
[ ] 257 0 0 257 / 1000 7.0s Picos_htbl concurrent
[ ] 270 0 0 270 / 1000 7.2s Picos_htbl concurrent
[ ] 279 0 0 279 / 1000 7.3s Picos_htbl concurrent
[ ] 281 0 0 281 / 1000 7.7s Picos_htbl concurrent
[ ] 282 0 0 282 / 1000 7.9s Picos_htbl concurrent
[ ] 289 0 0 289 / 1000 8.2s Picos_htbl concurrent
[ ] 290 0 0 290 / 1000 8.4s Picos_htbl concurrent
[ ] 296 0 0 296 / 1000 8.5s Picos_htbl concurrent
[ ] 297 0 0 297 / 1000 9.0s Picos_htbl concurrent
[ ] 300 0 0 300 / 1000 9.2s Picos_htbl concurrent
[ ] 302 0 0 302 / 1000 9.4s Picos_htbl concurrent
[ ] 305 0 0 305 / 1000 9.7s Picos_htbl concurrent
[ ] 319 0 0 319 / 1000 9.9s Picos_htbl concurrent
[ ] 321 0 0 321 / 1000 10.0s Picos_htbl concurrent
[ ] 323 0 0 323 / 1000 10.2s Picos_htbl concurrent
[ ] 327 0 0 327 / 1000 10.4s Picos_htbl concurrent
[ ] 345 0 0 345 / 1000 10.8s Picos_htbl concurrent
[ ] 354 0 0 354 / 1000 11.1s Picos_htbl concurrent
[ ] 371 0 0 371 / 1000 11.3s Picos_htbl concurrent
[ ] 372 0 0 372 / 1000 11.4s Picos_htbl concurrent
[ ] 374 0 0 374 / 1000 11.6s Picos_htbl concurrent
[ ] 388 0 0 388 / 1000 11.8s Picos_htbl concurrent
[ ] 397 0 0 397 / 1000 12.2s Picos_htbl concurrent
[ ] 398 0 0 398 / 1000 12.6s Picos_htbl concurrent
[ ] 402 0 0 402 / 1000 12.7s Picos_htbl concurrent
[ ] 418 0 0 418 / 1000 12.8s Picos_htbl concurrent
[ ] 420 0 0 420 / 1000 13.2s Picos_htbl concurrent
[ ] 423 0 0 423 / 1000 13.4s Picos_htbl concurrent
[ ] 430 0 0 430 / 1000 13.7s Picos_htbl concurrent
[ ] 431 0 0 431 / 1000 13.9s Picos_htbl concurrent
[ ] 432 0 0 432 / 1000 14.5s Picos_htbl concurrent
[ ] 440 0 0 440 / 1000 14.9s Picos_htbl concurrent
[ ] 446 0 0 446 / 1000 15.4s Picos_htbl concurrent
[ ] 457 0 0 457 / 1000 15.5s Picos_htbl concurrent
[ ] 460 0 0 460 / 1000 15.7s Picos_htbl concurrent
[ ] 471 0 0 471 / 1000 16.0s Picos_htbl concurrent
[ ] 475 0 0 475 / 1000 16.1s Picos_htbl concurrent
[ ] 480 0 0 480 / 1000 16.4s Picos_htbl concurrent
[ ] 486 0 0 486 / 1000 16.6s Picos_htbl concurrent
[ ] 496 0 0 496 / 1000 16.9s Picos_htbl concurrent
[ ] 498 0 0 498 / 1000 17.3s Picos_htbl concurrent
[ ] 503 0 0 503 / 1000 17.4s Picos_htbl concurrent
[ ] 508 0 0 508 / 1000 17.5s Picos_htbl concurrent
[ ] 515 0 0 515 / 1000 18.0s Picos_htbl concurrent
[ ] 517 0 0 517 / 1000 18.1s Picos_htbl concurrent
[ ] 524 0 0 524 / 1000 18.3s Picos_htbl concurrent
[ ] 531 0 0 531 / 1000 18.7s Picos_htbl concurrent
[ ] 533 0 0 533 / 1000 19.3s Picos_htbl concurrent
[ ] 543 0 0 543 / 1000 19.5s Picos_htbl concurrent
[ ] 545 0 0 545 / 1000 19.8s Picos_htbl concurrent
[ ] 549 0 0 549 / 1000 20.3s Picos_htbl concurrent
[ ] 552 0 0 552 / 1000 20.4s Picos_htbl concurrent
[ ] 556 0 0 556 / 1000 20.6s Picos_htbl concurrent
[ ] 558 0 0 558 / 1000 20.9s Picos_htbl concurrent
[ ] 560 0 0 560 / 1000 21.2s Picos_htbl concurrent
[ ] 561 0 0 561 / 1000 21.4s Picos_htbl concurrent
[ ] 564 0 0 564 / 1000 21.7s Picos_htbl concurrent
[ ] 565 0 0 565 / 1000 22.1s Picos_htbl concurrent
[ ] 580 0 0 580 / 1000 22.3s Picos_htbl concurrent
[ ] 584 0 0 584 / 1000 22.5s Picos_htbl concurrent
[ ] 589 0 0 589 / 1000 22.6s Picos_htbl concurrent
[ ] 590 0 0 590 / 1000 22.9s Picos_htbl concurrent
[ ] 600 0 0 600 / 1000 23.0s Picos_htbl concurrent
[ ] 604 0 0 604 / 1000 23.1s Picos_htbl concurrent
[ ] 616 0 0 616 / 1000 23.3s Picos_htbl concurrent
[ ] 617 0 0 617 / 1000 23.4s Picos_htbl concurrent
[ ] 625 0 0 625 / 1000 23.7s Picos_htbl concurrent
[ ] 643 0 0 643 / 1000 23.8s Picos_htbl concurrent
[ ] 660 0 0 660 / 1000 24.2s Picos_htbl concurrent
[ ] 663 0 0 663 / 1000 24.4s Picos_htbl concurrent
[ ] 665 0 0 665 / 1000 24.6s Picos_htbl concurrent
[ ] 667 0 0 667 / 1000 24.7s Picos_htbl concurrent
[ ] 672 0 0 672 / 1000 24.8s Picos_htbl concurrent
[ ] 675 0 0 675 / 1000 25.0s Picos_htbl concurrent
[ ] 678 0 0 678 / 1000 25.4s Picos_htbl concurrent
[ ] 684 0 0 684 / 1000 25.5s Picos_htbl concurrent
[ ] 688 0 0 688 / 1000 25.6s Picos_htbl concurrent
[ ] 705 0 0 705 / 1000 25.8s Picos_htbl concurrent
[ ] 711 0 0 711 / 1000 26.0s Picos_htbl concurrent
[ ] 717 0 0 717 / 1000 26.2s Picos_htbl concurrent
[ ] 718 0 0 718 / 1000 26.4s Picos_htbl concurrent
[ ] 719 0 0 719 / 1000 26.6s Picos_htbl concurrent
[ ] 728 0 0 728 / 1000 26.8s Picos_htbl concurrent
[ ] 753 0 0 753 / 1000 27.0s Picos_htbl concurrent
[ ] 759 0 0 759 / 1000 27.2s Picos_htbl concurrent
[ ] 761 0 0 761 / 1000 27.3s Picos_htbl concurrent
[ ] 768 0 0 768 / 1000 27.5s Picos_htbl concurrent
[ ] 770 0 0 770 / 1000 27.8s Picos_htbl concurrent
[ ] 783 0 0 783 / 1000 27.9s Picos_htbl concurrent
[ ] 789 0 0 789 / 1000 28.0s Picos_htbl concurrent
[ ] 801 0 0 801 / 1000 28.2s Picos_htbl concurrent
[ ] 811 0 0 811 / 1000 28.4s Picos_htbl concurrent
[ ] 819 0 0 819 / 1000 28.6s Picos_htbl concurrent
[ ] 833 0 0 833 / 1000 28.7s Picos_htbl concurrent
[ ] 848 0 0 848 / 1000 29.2s Picos_htbl concurrent
[ ] 857 0 0 857 / 1000 29.3s Picos_htbl concurrent
[ ] 880 0 0 880 / 1000 29.5s Picos_htbl concurrent
[ ] 888 0 0 888 / 1000 29.7s Picos_htbl concurrent
[ ] 895 0 0 895 / 1000 29.8s Picos_htbl concurrent
[ ] 903 0 0 903 / 1000 30.1s Picos_htbl concurrent
[ ] 909 0 0 909 / 1000 30.3s Picos_htbl concurrent
[ ] 911 0 0 911 / 1000 30.7s Picos_htbl concurrent
[ ] 914 0 0 914 / 1000 31.1s Picos_htbl concurrent
[ ] 915 0 0 915 / 1000 31.2s Picos_htbl concurrent
[ ] 931 0 0 931 / 1000 31.3s Picos_htbl concurrent
[ ] 940 0 0 940 / 1000 31.5s Picos_htbl concurrent
[ ] 948 0 0 948 / 1000 31.6s Picos_htbl concurrent
[ ] 949 0 0 949 / 1000 31.8s Picos_htbl concurrent
[ ] 957 0 0 957 / 1000 32.0s Picos_htbl concurrent
[ ] 958 0 0 958 / 1000 32.2s Picos_htbl concurrent
[ ] 959 0 0 959 / 1000 32.5s Picos_htbl concurrent
[ ] 962 0 0 962 / 1000 32.8s Picos_htbl concurrent
[ ] 966 0 0 966 / 1000 33.1s Picos_htbl concurrent
[ ] 982 0 0 982 / 1000 33.2s Picos_htbl concurrent
[ ] 992 0 0 992 / 1000 33.6s Picos_htbl concurrent
[ ] 999 0 0 999 / 1000 33.7s Picos_htbl concurrent
[✓] 1000 0 0 1000 / 1000 33.7s 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-17 11:52.01 ---> saved as "31419f5911300ff2ce81655e8ce4d7ab785fe2f620b75d07ce4314a27cf8fa33"
Job succeeded
2026-03-17 11:52.09: Job succeeded