- github
- ocaml
- opam-repository
- 395113
- distributions,fedora-43-ocaml-4.14,picos.0.4.0,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:25.58: New job: test picos.0.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
on fedora-43-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:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36
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 "\"fedora-43\""; 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 "\"fedora-43\""; 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.58: Using cache hint "ocaml/opam:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36-picos.0.4.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.58: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36)
(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 \"\\\"fedora-43\\\"\"; 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 \"\\\"fedora-43\\\"\"; 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.58: Waiting for resource in pool OCluster
2026-03-17 11:34.05: Waiting for worker…
2026-03-17 11:36.11: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
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:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36)
2026-03-17 11:36.41 ---> saved as "3884e3e896ded403567ac77f2e5e2905f6d6bf57a6c589d816e8485067db09fa"
/: (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:36.42 ---> saved as "676c1c4d1f08290abc7fb12e5f3c58677a8aad6ed78d454b4de6e95157ef1128"
/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:37.07 ---> saved as "b0613f11496eaa4360b32b2c46db38e24a87c5b22684b3d612963528ae2e897f"
/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=fedora os-version=43
# 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:37.07 ---> saved as "83426772abcb03b6c3bfca5325d56a14da150be2813933d74fc3cfea38c17caa"
/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:37.18 ---> saved as "a02d89194f551b938d741567656ed4dc20ff35ad80167ba821ac061ca989a676"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:37.33 ---> saved as "b2d8607671a804ed0f176620b2c3cf87769d6add6ab067a5fc4ad630684c0c58"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:37.56 ---> saved as "c92f6347a18319e2ec469034af188eb63b60c02087ba2dd287cc5ca374076f7e"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 - x86_64 100% | 55.1 KiB/s | 23.1 KiB | 00m00s
- Fedora 43 openh264 (From Cisco) - x86_ 100% | 3.6 KiB/s | 986.0 B | 00m00s
- Fedora 43 - x86_64 - Updates 100% | 46.6 KiB/s | 7.1 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-03-17 11:38.01 ---> saved as "b575ecf00af787a0e32a1f1a59d64b38820c9acea90502931e7be4c2ad6d0f7b"
/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:38.02 ---> saved as "ad284f3c0ef5989473ae808023f9c112aea5f228326f7a7295c0bda121ebb5ea"
/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 \"\\\"fedora-43\\\"\"; 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:39.05 ---> saved as "85c2be0613810b56597ddd9c4be3132b388a05419739eafc271472bde1576e44"
/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 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/sbin/sudo "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- nodejs-npm x86_64 1:10.9.4-1.22.22.0.2.fc43 updates 9.2 MiB
- Installing dependencies:
- c-ares x86_64 1.34.5-2.fc43 fedora 269.1 KiB
- libuv x86_64 1:1.51.0-2.fc43 fedora 570.2 KiB
- nodejs x86_64 1:22.22.0-2.fc43 updates 161.6 KiB
- nodejs-libs x86_64 1:22.22.0-2.fc43 updates 78.1 MiB
- Installing weak dependencies:
- nodejs-docs noarch 1:22.22.0-2.fc43 updates 97.5 MiB
- nodejs-full-i18n x86_64 1:22.22.0-2.fc43 updates 30.4 MiB
-
- Transaction Summary:
- Installing: 7 packages
-
- Total size of inbound packages is 40 MiB. Need to download 40 MiB.
- After this operation, 216 MiB extra will be used (install 216 MiB, remove 0 B).
- [1/7] nodejs-1:22.22.0-2.fc43.x86_64 100% | 642.7 KiB/s | 51.4 KiB | 00m00s
- [2/7] c-ares-0:1.34.5-2.fc43.x86_64 100% | 2.2 MiB/s | 117.0 KiB | 00m00s
- [3/7] libuv-1:1.51.0-2.fc43.x86_64 100% | 6.2 MiB/s | 266.1 KiB | 00m00s
- [4/7] nodejs-npm-1:10.9.4-1.22.22.0.2.f 100% | 11.8 MiB/s | 2.3 MiB | 00m00s
- [5/7] nodejs-full-i18n-1:22.22.0-2.fc43 100% | 22.6 MiB/s | 8.5 MiB | 00m00s
- [6/7] nodejs-docs-1:22.22.0-2.fc43.noar 100% | 16.7 MiB/s | 9.1 MiB | 00m01s
- [7/7] nodejs-libs-1:22.22.0-2.fc43.x86_ 100% | 23.2 MiB/s | 19.6 MiB | 00m01s
- --------------------------------------------------------------------------------
- [7/7] Total 100% | 34.1 MiB/s | 40.1 MiB | 00m01s
- Running transaction
- [1/9] Verify package files 100% | 14.0 B/s | 7.0 B | 00m00s
- [2/9] Prepare transaction 100% | 75.0 B/s | 7.0 B | 00m00s
- [3/9] Installing libuv-1:1.51.0-2.fc43. 100% | 111.9 MiB/s | 573.0 KiB | 00m00s
- [4/9] Installing c-ares-0:1.34.5-2.fc43 100% | 66.1 MiB/s | 270.6 KiB | 00m00s
- [5/9] Installing nodejs-libs-1:22.22.0- 100% | 147.2 MiB/s | 78.1 MiB | 00m01s
- [6/9] Installing nodejs-1:22.22.0-2.fc4 100% | 3.5 MiB/s | 163.7 KiB | 00m00s
- [7/9] Installing nodejs-npm-1:10.9.4-1. 100% | 30.1 MiB/s | 9.6 MiB | 00m00s
- [8/9] Installing nodejs-full-i18n-1:22. 100% | 148.4 MiB/s | 30.4 MiB | 00m00s
- [9/9] Installing nodejs-docs-1:22.22.0- 100% | 548.4 MiB/s | 97.6 MiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.4-1.22.22.0.2.fc43.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)
-> installed conf-npm.1
-> 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)
-> installed cmdliner.2.1.0
-> installed containers.3.18
-> installed gen.1.1
-> installed fmt.0.11.0
-> retrieved mdx.2.5.1 (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (https://opam.ocaml.org/cache)
-> retrieved multicore-bench.0.1.7 (https://opam.ocaml.org/cache)
-> installed menhirCST.20260209
-> 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)
-> retrieved oseq.0.5.1 (https://opam.ocaml.org/cache)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> 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
-> 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)
-> 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)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4 (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
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed uutf.1.0.4
-> installed qcheck-multicoretests-util.0.10
-> installed qcheck-stm.0.10
-> removed picos.0.4.0
-> installed yojson.3.0.0
-> 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-17 11:40.39 ---> saved as "5aa0164ecc61c2124c11cb2b96934f37d1ff111b649aa88246fb3b94c9416d36"
/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 \"\\\"fedora-43\\\"\"; 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"))
[WARNING] Opam package conf-npm.1 depends on the following system package that can no longer be found: npm
The following actions will be performed:
=== recompile 2 packages
- recompile conf-npm 1 [upstream or system changes]
- recompile picos 0.4.0 (pinned)
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 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/sbin/sudo "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package "nodejs-npm-1:10.9.4-1.22.22.0.2.fc43.x86_64" is already installed.
-
- Nothing to do.
+ /usr/sbin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.4-1.22.22.0.2.fc43.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 3/8: [conf-npm: npm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "npm" "--version" (CWD=/home/opam/.opam/4.14/.opam-switch/build/conf-npm.1)
- 10.9.4
-> compiled conf-npm.1
-> removed picos.0.4.0
-> removed conf-npm.1
-> installed conf-npm.1
Processing 7/8: [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: 233133471
- 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 blocking sockets and threads on OCaml 4:
- Recursive server running
- Server listening
- Server accepting
- Client B running
- Client A running
- Server accepted client
- Client B connected
- Server accepting
- Client A connected
- Client B wrote 100
- Server read 100
- Client A wrote 100
- Server accepted client
- Client B read 50
- 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 `7MA77PG6'.
-
- [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 `6VLS5F5X'.
-
- [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/sbin/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 `A68UMIRH'.
-
- [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.339s. 6 tests run.
- (cd _build/default/test && ./test_structured.exe)
- Testing `Picos_structured'.
- This run has ID `NIYIK3WP'.
-
- [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 `4AJT32SE'.
-
- [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.609s. 5 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `8XODZR4P'.
-
- [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.981s. 1 test run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `KIEKUHSE'.
-
- [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.36 M/s
- round-trips over time/1 worker:
- 0.04 M/s
- time per async round-trip/1 worker:
- 2793.01 ns
- time per round-trip/1 worker:
- 27491.20 ns
- Picos Computation:
- attach detach pairs over time/1 worker:
- 8.45 M/s
- attach detach pairs over time/2 workers:
- 8.44 M/s
- attach detach pairs over time/4 workers:
- 6.03 M/s
- attach detach pairs over time/trivial:
- 36.55 M/s
- time per attach detach pair/1 worker:
- 118.38 ns
- time per attach detach pair/2 workers:
- 237.06 ns
- time per attach detach pair/4 workers:
- 663.77 ns
- time per attach detach pair/trivial:
- 27.36 ns
- Picos Current:
- ops over time/1 worker:
- 129.33 M/s
- ops over time/2 workers:
- 113.78 M/s
- ops over time/4 workers:
- 121.67 M/s
- time per op/1 worker:
- 7.73 ns
- time per op/2 workers:
- 17.59 ns
- time per op/4 workers:
- 32.88 ns
- Picos DLS:
- gets over time/1 worker:
- 322.22 M/s
- sets over time/1 worker:
- 172.25 M/s
- time per get/1 worker:
- 3.10 ns
- time per set/1 worker:
- 5.81 ns
- Picos FLS (excluding Current):
- gets over time/1 worker:
- 231.66 M/s
- sets over time/1 worker:
- 189.46 M/s
- time per get/1 worker:
- 4.32 ns
- time per set/1 worker:
- 5.28 ns
- Picos Mutex:
- locked yields over time/1 fiber:
- 0.09 M/s
- locked yields over time/2 fibers:
- 0.06 M/s
- locked yields over time/4 fibers:
- 0.05 M/s
- locked yields over time/8 fibers:
- 0.06 M/s
- time per locked yield/1 fiber:
- 11509.80 ns
- time per locked yield/2 fibers:
- 16289.53 ns
- time per locked yield/4 fibers:
- 19458.84 ns
- time per locked yield/8 fibers:
- 16490.19 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:
- 70185.30 ns
- time per spawn/2 at a time:
- 71560.84 ns
- time per spawn/4 at a time:
- 84422.46 ns
- time per spawn/8 at a time:
- 69666.12 ns
- Picos TLS:
- gets over time/1 worker:
- 164.74 M/s
- sets over time/1 worker:
- 119.21 M/s
- time per get/1 worker:
- 6.07 ns
- time per set/1 worker:
- 8.39 ns
- Picos Yield:
- time per yield/100 fibers:
- 8376.10 ns
- time per yield/10 fibers:
- 7122.36 ns
- time per yield/1 fiber:
- 10823.62 ns
- yields over time/100 fibers:
- 0.12 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:
- 22.10 kB
- binary size/picos_domain:
- 7.68 kB
- binary size/picos_exn_bt:
- 12.05 kB
- binary size/picos_fd:
- 10.25 kB
- binary size/picos_htbl:
- 46.19 kB
- binary size/picos_mpscq:
- 19.34 kB
- binary size/picos_rc:
- 19.81 kB
- binary size/picos_select:
- 57.56 kB
- binary size/picos_stdio:
- 91.59 kB
- binary size/picos_structured:
- 66.88 kB
- binary size/picos_sync:
- 61.13 kB
- binary size/picos_thread:
- 4.29 kB
- binary size/picos_threaded:
- 26.41 kB
- Picos_htbl:
- operations over time/1 worker, 10% reads:
- 12.83 M/s
- operations over time/1 worker, 50% reads:
- 14.92 M/s
- operations over time/1 worker, 90% reads:
- 19.21 M/s
- time per operation/1 worker, 10% reads:
- 77.93 ns
- time per operation/1 worker, 50% reads:
- 67.02 ns
- time per operation/1 worker, 90% reads:
- 52.06 ns
- Picos_mpscq:
- messages over time/1 nb adder, 1 nb taker:
- 63.65 M/s
- messages over time/2 nb adders, 1 nb taker:
- 70.92 M/s
- messages over time/4 nb adders, 1 nb taker:
- 60.15 M/s
- messages over time/one domain:
- 26.27 M/s
- time per message/1 nb adder, 1 nb taker:
- 31.42 ns
- time per message/2 nb adders, 1 nb taker:
- 42.31 ns
- time per message/4 nb adders, 1 nb taker:
- 83.13 ns
- time per message/one domain:
- 38.06 ns
- Picos_stdio:
- blocking reads over time/1 worker:
- 0.07 M/s
- non-blocking reads over time/1 worker:
- 0.35 M/s
- time per blocking read/1 worker:
- 13392.86 ns
- time per non-blocking read/1 worker:
- 2822.30 ns
- Ref with Picos_sync.Mutex:
- ops over time/cas int (checked):
- 22.70 M/s
- ops over time/cas int (unchecked):
- 30.34 M/s
- ops over time/get (checked):
- 24.71 M/s
- ops over time/get (unchecked):
- 35.39 M/s
- ops over time/incr (checked):
- 24.73 M/s
- ops over time/incr (unchecked):
- 35.33 M/s
- ops over time/push & pop (checked):
- 20.84 M/s
- ops over time/push & pop (unchecked):
- 30.22 M/s
- ops over time/swap (checked):
- 22.97 M/s
- ops over time/swap (unchecked):
- 30.61 M/s
- ops over time/xchg int (checked):
- 22.82 M/s
- ops over time/xchg int (unchecked):
- 30.69 M/s
- time per op/cas int (checked):
- 44.05 ns
- time per op/cas int (unchecked):
- 32.96 ns
- time per op/get (checked):
- 40.47 ns
- time per op/get (unchecked):
- 28.25 ns
- time per op/incr (checked):
- 40.43 ns
- time per op/incr (unchecked):
- 28.31 ns
- time per op/push & pop (checked):
- 47.98 ns
- time per op/push & pop (unchecked):
- 33.09 ns
- time per op/swap (checked):
- 43.54 ns
- time per op/swap (unchecked):
- 32.67 ns
- time per op/xchg int (checked):
- 43.83 ns
- time per op/xchg int (unchecked):
- 32.59 ns
- (cd _build/default/test && ./test_htbl.exe)
-
random seed: 78520410
- 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
[ ] 21 0 0 21 / 1000 0.1s Picos_htbl concurrent
[ ] 23 0 0 23 / 1000 0.3s Picos_htbl concurrent
[ ] 36 0 0 36 / 1000 0.4s Picos_htbl concurrent
[ ] 50 0 0 50 / 1000 0.5s Picos_htbl concurrent
[ ] 65 0 0 65 / 1000 0.7s Picos_htbl concurrent
[ ] 73 0 0 73 / 1000 0.8s Picos_htbl concurrent
[ ] 74 0 0 74 / 1000 1.0s Picos_htbl concurrent
[ ] 82 0 0 82 / 1000 1.2s Picos_htbl concurrent
[ ] 85 0 0 85 / 1000 1.3s Picos_htbl concurrent
[ ] 86 0 0 86 / 1000 1.4s Picos_htbl concurrent
[ ] 119 0 0 119 / 1000 1.6s Picos_htbl concurrent
[ ] 128 0 0 128 / 1000 1.8s Picos_htbl concurrent
[ ] 143 0 0 143 / 1000 2.0s Picos_htbl concurrent
[ ] 167 0 0 167 / 1000 2.2s Picos_htbl concurrent
[ ] 189 0 0 189 / 1000 2.3s Picos_htbl concurrent
[ ] 208 0 0 208 / 1000 2.4s Picos_htbl concurrent
[ ] 239 0 0 239 / 1000 2.5s Picos_htbl concurrent
[ ] 260 0 0 260 / 1000 2.6s Picos_htbl concurrent
[ ] 274 0 0 274 / 1000 2.7s Picos_htbl concurrent
[ ] 275 0 0 275 / 1000 2.9s Picos_htbl concurrent
[ ] 284 0 0 284 / 1000 3.0s Picos_htbl concurrent
[ ] 288 0 0 288 / 1000 3.2s Picos_htbl concurrent
[ ] 296 0 0 296 / 1000 3.3s Picos_htbl concurrent
[ ] 315 0 0 315 / 1000 3.6s Picos_htbl concurrent
[ ] 326 0 0 326 / 1000 3.7s Picos_htbl concurrent
[ ] 348 0 0 348 / 1000 3.8s Picos_htbl concurrent
[ ] 356 0 0 356 / 1000 4.1s Picos_htbl concurrent
[ ] 361 0 0 361 / 1000 4.3s Picos_htbl concurrent
[ ] 371 0 0 371 / 1000 4.4s Picos_htbl concurrent
[ ] 384 0 0 384 / 1000 4.5s Picos_htbl concurrent
[ ] 389 0 0 389 / 1000 4.7s Picos_htbl concurrent
[ ] 405 0 0 405 / 1000 4.8s Picos_htbl concurrent
[ ] 423 0 0 423 / 1000 4.9s Picos_htbl concurrent
[ ] 442 0 0 442 / 1000 5.0s Picos_htbl concurrent
[ ] 443 0 0 443 / 1000 5.1s Picos_htbl concurrent
[ ] 459 0 0 459 / 1000 5.3s Picos_htbl concurrent
[ ] 480 0 0 480 / 1000 5.4s Picos_htbl concurrent
[ ] 490 0 0 490 / 1000 5.6s Picos_htbl concurrent
[ ] 493 0 0 493 / 1000 5.7s Picos_htbl concurrent
[ ] 513 0 0 513 / 1000 5.8s Picos_htbl concurrent
[ ] 517 0 0 517 / 1000 6.0s Picos_htbl concurrent
[ ] 541 0 0 541 / 1000 6.1s Picos_htbl concurrent
[ ] 556 0 0 556 / 1000 6.3s Picos_htbl concurrent
[ ] 571 0 0 571 / 1000 6.5s Picos_htbl concurrent
[ ] 589 0 0 589 / 1000 6.7s Picos_htbl concurrent
[ ] 624 0 0 624 / 1000 6.8s Picos_htbl concurrent
[ ] 637 0 0 637 / 1000 7.0s Picos_htbl concurrent
[ ] 647 0 0 647 / 1000 7.2s Picos_htbl concurrent
[ ] 659 0 0 659 / 1000 7.3s Picos_htbl concurrent
[ ] 677 0 0 677 / 1000 7.4s Picos_htbl concurrent
[ ] 686 0 0 686 / 1000 7.5s Picos_htbl concurrent
[ ] 687 0 0 687 / 1000 7.7s Picos_htbl concurrent
[ ] 701 0 0 701 / 1000 7.9s Picos_htbl concurrent
[ ] 715 0 0 715 / 1000 8.0s Picos_htbl concurrent
[ ] 721 0 0 721 / 1000 8.2s Picos_htbl concurrent
[ ] 740 0 0 740 / 1000 8.3s Picos_htbl concurrent
[ ] 747 0 0 747 / 1000 8.4s Picos_htbl concurrent
[ ] 754 0 0 754 / 1000 8.6s Picos_htbl concurrent
[ ] 757 0 0 757 / 1000 8.7s Picos_htbl concurrent
[ ] 780 0 0 780 / 1000 8.8s Picos_htbl concurrent
[ ] 788 0 0 788 / 1000 8.9s Picos_htbl concurrent
[ ] 798 0 0 798 / 1000 9.1s Picos_htbl concurrent
[ ] 800 0 0 800 / 1000 9.2s Picos_htbl concurrent
[ ] 814 0 0 814 / 1000 9.5s Picos_htbl concurrent
[ ] 817 0 0 817 / 1000 9.6s Picos_htbl concurrent
[ ] 824 0 0 824 / 1000 9.7s Picos_htbl concurrent
[ ] 836 0 0 836 / 1000 9.8s Picos_htbl concurrent
[ ] 847 0 0 847 / 1000 10.0s Picos_htbl concurrent
[ ] 865 0 0 865 / 1000 10.1s Picos_htbl concurrent
[ ] 872 0 0 872 / 1000 10.3s Picos_htbl concurrent
[ ] 884 0 0 884 / 1000 10.5s Picos_htbl concurrent
[ ] 891 0 0 891 / 1000 10.7s Picos_htbl concurrent
[ ] 900 0 0 900 / 1000 10.8s Picos_htbl concurrent
[ ] 906 0 0 906 / 1000 11.0s Picos_htbl concurrent
[ ] 920 0 0 920 / 1000 11.1s Picos_htbl concurrent
[ ] 930 0 0 930 / 1000 11.2s Picos_htbl concurrent
[ ] 937 0 0 937 / 1000 11.3s Picos_htbl concurrent
[ ] 949 0 0 949 / 1000 11.5s Picos_htbl concurrent
[ ] 954 0 0 954 / 1000 11.6s Picos_htbl concurrent
[ ] 957 0 0 957 / 1000 11.8s Picos_htbl concurrent
[ ] 963 0 0 963 / 1000 12.0s Picos_htbl concurrent
[ ] 971 0 0 971 / 1000 12.2s Picos_htbl concurrent
[ ] 989 0 0 989 / 1000 12.4s Picos_htbl concurrent
[ ] 998 0 0 998 / 1000 12.6s Picos_htbl concurrent
[✓] 1000 0 0 1000 / 1000 12.6s Picos_htbl concurrent
- ================================================================================
- success (ran 2 tests)
-> compiled picos.0.4.0
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:40.59 ---> saved as "6819a198c91b3b52e1f0dd731f24995e949299fe4a01d694b8fcfea64370fe87"
Job succeeded
2026-03-17 11:41.04: Job succeeded