- github
- ocaml
- opam-repository
- 395113
- distributions,centos-9-ocaml-4.14,picos.0.3.0,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:25.59: New job: test picos.0.3.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.3.0 0.3.0
RUN opam reinstall picos.0.3.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.3.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.3.0) || true
RUN opam reinstall --with-test --verbose picos.0.3.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.3.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.3.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.3.0 0.3.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall picos.0.3.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.3.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.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose picos.0.3.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.3.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.31: Got resource from pool OCluster
Building on clete
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.
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.00 ---> 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.00 ---> 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.28 ---> 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.29 ---> 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:46.48 ---> saved as "ec3c59830e7a9d178c0cd7d8c55035b3d6e78426eda3fc9454ced8a7aa5a7b3e"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:46.56 ---> saved as "d2e2d6c7ecc84e27ea15d5d160669d8f3c794ab28cd418cba21e30c9da045a05"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:47.14 ---> saved as "0c9bd9a99be955501c6501e9090c6118633670b6b70e39b6d43d8daeb23032b6"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 64 kB/s | 13 kB 00:00
- CentOS Stream 9 - BaseOS 13 MB/s | 8.9 MB 00:00
- CentOS Stream 9 - AppStream 98 kB/s | 14 kB 00:00
- CentOS Stream 9 - AppStream 13 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 95 kB/s | 13 kB 00:00
- CentOS Stream 9 - CRB 8.0 MB/s | 8.0 MB 00:00
- CentOS Stream 9 - Extras packages 5.3 kB/s | 17 kB 00:03
- Metadata cache created.
2026-03-17 11:47.38 ---> saved as "27784f1f55ce3ba5e477c3531f29f44404fcfcb30f28ff393d23974f777d2acf"
/home/opam: (run (shell "opam pin add -k version -yn picos.0.3.0 0.3.0"))
picos is now pinned to version 0.3.0
2026-03-17 11:47.39 ---> saved as "14a74cd5d65f19a6367e88a54353c774113b235f1732648b34f0c96773b184cc"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall picos.0.3.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.3.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.3.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.3.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.3.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.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:48.42 ---> saved as "e38e533852c30d9643b3bf2e76945b5ed313032f023fca35d0b51aec2ffdce83"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test picos.0.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile picos 0.3.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:01:10 ago on Tue Mar 17 11:47:36 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 520 kB/s | 8.1 kB 00:00
- (2/3): epel-release-9-7.el9.noarch.rpm 1.1 MB/s | 19 kB 00:00
- (3/3): dnf-plugins-core-4.3.0-26.el9.noarch.rpm 1.6 MB/s | 36 kB 00:00
- --------------------------------------------------------------------------------
- Total 208 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 25 MB/s | 20 MB 00:00
- Extra Packages for Enterprise Linux 9 openh264 6.7 kB/s | 2.5 kB 00:00
- Extra Packages for Enterprise Linux 9 - Next - 796 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 2.1 MB/s | 112 kB 00:00
- (2/5): nodejs-docs-16.20.2-8.el9.noarch.rpm 10 MB/s | 7.2 MB 00:00
- (3/5): nodejs-full-i18n-16.20.2-8.el9.x86_64.rp 8.5 MB/s | 8.2 MB 00:00
- (4/5): npm-8.19.4-1.16.20.2.8.el9.x86_64.rpm 6.9 MB/s | 2.2 MB 00:00
- (5/5): nodejs-libs-16.20.2-8.el9.x86_64.rpm 7.1 MB/s | 14 MB 00:02
- --------------------------------------------------------------------------------
- Total 14 MB/s | 32 MB 00:02
- 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)
-> installed camlp-streams.5.0.1
-> retrieved containers.3.18 (https://opam.ocaml.org/cache)
-> 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)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> installed domain_shims.0.1.0
-> retrieved gen.1.1 (https://opam.ocaml.org/cache)
-> installed conf-npm.1
-> 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 menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-version.4.0.3
-> retrieved oseq.0.5.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed oseq.0.5.1
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (https://opam.ocaml.org/cache)
-> 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)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed thread-table.1.0.0
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed tsort.2.2.0
-> installed dscheck.0.5.0
-> installed sexplib0.v0.17.0
-> installed domain-local-await.1.0.1
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed uutf.1.0.4
-> installed qcheck-multicoretests-util.0.10
-> removed picos.0.3.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.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:50.35 ---> saved as "17614f770ffe36221e4107a8ba3346f501de8d5e62f90a1542d49f43029f8600"
/home/opam: (run (shell "opam reinstall --with-test --verbose picos.0.3.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.3.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.3.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.3.0)
- (cd _build/default/test && ./test_mpsc_queue.exe)
-
random seed: 369813253
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s Picos_mpsc_queue sequential
[✓] 1000 0 0 1000 / 1000 0.0s Picos_mpsc_queue sequential
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test && ./test_server_and_client.exe)
- Using blocking sockets and threads on OCaml 4:
- Looping server running
- Server listening
- Client B running
- Server accepting
- Client A running
- Client A connected
- Client B connected
- Client A wrote 100
- Server accepted client
- Client B wrote 100
- Server accepting
- Server read 100
- Server accepted client
- Server wrote 50
- Server accepting
- Client B read 50
- Server read 100
- Server wrote 50
- Client A read 50
- Server and Client test: OK
- (cd _build/default/test && ./test_stdio.exe)
- Testing `Picos_stdio'.
- This run has ID `QXGZ6THS'.
-
- [OK] Unix 0 system.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.3.0/_build/default/test/_build/_tests/Picos_stdio'.
- Test Successful in 0.007s. 1 test run.
- (cd _build/default/test && ./test_picos.exe)
- Testing `Picos'.
- This run has ID `OIIJQFQW'.
-
- [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.3.0/_build/default/test/_build/_tests/Picos'.
- Test Successful in 0.024s. 6 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_sync.exe)
- Testing `Picos_sync'.
- This run has ID `0UYRXVRQ'.
-
- [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.3.0/_build/default/test/_build/_tests/Picos_sync'.
- Test Successful in 0.789s. 5 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `WT2I6NO0'.
-
- [OK] Intr 0
-
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.3.0/_build/default/test/_build/_tests/Picos_select'.
- Test Successful in 1.402s. 1 test run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `MOGJYZCA'.
-
- [OK] Unix 0 system.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.3.0/_build/default/test/_build/_tests/Picos_stdio_with_lwt'.
- Test Successful in 2.016s. 1 test run.
- (cd _build/default/bench && ./main.exe -brief)
- Foundation Mpsc_queue:
- messages over time/1 nb adder, 1 nb taker:
- 47.80 M/s
- messages over time/2 nb adders, 1 nb taker:
- 43.76 M/s
- messages over time/4 nb adders, 1 nb taker:
- 37.79 M/s
- messages over time/one domain:
- 19.94 M/s
- time per message/1 nb adder, 1 nb taker:
- 41.84 ns
- time per message/2 nb adders, 1 nb taker:
- 68.56 ns
- time per message/4 nb adders, 1 nb taker:
- 132.30 ns
- time per message/one domain:
- 50.14 ns
- Picos Cancel_after with Picos_select:
- async round-trips over time/1 worker:
- 0.25 M/s
- round-trips over time/1 worker:
- 0.03 M/s
- time per async round-trip/1 worker:
- 4064.92 ns
- time per round-trip/1 worker:
- 34654.08 ns
- Picos Computation:
- attach detach pairs over time/1 worker:
- 5.52 M/s
- attach detach pairs over time/2 workers:
- 5.77 M/s
- attach detach pairs over time/4 workers:
- 5.96 M/s
- attach detach pairs over time/trivial:
- 21.48 M/s
- time per attach detach pair/1 worker:
- 181.17 ns
- time per attach detach pair/2 workers:
- 346.50 ns
- time per attach detach pair/4 workers:
- 670.80 ns
- time per attach detach pair/trivial:
- 46.56 ns
- Picos Current:
- ops over time/1 worker:
- 81.51 M/s
- ops over time/2 workers:
- 78.37 M/s
- ops over time/4 workers:
- 80.37 M/s
- time per op/1 worker:
- 12.27 ns
- time per op/2 workers:
- 25.52 ns
- time per op/4 workers:
- 49.77 ns
- Picos DLS:
- gets over time/1 worker:
- 184.98 M/s
- sets over time/1 worker:
- 106.95 M/s
- time per get/1 worker:
- 5.41 ns
- time per set/1 worker:
- 9.35 ns
- Picos FLS (excluding Current):
- gets over time/1 worker:
- 165.70 M/s
- sets over time/1 worker:
- 110.15 M/s
- time per get/1 worker:
- 6.04 ns
- time per set/1 worker:
- 9.08 ns
- Picos Mutex:
- locked yields over time/1 fiber:
- 0.07 M/s
- locked yields over time/2 fibers:
- 0.05 M/s
- locked yields over time/4 fibers:
- 0.04 M/s
- locked yields over time/8 fibers:
- 0.04 M/s
- time per locked yield/1 fiber:
- 13700.27 ns
- time per locked yield/2 fibers:
- 20105.39 ns
- time per locked yield/4 fibers:
- 28122.17 ns
- time per locked yield/8 fibers:
- 23788.28 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:
- 172688.96 ns
- time per spawn/2 at a time:
- 122207.66 ns
- time per spawn/4 at a time:
- 101543.71 ns
- time per spawn/8 at a time:
- 72683.04 ns
- Picos TLS:
- gets over time/1 worker:
- 112.14 M/s
- sets over time/1 worker:
- 70.58 M/s
- time per get/1 worker:
- 8.92 ns
- time per set/1 worker:
- 14.17 ns
- Picos Yield:
- time per yield/100 fibers:
- 9506.22 ns
- time per yield/10 fibers:
- 11185.38 ns
- time per yield/1 fiber:
- 13960.23 ns
- yields over time/100 fibers:
- 0.11 M/s
- yields over time/10 fibers:
- 0.09 M/s
- yields over time/1 fiber:
- 0.07 M/s
- Picos_htbl:
- operations over time/1 worker, 10% reads:
- 16.42 M/s
- operations over time/1 worker, 50% reads:
- 11.11 M/s
- operations over time/1 worker, 90% reads:
- 13.65 M/s
- operations over time/2 workers, 10% reads:
- 10.00 M/s
- operations over time/2 workers, 50% reads:
- 11.31 M/s
- operations over time/2 workers, 90% reads:
- 17.54 M/s
- operations over time/4 workers, 10% reads:
- 10.38 M/s
- operations over time/4 workers, 50% reads:
- 13.45 M/s
- operations over time/4 workers, 90% reads:
- 13.33 M/s
- operations over time/8 workers, 10% reads:
- 9.88 M/s
- operations over time/8 workers, 50% reads:
- 11.85 M/s
- operations over time/8 workers, 90% reads:
- 13.47 M/s
- time per operation/1 worker, 10% reads:
- 60.91 ns
- time per operation/1 worker, 50% reads:
- 90.00 ns
- time per operation/1 worker, 90% reads:
- 73.27 ns
- time per operation/2 workers, 10% reads:
- 199.98 ns
- time per operation/2 workers, 50% reads:
- 176.87 ns
- time per operation/2 workers, 90% reads:
- 114.00 ns
- time per operation/4 workers, 10% reads:
- 385.18 ns
- time per operation/4 workers, 50% reads:
- 297.43 ns
- time per operation/4 workers, 90% reads:
- 300.01 ns
- time per operation/8 workers, 10% reads:
- 809.38 ns
- time per operation/8 workers, 50% reads:
- 675.18 ns
- time per operation/8 workers, 90% reads:
- 594.02 ns
- Picos_stdio:
- blocking reads over time/1 worker:
- 0.04 M/s
- non-blocking reads over time/1 worker:
- 0.35 M/s
- time per blocking read/1 worker:
- 23818.05 ns
- time per non-blocking read/1 worker:
- 2855.85 ns
- Ref with Picos_sync.Mutex:
- ops over time/cas int (checked):
- 15.18 M/s
- ops over time/cas int (unchecked):
- 34.23 M/s
- ops over time/get (checked):
- 17.02 M/s
- ops over time/get (unchecked):
- 38.79 M/s
- ops over time/incr (checked):
- 16.58 M/s
- ops over time/incr (unchecked):
- 38.81 M/s
- ops over time/push & pop (checked):
- 12.37 M/s
- ops over time/push & pop (unchecked):
- 32.82 M/s
- ops over time/swap (checked):
- 15.11 M/s
- ops over time/swap (unchecked):
- 22.74 M/s
- ops over time/xchg int (checked):
- 15.17 M/s
- ops over time/xchg int (unchecked):
- 28.63 M/s
- time per op/cas int (checked):
- 65.86 ns
- time per op/cas int (unchecked):
- 29.22 ns
- time per op/get (checked):
- 58.74 ns
- time per op/get (unchecked):
- 25.78 ns
- time per op/incr (checked):
- 60.30 ns
- time per op/incr (unchecked):
- 25.77 ns
- time per op/push & pop (checked):
- 80.86 ns
- time per op/push & pop (unchecked):
- 30.47 ns
- time per op/swap (checked):
- 66.17 ns
- time per op/swap (unchecked):
- 43.98 ns
- time per op/xchg int (checked):
- 65.91 ns
- time per op/xchg int (unchecked):
- 34.92 ns
- (cd _build/default/test && ./test_htbl.exe)
-
random seed: 127759230
- 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
[ ] 4 0 0 4 / 1000 0.1s Picos_htbl concurrent
[ ] 9 0 0 9 / 1000 0.3s Picos_htbl concurrent
[ ] 11 0 0 11 / 1000 0.6s Picos_htbl concurrent
[ ] 12 0 0 12 / 1000 0.8s Picos_htbl concurrent
[ ] 22 0 0 22 / 1000 1.0s Picos_htbl concurrent
[ ] 33 0 0 33 / 1000 1.1s Picos_htbl concurrent
[ ] 42 0 0 42 / 1000 1.3s Picos_htbl concurrent
[ ] 51 0 0 51 / 1000 1.5s Picos_htbl concurrent
[ ] 74 0 0 74 / 1000 1.7s Picos_htbl concurrent
[ ] 75 0 0 75 / 1000 1.9s Picos_htbl concurrent
[ ] 80 0 0 80 / 1000 2.0s Picos_htbl concurrent
[ ] 94 0 0 94 / 1000 2.2s Picos_htbl concurrent
[ ] 97 0 0 97 / 1000 2.3s Picos_htbl concurrent
[ ] 99 0 0 99 / 1000 2.4s Picos_htbl concurrent
[ ] 112 0 0 112 / 1000 2.6s Picos_htbl concurrent
[ ] 117 0 0 117 / 1000 2.7s Picos_htbl concurrent
[ ] 144 0 0 144 / 1000 2.8s Picos_htbl concurrent
[ ] 147 0 0 147 / 1000 3.0s Picos_htbl concurrent
[ ] 148 0 0 148 / 1000 3.2s Picos_htbl concurrent
[ ] 152 0 0 152 / 1000 3.4s Picos_htbl concurrent
[ ] 161 0 0 161 / 1000 3.5s Picos_htbl concurrent
[ ] 166 0 0 166 / 1000 3.7s Picos_htbl concurrent
[ ] 167 0 0 167 / 1000 4.0s Picos_htbl concurrent
[ ] 173 0 0 173 / 1000 4.2s Picos_htbl concurrent
[ ] 180 0 0 180 / 1000 4.3s Picos_htbl concurrent
[ ] 196 0 0 196 / 1000 4.5s Picos_htbl concurrent
[ ] 197 0 0 197 / 1000 4.7s Picos_htbl concurrent
[ ] 211 0 0 211 / 1000 4.9s Picos_htbl concurrent
[ ] 219 0 0 219 / 1000 5.2s Picos_htbl concurrent
[ ] 226 0 0 226 / 1000 5.3s Picos_htbl concurrent
[ ] 231 0 0 231 / 1000 5.5s Picos_htbl concurrent
[ ] 239 0 0 239 / 1000 5.6s Picos_htbl concurrent
[ ] 265 0 0 265 / 1000 5.9s Picos_htbl concurrent
[ ] 274 0 0 274 / 1000 6.1s Picos_htbl concurrent
[ ] 280 0 0 280 / 1000 6.2s Picos_htbl concurrent
[ ] 288 0 0 288 / 1000 6.4s Picos_htbl concurrent
[ ] 305 0 0 305 / 1000 6.6s Picos_htbl concurrent
[ ] 306 0 0 306 / 1000 6.8s Picos_htbl concurrent
[ ] 308 0 0 308 / 1000 7.0s Picos_htbl concurrent
[ ] 315 0 0 315 / 1000 7.1s Picos_htbl concurrent
[ ] 325 0 0 325 / 1000 7.2s Picos_htbl concurrent
[ ] 335 0 0 335 / 1000 7.4s Picos_htbl concurrent
[ ] 337 0 0 337 / 1000 7.5s Picos_htbl concurrent
[ ] 339 0 0 339 / 1000 7.7s Picos_htbl concurrent
[ ] 353 0 0 353 / 1000 7.9s Picos_htbl concurrent
[ ] 357 0 0 357 / 1000 8.0s Picos_htbl concurrent
[ ] 369 0 0 369 / 1000 8.3s Picos_htbl concurrent
[ ] 385 0 0 385 / 1000 8.4s Picos_htbl concurrent
[ ] 407 0 0 407 / 1000 8.5s Picos_htbl concurrent
[ ] 417 0 0 417 / 1000 8.8s Picos_htbl concurrent
[ ] 445 0 0 445 / 1000 9.0s Picos_htbl concurrent
[ ] 451 0 0 451 / 1000 9.2s Picos_htbl concurrent
[ ] 469 0 0 469 / 1000 9.4s Picos_htbl concurrent
[ ] 475 0 0 475 / 1000 9.7s Picos_htbl concurrent
[ ] 481 0 0 481 / 1000 9.8s Picos_htbl concurrent
[ ] 497 0 0 497 / 1000 10.0s Picos_htbl concurrent
[ ] 503 0 0 503 / 1000 10.1s Picos_htbl concurrent
[ ] 505 0 0 505 / 1000 10.2s Picos_htbl concurrent
[ ] 511 0 0 511 / 1000 10.3s Picos_htbl concurrent
[ ] 519 0 0 519 / 1000 10.5s Picos_htbl concurrent
[ ] 522 0 0 522 / 1000 10.6s Picos_htbl concurrent
[ ] 534 0 0 534 / 1000 10.7s Picos_htbl concurrent
[ ] 551 0 0 551 / 1000 10.8s Picos_htbl concurrent
[ ] 557 0 0 557 / 1000 11.0s Picos_htbl concurrent
[ ] 563 0 0 563 / 1000 11.1s Picos_htbl concurrent
[ ] 566 0 0 566 / 1000 11.3s Picos_htbl concurrent
[ ] 570 0 0 570 / 1000 11.4s Picos_htbl concurrent
[ ] 579 0 0 579 / 1000 11.8s Picos_htbl concurrent
[ ] 580 0 0 580 / 1000 11.9s Picos_htbl concurrent
[ ] 585 0 0 585 / 1000 12.0s Picos_htbl concurrent
[ ] 589 0 0 589 / 1000 12.1s Picos_htbl concurrent
[ ] 593 0 0 593 / 1000 12.2s Picos_htbl concurrent
[ ] 617 0 0 617 / 1000 12.4s Picos_htbl concurrent
[ ] 619 0 0 619 / 1000 12.5s Picos_htbl concurrent
[ ] 630 0 0 630 / 1000 12.7s Picos_htbl concurrent
[ ] 640 0 0 640 / 1000 12.8s Picos_htbl concurrent
[ ] 645 0 0 645 / 1000 13.0s Picos_htbl concurrent
[ ] 654 0 0 654 / 1000 13.1s Picos_htbl concurrent
[ ] 657 0 0 657 / 1000 13.3s Picos_htbl concurrent
[ ] 661 0 0 661 / 1000 13.5s Picos_htbl concurrent
[ ] 662 0 0 662 / 1000 13.6s Picos_htbl concurrent
[ ] 666 0 0 666 / 1000 13.8s Picos_htbl concurrent
[ ] 677 0 0 677 / 1000 13.9s Picos_htbl concurrent
[ ] 696 0 0 696 / 1000 14.1s Picos_htbl concurrent
[ ] 702 0 0 702 / 1000 14.2s Picos_htbl concurrent
[ ] 703 0 0 703 / 1000 14.4s Picos_htbl concurrent
[ ] 705 0 0 705 / 1000 14.5s Picos_htbl concurrent
[ ] 723 0 0 723 / 1000 14.6s Picos_htbl concurrent
[ ] 726 0 0 726 / 1000 14.9s Picos_htbl concurrent
[ ] 730 0 0 730 / 1000 15.0s Picos_htbl concurrent
[ ] 753 0 0 753 / 1000 15.1s Picos_htbl concurrent
[ ] 756 0 0 756 / 1000 15.3s Picos_htbl concurrent
[ ] 759 0 0 759 / 1000 15.5s Picos_htbl concurrent
[ ] 775 0 0 775 / 1000 15.6s Picos_htbl concurrent
[ ] 792 0 0 792 / 1000 15.7s Picos_htbl concurrent
[ ] 799 0 0 799 / 1000 15.9s Picos_htbl concurrent
[ ] 807 0 0 807 / 1000 16.0s Picos_htbl concurrent
[ ] 815 0 0 815 / 1000 16.2s Picos_htbl concurrent
[ ] 827 0 0 827 / 1000 16.3s Picos_htbl concurrent
[ ] 831 0 0 831 / 1000 16.5s Picos_htbl concurrent
[ ] 838 0 0 838 / 1000 16.7s Picos_htbl concurrent
[ ] 843 0 0 843 / 1000 17.1s Picos_htbl concurrent
[ ] 848 0 0 848 / 1000 17.2s Picos_htbl concurrent
[ ] 864 0 0 864 / 1000 17.3s Picos_htbl concurrent
[ ] 866 0 0 866 / 1000 17.5s Picos_htbl concurrent
[ ] 885 0 0 885 / 1000 17.6s Picos_htbl concurrent
[ ] 887 0 0 887 / 1000 17.7s Picos_htbl concurrent
[ ] 889 0 0 889 / 1000 17.8s Picos_htbl concurrent
[ ] 909 0 0 909 / 1000 18.0s Picos_htbl concurrent
[ ] 926 0 0 926 / 1000 18.2s Picos_htbl concurrent
[ ] 936 0 0 936 / 1000 18.3s Picos_htbl concurrent
[ ] 943 0 0 943 / 1000 18.5s Picos_htbl concurrent
[ ] 955 0 0 955 / 1000 18.6s Picos_htbl concurrent
[ ] 959 0 0 959 / 1000 18.7s Picos_htbl concurrent
[ ] 973 0 0 973 / 1000 18.8s Picos_htbl concurrent
[ ] 987 0 0 987 / 1000 18.9s Picos_htbl concurrent
[ ] 999 0 0 999 / 1000 19.0s Picos_htbl concurrent
[✓] 1000 0 0 1000 / 1000 19.0s Picos_htbl concurrent
- ================================================================================
- success (ran 2 tests)
-> compiled picos.0.3.0
-> removed picos.0.3.0
-> installed picos.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:51.02 ---> saved as "6655098bc975a6958aa8433376abe6db24032c19f80b85f9b9b831e0098f6cd8"
Job succeeded
2026-03-17 11:51.08: Job succeeded