- github
- ocaml
- opam-repository
- 395113
- distributions,opensuse-16.0-ocaml-4.14,picos.0.3.0,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:25.58: New job: test picos.0.3.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
on opensuse-16.0-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:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324
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 "\"opensuse-16.0\""; 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 "\"opensuse-16.0\""; 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.58: Using cache hint "ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324-picos.0.3.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.58: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324)
(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 \"\\\"opensuse-16.0\\\"\"; 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 \"\\\"opensuse-16.0\\\"\"; 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.58: Waiting for resource in pool OCluster
2026-03-17 11:30.38: Waiting for worker…
2026-03-17 11:32.43: Got resource from pool OCluster
Building on phoebe
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:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324)
2026-03-17 11:32.56 ---> saved as "176b78d4712c07b55d53abc789f23e917c1c9b9dc68c6cb518e960b046403981"
/: (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:32.56 ---> saved as "3ccb1616cff7e17d1156add8f030a1032d351c14b0fab1019bc5144c35607660"
/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
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 11:33.26 ---> saved as "d68d8c24f617a4e87b9bedc3f3d6072eb86fc5a2e1fc26fd8135bbfbe89f0925"
/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=opensuse-leap os-version=16.0
# 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:33.27 ---> saved as "7a861205fe553fbdddb728fef045c62c8bd63b3cbf11642ab367eb4ca264789c"
/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:33.52 ---> saved as "61a6556736f9a2c8ef3e8b0a81dfa8e7802a5889c265468b3bf9a3740153aa7a"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:34.14 ---> saved as "2841355eed7649eec3c8b3b3276a07620413eb2de51235b6c3f4586c68e7857d"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:34.33 ---> saved as "3e588474b0bffcd9cd09c607279bc4509ca69ae7cea8e0d4ed8e3fdc54c8c9d6"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [..
- Looking for gpg keys in repository repo-oss (16.0).
- gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ..
-
- Note: Received 1 new package signing key from repository "repo-oss (16.0)":
-
- Those additional keys are usually used to sign packages shipped by the repository. In order to
- validate those packages upon download and installation the new keys will be imported into the rpm
- database.
-
- New:
- Key Fingerprint: F044 C2C5 07A1 262B 538A AADD 8A49 EB03 25DB 7AE0
- Key Name: openSUSE:Backports OBS Project <openSUSE:Backports@build.opensuse.org>
- Key Algorithm: RSA 4096
- Key Created: Wed May 10 14:46:12 2023
- Key Expires: Sun May 9 14:46:12 2027
- Rpm Name: gpg-pubkey-25db7ae0-645bae34
-
- The repository metadata introducing the new keys have been signed and validated by the trusted
- key:
-
- Repository: repo-oss (16.0)
- Key Fingerprint: AD48 5664 E901 B867 051A B15F 35A2 F86E 29B7 00A4
- Key Name: openSUSE Project Signing Key <opensuse@opensuse.org>
- Key Algorithm: RSA 4096
- Key Created: Mon Jun 20 14:03:14 2022
- Key Expires: Fri Jun 19 14:03:14 2026
- Rpm Name: gpg-pubkey-29b700a4-62b07e22
-
- .
- ........
- ..........
- ..........
- .........
- ..........
- ..........
- .........
- ..........
- ..........
- .........
- ..done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-17 11:34.55 ---> saved as "af7d49bc0354f8111437c4f14eb0d250e3c694b94f647cccc22c34aaaa79d002"
/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:34.57 ---> saved as "ce3866eef7a43783cb980b6690449718d8012e995e7679e35cfbed8670ff18ae"
/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 \"\\\"opensuse-16.0\\\"\"; 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:36.20 ---> saved as "c2cf0850d19bf63947e0a883d3315ee8bfa5b96214ab62db6fbd75707ed350f5"
/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:
npm-default
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "npm-default"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 9 NEW packages are going to be installed:
- libbrotlienc1 libcares2 libicu77 libicu77-ledata nodejs-common nodejs-default nodejs22 npm-default npm22
-
- 9 new packages to install.
-
- Package download size: 27.2 MiB
-
- Package install size change:
- | 105.7 MiB required by packages that will be installed
- 105.7 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: nodejs-common-6.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libbrotlienc1-1.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: nodejs-default-6.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libicu77-77.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: npm-default-6.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: npm22-22.22.0-160000.1.1.x86_64.rpm [done]
- ..
-
- Preloading: nodejs22-22.22.0-160000.1.1.x86_64.rpm [done]
- ...
- Preloading: libicu77-ledata-77.1-160000.2.2.noarch.rpm [done]
- .
-
- Preloading: libcares2-1.34.5-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- Preloading: libcares2-1.34.5-160000.2.2.x86_64.rpm [done]
- .done]
- Retrieving: libbrotlienc1-1.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (1/9), 263.6 KiB
- Retrieving: libcares2-1.34.5-160000.2.2.x86_64 (repo-oss (16.0)) (2/9), 139.7 KiB
- Retrieving: libicu77-ledata-77.1-160000.2.2.noarch (repo-oss (16.0)) (3/9), 8.6 MiB
- Retrieving: libicu77-77.1-160000.2.2.x86_64 (repo-oss (16.0)) (4/9), 2.1 MiB
- Retrieving: nodejs-common-6.1-160000.3.2.x86_64 (repo-oss (16.0)) (5/9), 14.4 KiB
- Retrieving: nodejs22-22.22.0-160000.1.1.x86_64 (repo-oss (16.0)) (6/9), 14.1 MiB
- Retrieving: nodejs-default-6.1-160000.3.2.x86_64 (repo-oss (16.0)) (7/9), 9.2 KiB
- Retrieving: npm22-22.22.0-160000.1.1.x86_64 (repo-oss (16.0)) (8/9), 2.0 MiB
- Retrieving: npm-default-6.1-160000.3.2.x86_64 (repo-oss (16.0)) (9/9), 9.1 KiB
-
- Checking for file conflicts: [..
- ..done]
- (1/9) Installing: libbrotlienc1-1.1.0-160000.2.2.x86_64 [..done]
- (2/9) Installing: libcares2-1.34.5-160000.2.2.x86_64 [..done]
- (3/9) Installing: libicu77-ledata-77.1-160000.2.2.noarch [.....done]
- (4/9) Installing: libicu77-77.1-160000.2.2.x86_64 [..done]
- (5/9) Installing: nodejs-common-6.1-160000.3.2.x86_64 [..done]
- (6/9) Installing: nodejs22-22.22.0-160000.1.1.x86_64 [..
- .....done]
- (7/9) Installing: nodejs-default-6.1-160000.3.2.x86_64 [..done]
- (8/9) Installing: npm22-22.22.0-160000.1.1.x86_64 [....
- ..done]
- (9/9) Installing: npm-default-6.1-160000.3.2.x86_64 [..done]
- Running post-transaction scripts [...done]
<><> 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
-> installed conf-npm.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)
-> 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)
-> installed either.1.0.0
-> retrieved gen.1.1 (https://opam.ocaml.org/cache)
-> 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
-> 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)
-> 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)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> retrieved ocaml-version.4.0.3 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> 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
-> installed oseq.0.5.1
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (https://opam.ocaml.org/cache)
-> 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)
-> installed result.1.5
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved thread-table.1.0.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved tsort.2.2.0 (https://opam.ocaml.org/cache)
-> installed thread-table.1.0.0
-> installed sexplib0.v0.17.0
-> installed tsort.2.2.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed qcheck-core.0.91
-> installed dscheck.0.5.0
-> installed re.1.14.0
-> installed domain-local-await.1.0.1
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed qcheck-multicoretests-util.0.10
-> installed uutf.1.0.4
-> installed qcheck-stm.0.10
-> removed picos.0.3.0
-> installed yojson.3.0.0
-> installed menhir.20260209
-> installed alcotest.1.9.1
-> installed multicore-bench.0.1.7
-> 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:37.57 ---> saved as "9f95daca9bae45b722926be464d7a0e8ad4ab83317277fdb0f1a90f960b6520a"
/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 \"\\\"opensuse-16.0\\\"\"; 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: 486201583
- 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:
- Recursive server running
- Server listening
- Client A running
- Server accepting
- Client B running
- Client A connected
- Server accepted client
- Server accepting
- Client B connected
- Client A wrote 100
- Server accepted client
- Client B wrote 100
- Server read 100
- Server read 100
- Server accepting
- Server wrote 50
- Client B read 50
- 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 `0GQUHBV2'.
-
- [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_stdio.exe)
- Testing `Picos_stdio'.
- This run has ID `BX7VBVH9'.
-
- [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.006s. 1 test 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 `LUTY43Y7'.
-
- [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.650s. 5 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `SF9R6RL6'.
-
- [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.949s. 1 test run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `NKNGP4VQ'.
-
- [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.015s. 1 test run.
- (cd _build/default/bench && ./main.exe -brief)
- Foundation Mpsc_queue:
- messages over time/1 nb adder, 1 nb taker:
- 36.43 M/s
- messages over time/2 nb adders, 1 nb taker:
- 70.40 M/s
- messages over time/4 nb adders, 1 nb taker:
- 43.25 M/s
- messages over time/one domain:
- 13.28 M/s
- time per message/1 nb adder, 1 nb taker:
- 54.91 ns
- time per message/2 nb adders, 1 nb taker:
- 42.61 ns
- time per message/4 nb adders, 1 nb taker:
- 115.61 ns
- time per message/one domain:
- 75.28 ns
- Picos Cancel_after with Picos_select:
- async round-trips over time/1 worker:
- 0.36 M/s
- round-trips over time/1 worker:
- 0.05 M/s
- time per async round-trip/1 worker:
- 2791.50 ns
- time per round-trip/1 worker:
- 20261.88 ns
- Picos Computation:
- attach detach pairs over time/1 worker:
- 5.93 M/s
- attach detach pairs over time/2 workers:
- 7.06 M/s
- attach detach pairs over time/4 workers:
- 6.66 M/s
- attach detach pairs over time/trivial:
- 27.07 M/s
- time per attach detach pair/1 worker:
- 168.64 ns
- time per attach detach pair/2 workers:
- 283.45 ns
- time per attach detach pair/4 workers:
- 600.27 ns
- time per attach detach pair/trivial:
- 36.94 ns
- Picos Current:
- ops over time/1 worker:
- 143.17 M/s
- ops over time/2 workers:
- 138.72 M/s
- ops over time/4 workers:
- 137.32 M/s
- time per op/1 worker:
- 6.98 ns
- time per op/2 workers:
- 14.42 ns
- time per op/4 workers:
- 29.13 ns
- Picos DLS:
- gets over time/1 worker:
- 146.07 M/s
- sets over time/1 worker:
- 93.13 M/s
- time per get/1 worker:
- 6.85 ns
- time per set/1 worker:
- 10.74 ns
- Picos FLS (excluding Current):
- gets over time/1 worker:
- 146.17 M/s
- sets over time/1 worker:
- 107.84 M/s
- time per get/1 worker:
- 6.84 ns
- time per set/1 worker:
- 9.27 ns
- Picos Mutex:
- locked yields over time/1 fiber:
- 0.09 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.06 M/s
- time per locked yield/1 fiber:
- 11367.03 ns
- time per locked yield/2 fibers:
- 27546.03 ns
- time per locked yield/4 fibers:
- 23246.99 ns
- time per locked yield/8 fibers:
- 18124.09 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.02 M/s
- spawns over time/8 at a time:
- 0.01 M/s
- time per spawn/1 at a time:
- 70545.70 ns
- time per spawn/2 at a time:
- 71917.53 ns
- time per spawn/4 at a time:
- 66603.35 ns
- time per spawn/8 at a time:
- 68667.87 ns
- Picos TLS:
- gets over time/1 worker:
- 214.48 M/s
- sets over time/1 worker:
- 117.56 M/s
- time per get/1 worker:
- 4.66 ns
- time per set/1 worker:
- 8.51 ns
- Picos Yield:
- time per yield/100 fibers:
- 11352.64 ns
- time per yield/10 fibers:
- 6612.57 ns
- time per yield/1 fiber:
- 17826.37 ns
- yields over time/100 fibers:
- 0.09 M/s
- yields over time/10 fibers:
- 0.15 M/s
- yields over time/1 fiber:
- 0.06 M/s
- Picos_htbl:
- operations over time/1 worker, 10% reads:
- 16.57 M/s
- operations over time/1 worker, 50% reads:
- 7.85 M/s
- operations over time/1 worker, 90% reads:
- 12.28 M/s
- operations over time/2 workers, 10% reads:
- 10.68 M/s
- operations over time/2 workers, 50% reads:
- 17.05 M/s
- operations over time/2 workers, 90% reads:
- 12.03 M/s
- operations over time/4 workers, 10% reads:
- 10.56 M/s
- operations over time/4 workers, 50% reads:
- 7.96 M/s
- operations over time/4 workers, 90% reads:
- 9.70 M/s
- operations over time/8 workers, 10% reads:
- 14.93 M/s
- operations over time/8 workers, 50% reads:
- 7.97 M/s
- operations over time/8 workers, 90% reads:
- 9.34 M/s
- time per operation/1 worker, 10% reads:
- 60.36 ns
- time per operation/1 worker, 50% reads:
- 127.33 ns
- time per operation/1 worker, 90% reads:
- 81.47 ns
- time per operation/2 workers, 10% reads:
- 187.24 ns
- time per operation/2 workers, 50% reads:
- 117.32 ns
- time per operation/2 workers, 90% reads:
- 166.26 ns
- time per operation/4 workers, 10% reads:
- 378.77 ns
- time per operation/4 workers, 50% reads:
- 502.70 ns
- time per operation/4 workers, 90% reads:
- 412.41 ns
- time per operation/8 workers, 10% reads:
- 535.94 ns
- time per operation/8 workers, 50% reads:
- 1003.18 ns
- time per operation/8 workers, 90% reads:
- 856.24 ns
- Picos_stdio:
- blocking reads over time/1 worker:
- 0.05 M/s
- non-blocking reads over time/1 worker:
- 0.31 M/s
- time per blocking read/1 worker:
- 22087.27 ns
- time per non-blocking read/1 worker:
- 3226.08 ns
- Ref with Picos_sync.Mutex:
- ops over time/cas int (checked):
- 18.87 M/s
- ops over time/cas int (unchecked):
- 26.78 M/s
- ops over time/get (checked):
- 14.24 M/s
- ops over time/get (unchecked):
- 31.11 M/s
- ops over time/incr (checked):
- 16.74 M/s
- ops over time/incr (unchecked):
- 31.08 M/s
- ops over time/push & pop (checked):
- 16.84 M/s
- ops over time/push & pop (unchecked):
- 26.40 M/s
- ops over time/swap (checked):
- 18.61 M/s
- ops over time/swap (unchecked):
- 26.26 M/s
- ops over time/xchg int (checked):
- 18.56 M/s
- ops over time/xchg int (unchecked):
- 26.78 M/s
- time per op/cas int (checked):
- 53.00 ns
- time per op/cas int (unchecked):
- 37.34 ns
- time per op/get (checked):
- 70.33 ns
- time per op/get (unchecked):
- 32.14 ns
- time per op/incr (checked):
- 59.73 ns
- time per op/incr (unchecked):
- 32.17 ns
- time per op/push & pop (checked):
- 59.37 ns
- time per op/push & pop (unchecked):
- 37.87 ns
- time per op/swap (checked):
- 53.74 ns
- time per op/swap (unchecked):
- 38.08 ns
- time per op/xchg int (checked):
- 53.89 ns
- time per op/xchg int (unchecked):
- 37.34 ns
- (cd _build/default/test && ./test_htbl.exe)
-
random seed: 323077034
- 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
[ ] 13 0 0 13 / 1000 0.1s Picos_htbl concurrent
[ ] 27 0 0 27 / 1000 0.3s Picos_htbl concurrent
[ ] 29 0 0 29 / 1000 0.5s Picos_htbl concurrent
[ ] 44 0 0 44 / 1000 0.6s Picos_htbl concurrent
[ ] 48 0 0 48 / 1000 0.7s Picos_htbl concurrent
[ ] 59 0 0 59 / 1000 0.9s Picos_htbl concurrent
[ ] 63 0 0 63 / 1000 1.0s Picos_htbl concurrent
[ ] 78 0 0 78 / 1000 1.1s Picos_htbl concurrent
[ ] 99 0 0 99 / 1000 1.2s Picos_htbl concurrent
[ ] 103 0 0 103 / 1000 1.4s Picos_htbl concurrent
[ ] 107 0 0 107 / 1000 1.5s Picos_htbl concurrent
[ ] 117 0 0 117 / 1000 1.6s Picos_htbl concurrent
[ ] 122 0 0 122 / 1000 1.7s Picos_htbl concurrent
[ ] 138 0 0 138 / 1000 1.9s Picos_htbl concurrent
[ ] 142 0 0 142 / 1000 2.0s Picos_htbl concurrent
[ ] 155 0 0 155 / 1000 2.1s Picos_htbl concurrent
[ ] 160 0 0 160 / 1000 2.3s Picos_htbl concurrent
[ ] 171 0 0 171 / 1000 2.4s Picos_htbl concurrent
[ ] 187 0 0 187 / 1000 2.5s Picos_htbl concurrent
[ ] 193 0 0 193 / 1000 2.7s Picos_htbl concurrent
[ ] 204 0 0 204 / 1000 2.9s Picos_htbl concurrent
[ ] 207 0 0 207 / 1000 3.0s Picos_htbl concurrent
[ ] 215 0 0 215 / 1000 3.1s Picos_htbl concurrent
[ ] 217 0 0 217 / 1000 3.3s Picos_htbl concurrent
[ ] 230 0 0 230 / 1000 3.4s Picos_htbl concurrent
[ ] 237 0 0 237 / 1000 3.6s Picos_htbl concurrent
[ ] 245 0 0 245 / 1000 3.7s Picos_htbl concurrent
[ ] 251 0 0 251 / 1000 3.8s Picos_htbl concurrent
[ ] 255 0 0 255 / 1000 4.0s Picos_htbl concurrent
[ ] 269 0 0 269 / 1000 4.1s Picos_htbl concurrent
[ ] 280 0 0 280 / 1000 4.2s Picos_htbl concurrent
[ ] 292 0 0 292 / 1000 4.3s Picos_htbl concurrent
[ ] 303 0 0 303 / 1000 4.5s Picos_htbl concurrent
[ ] 308 0 0 308 / 1000 4.6s Picos_htbl concurrent
[ ] 317 0 0 317 / 1000 4.7s Picos_htbl concurrent
[ ] 327 0 0 327 / 1000 4.9s Picos_htbl concurrent
[ ] 336 0 0 336 / 1000 5.0s Picos_htbl concurrent
[ ] 343 0 0 343 / 1000 5.1s Picos_htbl concurrent
[ ] 347 0 0 347 / 1000 5.3s Picos_htbl concurrent
[ ] 352 0 0 352 / 1000 5.5s Picos_htbl concurrent
[ ] 358 0 0 358 / 1000 5.6s Picos_htbl concurrent
[ ] 374 0 0 374 / 1000 5.7s Picos_htbl concurrent
[ ] 391 0 0 391 / 1000 5.8s Picos_htbl concurrent
[ ] 403 0 0 403 / 1000 5.9s Picos_htbl concurrent
[ ] 414 0 0 414 / 1000 6.1s Picos_htbl concurrent
[ ] 428 0 0 428 / 1000 6.3s Picos_htbl concurrent
[ ] 444 0 0 444 / 1000 6.4s Picos_htbl concurrent
[ ] 451 0 0 451 / 1000 6.6s Picos_htbl concurrent
[ ] 457 0 0 457 / 1000 6.7s Picos_htbl concurrent
[ ] 466 0 0 466 / 1000 6.8s Picos_htbl concurrent
[ ] 478 0 0 478 / 1000 6.9s Picos_htbl concurrent
[ ] 493 0 0 493 / 1000 7.1s Picos_htbl concurrent
[ ] 516 0 0 516 / 1000 7.4s Picos_htbl concurrent
[ ] 536 0 0 536 / 1000 7.5s Picos_htbl concurrent
[ ] 547 0 0 547 / 1000 7.7s Picos_htbl concurrent
[ ] 555 0 0 555 / 1000 8.0s Picos_htbl concurrent
[ ] 557 0 0 557 / 1000 8.1s Picos_htbl concurrent
[ ] 573 0 0 573 / 1000 8.2s Picos_htbl concurrent
[ ] 577 0 0 577 / 1000 8.3s Picos_htbl concurrent
[ ] 586 0 0 586 / 1000 8.5s Picos_htbl concurrent
[ ] 599 0 0 599 / 1000 8.6s Picos_htbl concurrent
[ ] 606 0 0 606 / 1000 8.8s Picos_htbl concurrent
[ ] 609 0 0 609 / 1000 8.9s Picos_htbl concurrent
[ ] 638 0 0 638 / 1000 9.0s Picos_htbl concurrent
[ ] 651 0 0 651 / 1000 9.2s Picos_htbl concurrent
[ ] 654 0 0 654 / 1000 9.3s Picos_htbl concurrent
[ ] 663 0 0 663 / 1000 9.4s Picos_htbl concurrent
[ ] 680 0 0 680 / 1000 9.5s Picos_htbl concurrent
[ ] 688 0 0 688 / 1000 9.8s Picos_htbl concurrent
[ ] 691 0 0 691 / 1000 10.1s Picos_htbl concurrent
[ ] 708 0 0 708 / 1000 10.2s Picos_htbl concurrent
[ ] 723 0 0 723 / 1000 10.4s Picos_htbl concurrent
[ ] 741 0 0 741 / 1000 10.5s Picos_htbl concurrent
[ ] 754 0 0 754 / 1000 10.7s Picos_htbl concurrent
[ ] 765 0 0 765 / 1000 10.8s Picos_htbl concurrent
[ ] 778 0 0 778 / 1000 10.9s Picos_htbl concurrent
[ ] 795 0 0 795 / 1000 11.0s Picos_htbl concurrent
[ ] 801 0 0 801 / 1000 11.1s Picos_htbl concurrent
[ ] 807 0 0 807 / 1000 11.3s Picos_htbl concurrent
[ ] 818 0 0 818 / 1000 11.5s Picos_htbl concurrent
[ ] 834 0 0 834 / 1000 11.7s Picos_htbl concurrent
[ ] 837 0 0 837 / 1000 11.8s Picos_htbl concurrent
[ ] 851 0 0 851 / 1000 11.9s Picos_htbl concurrent
[ ] 876 0 0 876 / 1000 12.1s Picos_htbl concurrent
[ ] 897 0 0 897 / 1000 12.2s Picos_htbl concurrent
[ ] 908 0 0 908 / 1000 12.5s Picos_htbl concurrent
[ ] 922 0 0 922 / 1000 12.6s Picos_htbl concurrent
[ ] 928 0 0 928 / 1000 12.7s Picos_htbl concurrent
[ ] 935 0 0 935 / 1000 12.8s Picos_htbl concurrent
[ ] 939 0 0 939 / 1000 12.9s Picos_htbl concurrent
[ ] 941 0 0 941 / 1000 13.0s Picos_htbl concurrent
[ ] 952 0 0 952 / 1000 13.3s Picos_htbl concurrent
[ ] 954 0 0 954 / 1000 13.4s Picos_htbl concurrent
[ ] 960 0 0 960 / 1000 13.5s Picos_htbl concurrent
[ ] 974 0 0 974 / 1000 13.8s Picos_htbl concurrent
[ ] 976 0 0 976 / 1000 14.0s Picos_htbl concurrent
[ ] 987 0 0 987 / 1000 14.1s Picos_htbl concurrent
[ ] 994 0 0 994 / 1000 14.4s Picos_htbl concurrent
[✓] 1000 0 0 1000 / 1000 14.4s 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:38.16 ---> saved as "a859f2efb62c63196e9f457b883fb5e25ca3185adfed6d16792fa33b8d501104"
Job succeeded
2026-03-17 11:38.42: Job succeeded