- github
- ocaml
- opam-repository
- 395113
- distributions,archlinux-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 archlinux-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:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299
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 "\"archlinux\""; 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 "\"archlinux\""; 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:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299-picos.0.3.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.59: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299)
(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 \"\\\"archlinux\\\"\"; 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 \"\\\"archlinux\\\"\"; 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:45.08: Waiting for worker…
2026-03-17 11:47.07: Got resource from pool OCluster
Building on asteria.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:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299)
2026-03-17 11:47.16 ---> using "a466eae14070aec815f5a6ffa3db347a0e358a5fb79fdc6b3b6116aa3b4206b7" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 11:47.16 ---> using "de8e3509b0887e428166ac0426de011b77defbed7fbffae35f3f6234dd304a96" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 11:47.16 ---> using "07eeae27e857ac1a894a10ea873016463354dc0e35513a66fe1a537e374e6658" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=arch os-version=20260308.0.497099
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-17 11:47.16 ---> using "49e4f6621d764b0f376d2b8c1568a083f0a8e84498dd7ab03dbbec1c427bfe38" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 11:47.16 ---> using "30067455dfbbca5df814db79ab3e8982ea7f7bf02bf20edfc7c229a0a1ed8cdd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:47.17 ---> using "52a3c3119f93e1f4e1ecd15cfdc0b0060d83bb2307a8cbe97109276e52212254" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:47.17 ---> using "eb204ea1d62b91ea3840f128c7f23892ae4214fe1ba3d8e84ca942a13677592a" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-03-17 11:47.17 ---> using "092a3eacc3edb756f309e8371a41febc489250b11e4945a49f1e86311fbf0811" from cache
/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.17 ---> using "dccd396d896b3c10c1c92877c4fc12e6f4b92b95ffe8bc4a8c5d6405e84455b7" from cache
/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 \"\\\"archlinux\\\"\"; 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
∗ backoff 0.1.1 [required by picos]
∗ base-bytes base [required by ocplib-endian]
∗ cppo 1.8.0 [required by lwt]
∗ csexp 1.5.2 [required by dune-configurator]
∗ dune 3.21.1 [required by picos]
∗ dune-configurator 3.21.1 [required by lwt]
∗ lwt 6.1.1 [required by picos]
∗ mtime 2.1.0 [required by picos]
∗ multicore-magic 2.3.2 [required by picos]
∗ ocamlbuild 0.16.1 [required by mtime]
∗ ocamlfind 1.9.8 [required by mtime]
∗ ocplib-endian 1.2 [required by lwt]
∗ picos 0.3.0 (pinned)
∗ psq 0.2.1 [required by picos]
∗ seq base [required by psq]
∗ thread-local-storage 0.1 [required by picos]
∗ 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 backoff.0.1.1
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed multicore-magic.2.3.2
∗ installed psq.0.2.1
∗ installed thread-local-storage.0.1
∗ installed ocplib-endian.1.2
∗ installed dune-configurator.3.21.1
∗ installed lwt.6.1.1
∗ installed picos.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:47.50 ---> saved as "90c5546460bf0ebfefc36662ec386fc5a391f5e66f7c38b3c0d38736f6800aae"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test picos.0.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ picos 0.3.0 (pinned)
=== install 40 packages
∗ alcotest 1.9.1 [required by picos]
∗ astring 0.8.5 [required by alcotest, mdx]
∗ camlp-streams 5.0.1 [required by mdx]
∗ cmdliner 2.1.0 [required by dscheck, alcotest, mdx]
∗ conf-npm 1 [required by picos]
∗ containers 3.18 [required by dscheck]
∗ domain-local-await 1.0.1 [required by multicore-bench]
∗ domain_shims 0.1.0 [required by picos]
∗ dscheck 0.5.0 [required by picos]
∗ either 1.0.0 [required by containers]
∗ fmt 0.11.0 [required by alcotest, mdx]
∗ gen 1.1 [required by sedlex]
∗ js_of_ocaml 5.8.2 [required by picos]
∗ js_of_ocaml-compiler 5.8.2 [required by js_of_ocaml]
∗ logs 0.10.0 [required by mdx]
∗ mdx 2.5.1 [required by picos]
∗ menhir 20260209 [required by js_of_ocaml-compiler]
∗ menhirCST 20260209 [required by menhir]
∗ menhirGLR 20260209 [required by menhir]
∗ menhirLib 20260209 [required by js_of_ocaml-compiler]
∗ menhirSdk 20260209 [required by js_of_ocaml-compiler]
∗ multicore-bench 0.1.7 [required by picos]
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ocaml-syntax-shims 1.0.0 [required by alcotest]
∗ ocaml-version 4.0.3 [required by picos]
∗ oseq 0.5.1 [required by dscheck]
∗ ppx_derivers 1.2.1 [required by ppxlib]
∗ ppxlib 0.35.0 [required by js_of_ocaml]
∗ qcheck-core 0.91 [required by picos]
∗ qcheck-multicoretests-util 0.10 [required by picos]
∗ qcheck-stm 0.10 [required by picos]
∗ re 1.14.0 [required by alcotest, mdx]
∗ result 1.5 [required by mdx]
∗ sedlex 3.7 [required by js_of_ocaml-compiler]
∗ sexplib0 v0.17.0 [required by ppxlib]
∗ stdlib-shims 0.3.0 [required by alcotest]
∗ thread-table 1.0.0 [required by domain-local-await]
∗ tsort 2.2.0 [required by dscheck]
∗ uutf 1.0.4 [required by alcotest]
∗ 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 pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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 "pacman" "-Su" "--noconfirm" "npm"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (9) New Version Net Change Download Size
-
- extra/ada 3.4.3-1 1.08 MiB 0.28 MiB
- extra/c-ares 1.34.6-1 0.51 MiB 0.22 MiB
- extra/libuv 1.52.1-1 0.64 MiB 0.26 MiB
- extra/node-gyp 12.2.0-1 7.84 MiB 1.15 MiB
- extra/nodejs 25.8.1-1 63.47 MiB 15.71 MiB
- extra/nodejs-nopt 8.1.0-1 0.03 MiB 0.01 MiB
- extra/semver 7.7.4-1 0.09 MiB 0.03 MiB
- extra/simdjson 1:4.4.0-1 7.49 MiB 0.29 MiB
- extra/npm 11.11.1-1 7.52 MiB 1.45 MiB
-
- Total Download Size: 19.40 MiB
- Total Installed Size: 88.67 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- nodejs-25.8.1-1-x86_64 downloading...
- npm-11.11.1-1-any downloading...
- node-gyp-12.2.0-1-any downloading...
- simdjson-1:4.4.0-1-x86_64 downloading...
- ada-3.4.3-1-x86_64 downloading...
- libuv-1.52.1-1-x86_64 downloading...
- c-ares-1.34.6-1-x86_64 downloading...
- semver-7.7.4-1-any downloading...
- nodejs-nopt-8.1.0-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing ada...
- installing c-ares...
- installing libuv...
- installing simdjson...
- installing nodejs...
- Optional dependencies for nodejs
- npm: nodejs package manager [pending]
- installing nodejs-nopt...
- installing semver...
- installing node-gyp...
- Optional dependencies for node-gyp
- gcc: to build C++ modules [installed]
- make: to build C++ modules [installed]
- python: to build C++ modules
- installing npm...
- Optional dependencies for npm
- git: for dependencies using Git URL's [installed]
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...
<><> 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
∗ installed conf-npm.1
⬇ retrieved domain-local-await.1.0.1 (https://opam.ocaml.org/cache)
⬇ retrieved domain_shims.0.1.0 (https://opam.ocaml.org/cache)
⬇ retrieved dscheck.0.5.0 (https://opam.ocaml.org/cache)
⬇ 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 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 menhirCST.20260209
∗ installed fmt.0.11.0
⬇ 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)
⬇ 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
⬇ retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
∗ installed ppx_derivers.1.2.1
⬇ 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)
⬇ retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
∗ installed stdlib-shims.0.3.0
⬇ retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
∗ installed thread-table.1.0.0
∗ installed tsort.2.2.0
∗ installed sexplib0.v0.17.0
∗ installed dscheck.0.5.0
∗ installed qcheck-core.0.91
∗ installed re.1.14.0
∗ installed domain-local-await.1.0.1
∗ installed qcheck-multicoretests-util.0.10
∗ installed uutf.1.0.4
⊘ removed picos.0.3.0
∗ installed yojson.3.0.0
∗ installed qcheck-stm.0.10
∗ installed multicore-bench.0.1.7
∗ 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.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:49.09 ---> saved as "e906c980fe8bcf87f8877650c97e27b6f5167b0b2119762b52b8e59deff142fe"
/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 \"\\\"archlinux\\\"\"; 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
↻ 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" "255" "@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: 233579986
- 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 non-blocking sockets and threads on OCaml 4:
- Looping server running
- Server listening
- Server accepting
- Client A running
- Client B running
- Client A connected
- Server accepted client
- Client A wrote 100
- Server read 100
- Server accepting
- Client B connected
- Server accepted client
- Client B wrote 100
- Server read 100
- Server wrote 50
- Server accepting
- Client A read 50
- Server wrote 50
- Client B read 50
- Server and Client test: OK
- (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 `8GVGAWFX'.
-
- [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.012s. 1 test run.
- (cd _build/default/test && ./test_picos.exe)
- Testing `Picos'.
- This run has ID `HE5PNBZP'.
-
- [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.023s. 6 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `TTTWCYYJ'.
-
- [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 0.934s. 1 test run.
- (cd _build/default/test && ./test_sync.exe)
- Testing `Picos_sync'.
- This run has ID `NBK60NBX'.
-
- [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 1.366s. 5 tests run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `VRF782GT'.
-
- [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.037s. 1 test run.
- (cd _build/default/bench && ./main.exe -brief)
- Foundation Mpsc_queue:
- messages over time/1 nb adder, 1 nb taker:
- 26.95 M/s
- messages over time/2 nb adders, 1 nb taker:
- 32.22 M/s
- messages over time/4 nb adders, 1 nb taker:
- 25.48 M/s
- messages over time/one domain:
- 16.37 M/s
- time per message/1 nb adder, 1 nb taker:
- 74.20 ns
- time per message/2 nb adders, 1 nb taker:
- 93.10 ns
- time per message/4 nb adders, 1 nb taker:
- 196.21 ns
- time per message/one domain:
- 61.09 ns
- Picos Cancel_after with Picos_select:
- async round-trips over time/1 worker:
- 0.57 M/s
- round-trips over time/1 worker:
- 0.04 M/s
- time per async round-trip/1 worker:
- 1755.30 ns
- time per round-trip/1 worker:
- 27538.92 ns
- Picos Computation:
- attach detach pairs over time/1 worker:
- 12.17 M/s
- attach detach pairs over time/2 workers:
- 12.54 M/s
- attach detach pairs over time/4 workers:
- 10.96 M/s
- attach detach pairs over time/trivial:
- 45.48 M/s
- time per attach detach pair/1 worker:
- 82.18 ns
- time per attach detach pair/2 workers:
- 159.53 ns
- time per attach detach pair/4 workers:
- 364.82 ns
- time per attach detach pair/trivial:
- 21.99 ns
- Picos Current:
- ops over time/1 worker:
- 93.02 M/s
- ops over time/2 workers:
- 155.08 M/s
- ops over time/4 workers:
- 114.11 M/s
- time per op/1 worker:
- 10.75 ns
- time per op/2 workers:
- 12.90 ns
- time per op/4 workers:
- 35.11 ns
- Picos DLS:
- gets over time/1 worker:
- 157.88 M/s
- sets over time/1 worker:
- 101.04 M/s
- time per get/1 worker:
- 6.33 ns
- time per set/1 worker:
- 9.90 ns
- Picos FLS (excluding Current):
- gets over time/1 worker:
- 360.79 M/s
- sets over time/1 worker:
- 250.11 M/s
- time per get/1 worker:
- 2.77 ns
- time per set/1 worker:
- 4.00 ns
- Picos Mutex:
- locked yields over time/1 fiber:
- 0.06 M/s
- locked yields over time/2 fibers:
- 0.04 M/s
- locked yields over time/4 fibers:
- 0.04 M/s
- locked yields over time/8 fibers:
- 0.04 M/s
- time per locked yield/1 fiber:
- 16963.73 ns
- time per locked yield/2 fibers:
- 22961.85 ns
- time per locked yield/4 fibers:
- 26077.19 ns
- time per locked yield/8 fibers:
- 23126.86 ns
- Picos Spawn:
- spawns over time/1 at a time:
- 0.01 M/s
- spawns over time/2 at a time:
- 0.00 M/s
- spawns over time/4 at a time:
- 0.00 M/s
- spawns over time/8 at a time:
- 0.01 M/s
- time per spawn/1 at a time:
- 156633.03 ns
- time per spawn/2 at a time:
- 202306.22 ns
- time per spawn/4 at a time:
- 201207.93 ns
- time per spawn/8 at a time:
- 173268.59 ns
- Picos TLS:
- gets over time/1 worker:
- 156.84 M/s
- sets over time/1 worker:
- 155.23 M/s
- time per get/1 worker:
- 6.53 ns
- time per set/1 worker:
- 6.44 ns
- Picos Yield:
- time per yield/100 fibers:
- 11474.22 ns
- time per yield/10 fibers:
- 8563.52 ns
- time per yield/1 fiber:
- 12150.18 ns
- yields over time/100 fibers:
- 0.09 M/s
- yields over time/10 fibers:
- 0.12 M/s
- yields over time/1 fiber:
- 0.08 M/s
- Picos_htbl:
- operations over time/1 worker, 10% reads:
- 22.49 M/s
- operations over time/1 worker, 50% reads:
- 10.55 M/s
- operations over time/1 worker, 90% reads:
- 19.47 M/s
- operations over time/2 workers, 10% reads:
- 22.59 M/s
- operations over time/2 workers, 50% reads:
- 23.02 M/s
- operations over time/2 workers, 90% reads:
- 31.02 M/s
- operations over time/4 workers, 10% reads:
- 12.37 M/s
- operations over time/4 workers, 50% reads:
- 10.57 M/s
- operations over time/4 workers, 90% reads:
- 30.91 M/s
- operations over time/8 workers, 10% reads:
- 11.94 M/s
- operations over time/8 workers, 50% reads:
- 14.34 M/s
- operations over time/8 workers, 90% reads:
- 23.81 M/s
- time per operation/1 worker, 10% reads:
- 44.45 ns
- time per operation/1 worker, 50% reads:
- 94.81 ns
- time per operation/1 worker, 90% reads:
- 51.37 ns
- time per operation/2 workers, 10% reads:
- 88.55 ns
- time per operation/2 workers, 50% reads:
- 86.88 ns
- time per operation/2 workers, 90% reads:
- 64.47 ns
- time per operation/4 workers, 10% reads:
- 323.43 ns
- time per operation/4 workers, 50% reads:
- 378.58 ns
- time per operation/4 workers, 90% reads:
- 129.42 ns
- time per operation/8 workers, 10% reads:
- 670.28 ns
- time per operation/8 workers, 50% reads:
- 557.89 ns
- time per operation/8 workers, 90% reads:
- 335.92 ns
- Picos_stdio:
- blocking reads over time/1 worker:
- 0.09 M/s
- non-blocking reads over time/1 worker:
- 0.64 M/s
- time per blocking read/1 worker:
- 11634.67 ns
- time per non-blocking read/1 worker:
- 1558.73 ns
- Ref with Picos_sync.Mutex:
- ops over time/cas int (checked):
- 26.12 M/s
- ops over time/cas int (unchecked):
- 37.44 M/s
- ops over time/get (checked):
- 27.75 M/s
- ops over time/get (unchecked):
- 41.74 M/s
- ops over time/incr (checked):
- 27.70 M/s
- ops over time/incr (unchecked):
- 41.36 M/s
- ops over time/push & pop (checked):
- 22.55 M/s
- ops over time/push & pop (unchecked):
- 36.07 M/s
- ops over time/swap (checked):
- 25.51 M/s
- ops over time/swap (unchecked):
- 36.28 M/s
- ops over time/xchg int (checked):
- 25.78 M/s
- ops over time/xchg int (unchecked):
- 37.04 M/s
- time per op/cas int (checked):
- 38.28 ns
- time per op/cas int (unchecked):
- 26.71 ns
- time per op/get (checked):
- 36.03 ns
- time per op/get (unchecked):
- 23.96 ns
- time per op/incr (checked):
- 36.10 ns
- time per op/incr (unchecked):
- 24.18 ns
- time per op/push & pop (checked):
- 44.35 ns
- time per op/push & pop (unchecked):
- 27.72 ns
- time per op/swap (checked):
- 39.20 ns
- time per op/swap (unchecked):
- 27.57 ns
- time per op/xchg int (checked):
- 38.78 ns
- time per op/xchg int (unchecked):
- 27.00 ns
- (cd _build/default/test && ./test_htbl.exe)
-
random seed: 466152091
- 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
[ ] 10 0 0 10 / 1000 0.2s Picos_htbl concurrent
[ ] 17 0 0 17 / 1000 0.3s Picos_htbl concurrent
[ ] 28 0 0 28 / 1000 0.5s Picos_htbl concurrent
[ ] 29 0 0 29 / 1000 0.6s Picos_htbl concurrent
[ ] 42 0 0 42 / 1000 0.8s Picos_htbl concurrent
[ ] 51 0 0 51 / 1000 0.9s Picos_htbl concurrent
[ ] 60 0 0 60 / 1000 1.1s Picos_htbl concurrent
[ ] 71 0 0 71 / 1000 1.2s Picos_htbl concurrent
[ ] 73 0 0 73 / 1000 1.4s Picos_htbl concurrent
[ ] 88 0 0 88 / 1000 1.5s Picos_htbl concurrent
[ ] 93 0 0 93 / 1000 1.7s Picos_htbl concurrent
[ ] 102 0 0 102 / 1000 1.9s Picos_htbl concurrent
[ ] 107 0 0 107 / 1000 2.2s Picos_htbl concurrent
[ ] 109 0 0 109 / 1000 2.3s Picos_htbl concurrent
[ ] 121 0 0 121 / 1000 2.4s Picos_htbl concurrent
[ ] 127 0 0 127 / 1000 2.5s Picos_htbl concurrent
[ ] 144 0 0 144 / 1000 2.6s Picos_htbl concurrent
[ ] 156 0 0 156 / 1000 2.8s Picos_htbl concurrent
[ ] 167 0 0 167 / 1000 2.9s Picos_htbl concurrent
[ ] 171 0 0 171 / 1000 3.0s Picos_htbl concurrent
[ ] 180 0 0 180 / 1000 3.1s Picos_htbl concurrent
[ ] 191 0 0 191 / 1000 3.2s Picos_htbl concurrent
[ ] 196 0 0 196 / 1000 3.4s Picos_htbl concurrent
[ ] 210 0 0 210 / 1000 3.5s Picos_htbl concurrent
[ ] 218 0 0 218 / 1000 3.6s Picos_htbl concurrent
[ ] 231 0 0 231 / 1000 3.8s Picos_htbl concurrent
[ ] 232 0 0 232 / 1000 3.9s Picos_htbl concurrent
[ ] 246 0 0 246 / 1000 4.0s Picos_htbl concurrent
[ ] 255 0 0 255 / 1000 4.2s Picos_htbl concurrent
[ ] 258 0 0 258 / 1000 4.4s Picos_htbl concurrent
[ ] 274 0 0 274 / 1000 4.6s Picos_htbl concurrent
[ ] 276 0 0 276 / 1000 4.8s Picos_htbl concurrent
[ ] 290 0 0 290 / 1000 5.0s Picos_htbl concurrent
[ ] 294 0 0 294 / 1000 5.1s Picos_htbl concurrent
[ ] 305 0 0 305 / 1000 5.3s Picos_htbl concurrent
[ ] 312 0 0 312 / 1000 5.4s Picos_htbl concurrent
[ ] 313 0 0 313 / 1000 5.5s Picos_htbl concurrent
[ ] 324 0 0 324 / 1000 5.6s Picos_htbl concurrent
[ ] 328 0 0 328 / 1000 5.7s Picos_htbl concurrent
[ ] 340 0 0 340 / 1000 5.8s Picos_htbl concurrent
[ ] 342 0 0 342 / 1000 6.0s Picos_htbl concurrent
[ ] 360 0 0 360 / 1000 6.3s Picos_htbl concurrent
[ ] 363 0 0 363 / 1000 6.6s Picos_htbl concurrent
[ ] 366 0 0 366 / 1000 6.7s Picos_htbl concurrent
[ ] 377 0 0 377 / 1000 6.9s Picos_htbl concurrent
[ ] 382 0 0 382 / 1000 7.0s Picos_htbl concurrent
[ ] 398 0 0 398 / 1000 7.2s Picos_htbl concurrent
[ ] 409 0 0 409 / 1000 7.3s Picos_htbl concurrent
[ ] 426 0 0 426 / 1000 7.4s Picos_htbl concurrent
[ ] 446 0 0 446 / 1000 7.6s Picos_htbl concurrent
[ ] 460 0 0 460 / 1000 7.8s Picos_htbl concurrent
[ ] 465 0 0 465 / 1000 7.9s Picos_htbl concurrent
[ ] 480 0 0 480 / 1000 8.1s Picos_htbl concurrent
[ ] 487 0 0 487 / 1000 8.3s Picos_htbl concurrent
[ ] 496 0 0 496 / 1000 8.5s Picos_htbl concurrent
[ ] 508 0 0 508 / 1000 8.9s Picos_htbl concurrent
[ ] 519 0 0 519 / 1000 9.0s Picos_htbl concurrent
[ ] 528 0 0 528 / 1000 9.1s Picos_htbl concurrent
[ ] 530 0 0 530 / 1000 9.2s Picos_htbl concurrent
[ ] 539 0 0 539 / 1000 9.3s Picos_htbl concurrent
[ ] 540 0 0 540 / 1000 9.5s Picos_htbl concurrent
[ ] 556 0 0 556 / 1000 9.6s Picos_htbl concurrent
[ ] 562 0 0 562 / 1000 9.7s Picos_htbl concurrent
[ ] 566 0 0 566 / 1000 9.8s Picos_htbl concurrent
[ ] 573 0 0 573 / 1000 9.9s Picos_htbl concurrent
[ ] 582 0 0 582 / 1000 10.1s Picos_htbl concurrent
[ ] 587 0 0 587 / 1000 10.3s Picos_htbl concurrent
[ ] 602 0 0 602 / 1000 10.4s Picos_htbl concurrent
[ ] 606 0 0 606 / 1000 10.6s Picos_htbl concurrent
[ ] 628 0 0 628 / 1000 10.8s Picos_htbl concurrent
[ ] 638 0 0 638 / 1000 10.9s Picos_htbl concurrent
[ ] 644 0 0 644 / 1000 11.1s Picos_htbl concurrent
[ ] 668 0 0 668 / 1000 11.3s Picos_htbl concurrent
[ ] 685 0 0 685 / 1000 11.4s Picos_htbl concurrent
[ ] 695 0 0 695 / 1000 11.5s Picos_htbl concurrent
[ ] 705 0 0 705 / 1000 11.6s Picos_htbl concurrent
[ ] 716 0 0 716 / 1000 11.7s Picos_htbl concurrent
[ ] 735 0 0 735 / 1000 11.8s Picos_htbl concurrent
[ ] 739 0 0 739 / 1000 12.0s Picos_htbl concurrent
[ ] 753 0 0 753 / 1000 12.2s Picos_htbl concurrent
[ ] 757 0 0 757 / 1000 12.4s Picos_htbl concurrent
[ ] 770 0 0 770 / 1000 12.6s Picos_htbl concurrent
[ ] 771 0 0 771 / 1000 12.7s Picos_htbl concurrent
[ ] 781 0 0 781 / 1000 12.9s Picos_htbl concurrent
[ ] 799 0 0 799 / 1000 13.0s Picos_htbl concurrent
[ ] 812 0 0 812 / 1000 13.2s Picos_htbl concurrent
[ ] 827 0 0 827 / 1000 13.3s Picos_htbl concurrent
[ ] 834 0 0 834 / 1000 13.4s Picos_htbl concurrent
[ ] 837 0 0 837 / 1000 13.6s Picos_htbl concurrent
[ ] 858 0 0 858 / 1000 13.7s Picos_htbl concurrent
[ ] 862 0 0 862 / 1000 13.8s Picos_htbl concurrent
[ ] 868 0 0 868 / 1000 13.9s Picos_htbl concurrent
[ ] 874 0 0 874 / 1000 14.1s Picos_htbl concurrent
[ ] 884 0 0 884 / 1000 14.3s Picos_htbl concurrent
[ ] 888 0 0 888 / 1000 14.4s Picos_htbl concurrent
[ ] 890 0 0 890 / 1000 14.5s Picos_htbl concurrent
[ ] 906 0 0 906 / 1000 14.8s Picos_htbl concurrent
[ ] 909 0 0 909 / 1000 15.0s Picos_htbl concurrent
[ ] 911 0 0 911 / 1000 15.1s Picos_htbl concurrent
[ ] 914 0 0 914 / 1000 15.3s Picos_htbl concurrent
[ ] 928 0 0 928 / 1000 15.4s Picos_htbl concurrent
[ ] 936 0 0 936 / 1000 15.5s Picos_htbl concurrent
[ ] 956 0 0 956 / 1000 15.6s Picos_htbl concurrent
[ ] 972 0 0 972 / 1000 15.7s Picos_htbl concurrent
[ ] 973 0 0 973 / 1000 16.0s Picos_htbl concurrent
[ ] 984 0 0 984 / 1000 16.2s Picos_htbl concurrent
[ ] 1000 0 0 1000 / 1000 16.3s Picos_htbl concurrent
[✓] 1000 0 0 1000 / 1000 16.3s 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:49.29 ---> saved as "bdbc7ddb4a7d112cafd0a6926f4f46b488dd6c6e9c1c8c64dd8c36a7bf52ec86"
Job succeeded
2026-03-17 11:49.39: Job succeeded