- github
- ocaml
- opam-repository
- e2e946
- compilers,4.14,dune.3.20.0~alpha4,revdeps,mirage-crypto-rng-async.0.10.7
(not at the head of any monitored branch or PR)
2025-08-12 13:25.01: New job: test mirage-crypto-rng-async.0.10.7 with dune.3.20.0~alpha4, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28333/head (e2e946ed909ce4d2c3e1e35bbaff78b566760128)
on debian-12-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/28333/head" && git reset --hard e2e946ed
git fetch origin master
git merge --no-edit 5b99878077ddf3134c09e188d937954bd33cfa58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha4 3.20.0~alpha4
RUN opam reinstall dune.3.20.0~alpha4; \
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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.20.0~alpha4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall mirage-crypto-rng-async.0.10.7; \
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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mirage-crypto-rng-async.0.10.7' && 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 mirage-crypto-rng-async.0.10.7) || true
RUN opam reinstall --with-test --verbose mirage-crypto-rng-async.0.10.7; \
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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mirage-crypto-rng-async.0.10.7' && 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 .
2025-08-12 13:25.01: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune.3.20.0~alpha4-mirage-crypto-rng-async.0.10.7-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:25.01: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha4 3.20.0~alpha4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha4;\
\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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.20.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-crypto-rng-async.0.10.7;\
\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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mirage-crypto-rng-async.0.10.7' && 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 mirage-crypto-rng-async.0.10.7) || true"))
(run (shell "opam reinstall --with-test --verbose mirage-crypto-rng-async.0.10.7;\
\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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mirage-crypto-rng-async.0.10.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-12 13:25.01: Waiting for resource in pool OCluster
2025-08-12 22:02.17: Waiting for worker…
2025-08-12 22:03.51: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 5b99878077 Merge pull request #28318 from ocamllibs/metaquot-0.6.0
Updating 5b99878077..e2e946ed90
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha4/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha4/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha4/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha4/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha4/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha4/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/dune-site/dune-site.3.20.0~alpha4/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha4/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha4/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha4/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha4/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha4/opam | 41 ++++++++++++
15 files changed, 705 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha4/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha4/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha4/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha4/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha4/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha4/opam
create mode 100644 packages/dune/dune.3.20.0~alpha4/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha4/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha4/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha4/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha4/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
2025-08-12 22:04.12 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-12 22:04.12 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" 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.
Continue? [y/n] y
This development 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.
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-12 22:04.12 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# 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
2025-08-12 22:04.12 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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/"))
2025-08-12 22:04.12 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-12 22:04.13 ---> using "e17457918b8520f1cc4845647d0b13a39117eff71b59a3c5352a8dccd3e736a1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 22:04.13 ---> using "a9c87a01beb7b470788e26aa155c7a9aa4fe1265c42bbb2e46588f264ba6e313" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 555 kB in 0s (1302 kB/s)
- Reading package lists...
2025-08-12 22:04.13 ---> using "4f267453f72fd37713de377ca2564e961df391a8a15b228dc4ea0efbc9db6963" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha4 3.20.0~alpha4"))
dune is now pinned to version 3.20.0~alpha4
2025-08-12 22:04.13 ---> using "d0d559b8464c3a1e20f8b5572aaf9064ec29fd9ff7cf39aecd1c3a72009a2248" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha4;\
\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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.20.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.20.0~alpha4 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.0~alpha4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha4 (cached)
-> installed dune.3.20.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:04.13 ---> using "931361170f901e9fbbbdcd0df6be77ceb7cde9d0ee367b0395427635cd735e4a" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-crypto-rng-async.0.10.7;\
\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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mirage-crypto-rng-async.0.10.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-crypto-rng-async.0.10.7 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 91 packages
- install async v0.16.0 [required by mirage-crypto-rng-async]
- install async_kernel v0.16.0 [required by async]
- install async_rpc_kernel v0.16.0 [required by async]
- install async_unix v0.16.0 [required by async]
- install base v0.16.4 [required by core, core_kernel]
- install base-bytes base [required by ocplib-endian]
- install base_bigstring v0.16.0 [required by core]
- install base_quickcheck v0.16.0 [required by core]
- install bin_prot v0.16.0 [required by core]
- install conf-pkg-config 4 [required by mirage-crypto]
- install core v0.16.2 [required by async]
- install core_kernel v0.16.0 [required by async]
- install core_unix v0.16.0 [required by async]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by mirage-crypto, mirage-crypto-rng]
- install dune-configurator 3.20.0~alpha4 [required by mirage-crypto-rng-async]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.9 [required by mirage-crypto]
- install expect_test_helpers_core v0.16.0 [required by core_unix]
- install fieldslib v0.16.0 [required by core]
- install fmt 0.11.0 [required by logs]
- install int_repr v0.16.0 [required by core_kernel]
- install jane-street-headers v0.16.0 [required by core, core_unix]
- install jst-config v0.16.0 [required by core, core_unix]
- install logs 0.9.0 [required by mirage-crypto-rng-async]
- install lwt 5.9.1 [required by logs, mirage-crypto-rng]
- install mirage-crypto 0.10.7 [required by mirage-crypto-rng-async]
- install mirage-crypto-rng 0.10.7 [required by mirage-crypto-rng-async]
- install mirage-crypto-rng-async 0.10.7
- install mtime 2.1.0 [required by mirage-crypto-rng]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml_intrinsics v0.16.2 [required by core_unix]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install ocplib-endian 1.2 [required by lwt]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_assert v0.16.0 [required by core]
- install ppx_base v0.16.0 [required by core]
- install ppx_bench v0.16.0 [required by ppx_jane]
- install ppx_bin_prot v0.16.0 [required by ppx_jane]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base, bin_prot]
- install ppx_custom_printf v0.16.0 [required by ppx_jane]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_disable_unused_warnings v0.16.0 [required by ppx_jane]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_expect v0.16.1 [required by ppx_jane]
- install ppx_fields_conv v0.16.0 [required by ppx_jane]
- install ppx_fixed_literal v0.16.0 [required by ppx_jane]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by core]
- install ppx_here v0.16.0 [required by ppx_jane]
- install ppx_ignore_instrumentation v0.16.0 [required by ppx_jane]
- install ppx_inline_test v0.16.1 [required by core]
- install ppx_jane v0.16.0 [required by async]
- install ppx_let v0.16.0 [required by ppx_jane]
- install ppx_log v0.16.0 [required by async]
- install ppx_module_timer v0.16.0 [required by ppx_jane]
- install ppx_optcomp v0.16.0 [required by core_kernel, core, core_unix]
- install ppx_optional v0.16.0 [required by ppx_jane]
- install ppx_pipebang v0.16.0 [required by ppx_jane]
- install ppx_sexp_conv v0.16.0 [required by core]
- install ppx_sexp_message v0.16.0 [required by core]
- install ppx_sexp_value v0.16.0 [required by ppx_jane]
- install ppx_stable v0.16.0 [required by ppx_jane]
- install ppx_stable_witness v0.16.0 [required by ppx_jane]
- install ppx_string v0.16.0 [required by ppx_jane]
- install ppx_tydi v0.16.0 [required by ppx_jane]
- install ppx_typerep_conv v0.16.0 [required by ppx_jane]
- install ppx_variants_conv v0.16.0 [required by ppx_jane]
- install ppxlib 0.35.0 [required by ppx_jane]
- install protocol_version_header v0.16.0 [required by async_rpc_kernel]
- install re 1.13.2 [required by expect_test_helpers_core]
- install seq base [required by re]
- install sexp_pretty v0.16.0 [required by expect_test_helpers_core]
- install sexplib v0.16.0 [required by core, core_unix]
- install sexplib0 v0.16.0 [required by base]
- install spawn v0.17.0 [required by core_unix]
- install splittable_random v0.16.0 [required by core]
- install stdio v0.16.0 [required by core]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install textutils v0.16.0 [required by async]
- install textutils_kernel v0.16.0 [required by textutils]
- install time_now v0.16.0 [required by core]
- install timezone v0.16.0 [required by core_unix]
- install topkg 1.1.0 [required by logs]
- install typerep v0.16.0 [required by core]
- install uutf 1.0.4 [required by textutils]
- install variantslib v0.16.0 [required by core]
The following system packages will first need to be installed:
pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18747 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved async.v0.16.0 (cached)
-> retrieved async_kernel.v0.16.0 (cached)
-> retrieved async_rpc_kernel.v0.16.0 (cached)
-> retrieved async_unix.v0.16.0 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved base_bigstring.v0.16.0 (cached)
-> retrieved base_quickcheck.v0.16.0 (cached)
-> retrieved bin_prot.v0.16.0 (cached)
-> retrieved core.v0.16.2 (cached)
-> installed conf-pkg-config.4
-> retrieved core_kernel.v0.16.0 (cached)
-> retrieved core_unix.v0.16.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.20.0~alpha4 (cached)
-> installed cppo.1.8.0
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved expect_test_helpers_core.v0.16.0 (cached)
-> retrieved fieldslib.v0.16.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved int_repr.v0.16.0 (cached)
-> retrieved jane-street-headers.v0.16.0 (cached)
-> retrieved jst-config.v0.16.0 (cached)
-> retrieved logs.0.9.0 (cached)
-> retrieved lwt.5.9.1 (cached)
-> installed duration.0.2.1
-> installed jane-street-headers.v0.16.0
-> retrieved mirage-crypto.0.10.7, mirage-crypto-rng.0.10.7, mirage-crypto-rng-async.0.10.7 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml_intrinsics.v0.16.2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_assert.v0.16.0 (cached)
-> retrieved ppx_base.v0.16.0 (cached)
-> retrieved ppx_bench.v0.16.0 (cached)
-> retrieved ppx_bin_prot.v0.16.0 (cached)
-> retrieved ppx_cold.v0.16.0 (cached)
-> retrieved ppx_compare.v0.16.0 (cached)
-> retrieved ppx_custom_printf.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_disable_unused_warnings.v0.16.0 (cached)
-> retrieved ppx_enumerate.v0.16.0 (cached)
-> retrieved ppx_expect.v0.16.1 (cached)
-> retrieved ppx_fields_conv.v0.16.0 (cached)
-> retrieved ppx_fixed_literal.v0.16.0 (cached)
-> retrieved ppx_globalize.v0.16.0 (cached)
-> retrieved ppx_hash.v0.16.0 (cached)
-> retrieved ppx_here.v0.16.0 (cached)
-> retrieved ppx_ignore_instrumentation.v0.16.0 (cached)
-> retrieved ppx_inline_test.v0.16.1 (cached)
-> retrieved ppx_jane.v0.16.0 (cached)
-> retrieved ppx_let.v0.16.0 (cached)
-> retrieved ppx_log.v0.16.0 (cached)
-> retrieved ppx_module_timer.v0.16.0 (cached)
-> retrieved ppx_optcomp.v0.16.0 (cached)
-> retrieved ppx_optional.v0.16.0 (cached)
-> retrieved ppx_pipebang.v0.16.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_sexp_message.v0.16.0 (cached)
-> retrieved ppx_sexp_value.v0.16.0 (cached)
-> retrieved ppx_stable.v0.16.0 (cached)
-> retrieved ppx_stable_witness.v0.16.0 (cached)
-> retrieved ppx_string.v0.16.0 (cached)
-> retrieved ppx_tydi.v0.16.0 (cached)
-> retrieved ppx_typerep_conv.v0.16.0 (cached)
-> retrieved ppx_variants_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved protocol_version_header.v0.16.0 (cached)
-> installed dune-configurator.3.20.0~alpha4
-> retrieved re.1.13.2 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved sexp_pretty.v0.16.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved spawn.v0.17.0 (cached)
-> retrieved splittable_random.v0.16.0 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved textutils.v0.16.0 (cached)
-> retrieved textutils_kernel.v0.16.0 (cached)
-> retrieved time_now.v0.16.0 (cached)
-> retrieved timezone.v0.16.0 (cached)
-> retrieved topkg.1.1.0 (cached)
-> retrieved typerep.v0.16.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved variantslib.v0.16.0 (cached)
-> installed stdlib-shims.0.3.0
-> installed spawn.v0.17.0
-> installed num.1.6
-> installed sexplib0.v0.16.0
-> installed re.1.13.2
-> installed ocaml_intrinsics.v0.16.2
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed fieldslib.v0.16.0
-> installed variantslib.v0.16.0
-> installed stdio.v0.16.0
-> installed typerep.v0.16.0
-> installed lwt.5.9.1
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed cstruct.6.2.0
-> installed eqaf.0.9
-> installed logs.0.9.0
-> installed mirage-crypto.0.10.7
-> installed ppxlib.0.35.0
-> installed mirage-crypto-rng.0.10.7
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_disable_unused_warnings.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_fields_conv.v0.16.0
-> installed ppx_tydi.v0.16.0
-> installed ppx_stable_witness.v0.16.0
-> installed ppx_pipebang.v0.16.0
-> installed ppx_typerep_conv.v0.16.0
-> installed ppx_variants_conv.v0.16.0
-> installed ppx_stable.v0.16.0
-> installed ppx_ignore_instrumentation.v0.16.0
-> installed ppx_fixed_literal.v0.16.0
-> installed ppx_optional.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_let.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_sexp_value.v0.16.0
-> installed ppx_sexp_message.v0.16.0
-> installed ppx_custom_printf.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_log.v0.16.0
-> installed jst-config.v0.16.0
-> installed sexp_pretty.v0.16.0
-> installed ppx_string.v0.16.0
-> installed bin_prot.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_bin_prot.v0.16.0
-> installed ppx_module_timer.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_bench.v0.16.0
-> installed ppx_expect.v0.16.1
-> installed splittable_random.v0.16.0
-> installed base_quickcheck.v0.16.0
-> installed ppx_jane.v0.16.0
-> installed int_repr.v0.16.0
-> installed base_bigstring.v0.16.0
-> installed core.v0.16.2
-> installed protocol_version_header.v0.16.0
-> installed textutils_kernel.v0.16.0
-> installed expect_test_helpers_core.v0.16.0
-> installed timezone.v0.16.0
-> installed core_kernel.v0.16.0
-> installed async_kernel.v0.16.0
-> installed core_unix.v0.16.0
-> installed async_rpc_kernel.v0.16.0
-> installed textutils.v0.16.0
-> installed async_unix.v0.16.0
-> installed async.v0.16.0
-> installed mirage-crypto-rng-async.0.10.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:05.45 ---> saved as "04ff14c867cacb61b02829be88b148b1877f0795f5e33f72e3df75bd6eac906b"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mirage-crypto-rng-async.0.10.7) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage-crypto-rng-async 0.10.7
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mirage-crypto-rng-async.0.10.7 (https://opam.ocaml.org/cache)
-> removed mirage-crypto-rng-async.0.10.7
-> installed mirage-crypto-rng-async.0.10.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:06.01 ---> saved as "b8a28df782a60aceff027294b4e4cf9aa3dd83039d3e57277eaf0107c4604ce8"
/home/opam: (run (shell "opam reinstall --with-test --verbose mirage-crypto-rng-async.0.10.7;\
\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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mirage-crypto-rng-async.0.10.7' && 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 mirage-crypto-rng-async 0.10.7
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mirage-crypto-rng-async.0.10.7: extract]
-> retrieved mirage-crypto-rng-async.0.10.7 (cached)
Processing 2/4: [mirage-crypto-rng-async: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-rng-async" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage-crypto-rng-async.0.10.7)
Processing 2/4: [mirage-crypto-rng-async: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-crypto-rng-async" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage-crypto-rng-async.0.10.7)
- (cd _build/default/tests && ./test_entropy_collection_async.exe)
- reseeding: 00 08 d3 a0 ca 08 0e 3b 0a fa 01 c8 f0 1c 7e 20
- 1e 22 02 28 84 28 c0 2a 44 32 90 38 64 3a e4 40
- a2 43 62 4d 58 51 34 55 c2 58 fe 5a 38 63 f4 6b
- 84 76 6c 7d 7c 81 c0 85 a0 8a d6 91 ea 96 f0 9e
- dc a6 ae ae fe b5 94 bb 3a c5 c8 c8 1e cb a6 d3
- 80 dd c4 e1 a4 e6 f4 ed 56 f3 60 fc b2 fd 78 02
- 46 09 ee 0c ac 0f a0 19 32 1e 4a 24 68 25 5e 29
- 54 2d 16 31 56 34 8e 35 ec 39 4e 3f 3e 48 42 49
- ea 4c a8 4f 82 59 c6 5d c0 62 44 6a 76 70 16 72
- e0 77 3c 82 6e 88 f4 89 56 8f 60 98 b2 99 78 9e
- 46 a5 ee a8 c6 ab ee b5 50 bb 40 c4 44 c5 ec c8
- aa cb 84 d5 e2 d9 2a df b2 e7 a6 f1 52 f6 b8 fc
- f4 fe fa 06 1a 0f 88 17 14 21 3a 24 24 25 7e 28
- 1e 2a 02 30 02 08 05 e0 56 57 85 b7 b0 0c 03 80
- 60 8a 27 91 30 59 4e 4e ff 66 19 9e 11 43 1a 63
- 41 cb be bf b8 fa ae 05 f1 a0 bc 2b df 19 1d 76
- 0b cf 13 1e dc 93 c3 e6 b1 ee 0b 55 0e 3f e2 cb
- ea 6e 27 b0 92 c1 25 59 3b a7 9d 15 e8 f1 ca 69
- 45 c7 ae 23 fc ae 47 5a 3c eb 11 86 8a 01 6e 25
- 3f ce 3c 19 6a d4 6c cf 4f 0e b4 09 e7 cf 53 76
- d5 02 6c 34 ca dc 0f b4 5b bf 4d 6f 7a ea 35 04
- ac 18 97 ed ae 1f 9c 68 28 e8 05 3f 0a cf 16 25
-
- entropy sources: [2] timer [1] getrandom [0] rdrand
- accumulate: (src: [2] timer) 5c 97 40 15
- accumulate: (src: [0] rdrand) ac 9d 3d 8c 22 74 38 d5
- accumulate: (src: [1] getrandom) c4 a3 fa 87 46 4e 8c 44
- accumulate: (src: [2] timer) 56 58 0e 1d
- accumulate: (src: [2] timer) 98 75 ce 24
- accumulate: (src: [2] timer) b8 b7 8e 2c
- accumulate: (src: [2] timer) e0 3c 4f 34
- accumulate: (src: [2] timer) 10 eb 0f 3c
- accumulate: (src: [2] timer) 76 2f d1 43
- accumulate: (src: [2] timer) 08 c7 97 4b
- accumulate: (src: [2] timer) a2 ff 6f 53
- accumulate: (src: [2] timer) 8a dc 30 5b
- accumulate: (src: [2] timer) 3c 8b f1 62
- accumulate: (src: [2] timer) d6 19 b2 6a
- accumulate: (src: [2] timer) 38 df a7 72
- accumulate: (src: [2] timer) a6 d7 68 7a
- accumulate: (src: [2] timer) 02 f9 29 82
- accumulate: (src: [2] timer) 62 da ea 89
- accumulate: (src: [2] timer) 6c ac ab 91
- accumulate: (src: [2] timer) 8a c8 7a 99
- accumulate: (src: [2] timer) 66 ec 3a a1
- accumulate: (src: [2] timer) 3c 93 fa a8
- accumulate: (src: [2] timer) 8c 7f f2 af
- accumulate: (src: [0] rdrand) ea 2f c4 8a e5 95 d1 1f
- accumulate: (src: [2] timer) 48 21 b4 b7
- accumulate: (src: [2] timer) 82 97 74 bf
- accumulate: (src: [2] timer) 42 36 35 c7
- accumulate: (src: [2] timer) 3e d7 f5 ce
- accumulate: (src: [2] timer) 08 4b b6 d6
- accumulate: (src: [2] timer) f4 72 76 de
- accumulate: (src: [2] timer) 16 bc 36 e6
- accumulate: (src: [2] timer) b6 86 f7 ed
- accumulate: (src: [2] timer) 02 ee b7 f5
- accumulate: (src: [2] timer) 08 71 78 fd
- accumulate: (src: [2] timer) 30 ff 37 05
- accumulate: (src: [2] timer) b4 40 f8 0c
- accumulate: (src: [2] timer) 54 c6 b7 14
- accumulate: (src: [2] timer) 54 dc 88 1c
- accumulate: (src: [2] timer) 14 6a 48 24
- accumulate: (src: [2] timer) fa 89 08 2c
- accumulate: (src: [2] timer) 54 d4 c8 33
- accumulate: (src: [2] timer) 42 37 89 3b
- accumulate: (src: [2] timer) 1a b5 49 43
- accumulate: (src: [2] timer) 10 de 9f 4a
- accumulate: (src: [0] rdrand) f3 9b d0 2c df 12 a2 dc
- accumulate: (src: [2] timer) d4 aa a3 4a
- accumulate: (src: [2] timer) b4 b9 64 52
- accumulate: (src: [2] timer) fe 67 25 5a
- accumulate: (src: [2] timer) a8 2e e6 61
- accumulate: (src: [2] timer) 14 9e a6 69
- accumulate: (src: [2] timer) f2 05 66 71
- accumulate: (src: [2] timer) 20 38 26 79
- accumulate: (src: [2] timer) d0 02 e6 80
- accumulate: (src: [2] timer) 98 2e a6 88
- accumulate: (src: [2] timer) f6 9c 65 90
- accumulate: (src: [2] timer) 74 d6 25 98
- accumulate: (src: [2] timer) e8 35 e8 9f
- accumulate: (src: [2] timer) d2 b1 a8 a7
- accumulate: (src: [2] timer) 9e 46 69 af
- accumulate: (src: [2] timer) e6 6f 2a b7
- accumulate: (src: [2] timer) 7e 11 eb be
- accumulate: (src: [2] timer) 9c 86 c0 c6
- accumulate: (src: [2] timer) c4 59 81 ce
- accumulate: (src: [2] timer) fe 1d 42 d6
- accumulate: (src: [2] timer) 32 97 15 de
- accumulate: (src: [2] timer) 6a 80 5f e5
- accumulate: (src: [0] rdrand) 51 e9 3e 2e a0 34 60 0c
- accumulate: (src: [2] timer) 90 af 22 ed
- accumulate: (src: [2] timer) 2e f5 e3 f4
- accumulate: (src: [2] timer) 3c b6 a6 fc
- accumulate: (src: [2] timer) 46 4b 68 04
- accumulate: (src: [2] timer) ea 8b 29 0c
- accumulate: (src: [2] timer) 98 80 f2 13
- accumulate: (src: [2] timer) a2 fb b3 1b
- accumulate: (src: [2] timer) c2 68 75 23
- accumulate: (src: [2] timer) aa c3 35 2b
- accumulate: (src: [2] timer) bc 2f f6 32
- accumulate: (src: [2] timer) 4c 5a b6 3a
- accumulate: (src: [2] timer) d0 8e 76 42
- accumulate: (src: [2] timer) 8a bd 36 4a
- accumulate: (src: [2] timer) 18 08 f7 51
- accumulate: (src: [2] timer) d4 3d b7 59
- accumulate: (src: [2] timer) a2 4a 77 61
- accumulate: (src: [2] timer) d6 5d 37 69
- accumulate: (src: [2] timer) 52 6d f8 70
- accumulate: (src: [2] timer) 5c d7 b8 78
- accumulate: (src: [2] timer) 94 5e fd 7f
- accumulate: (src: [0] rdrand) dc 0c b3 8e dc 0d 7c 31
- accumulate: (src: [2] timer) da b5 10 80
- accumulate: (src: [2] timer) 8e 5e d1 87
- accumulate: (src: [2] timer) 8c df 91 8f
- accumulate: (src: [2] timer) 1c a6 52 97
- accumulate: (src: [2] timer) b8 6f 20 9f
- accumulate: (src: [2] timer) ac b3 e0 a6
- accumulate: (src: [2] timer) cc f5 a0 ae
- accumulate: (src: [2] timer) 86 3e 61 b6
- accumulate: (src: [2] timer) 8e 87 21 be
- accumulate: (src: [2] timer) 92 cf e1 c5
- accumulate: (src: [2] timer) 70 48 a2 cd
- accumulate: (src: [2] timer) c8 8b 62 d5
- accumulate: (src: [2] timer) 16 d3 22 dd
- accumulate: (src: [2] timer) 00 1b e3 e4
- accumulate: (src: [2] timer) 90 fb a3 ec
- accumulate: (src: [2] timer) fa b1 64 f4
- accumulate: (src: [2] timer) 56 44 25 fc
- accumulate: (src: [2] timer) e4 a8 ff 03
- accumulate: (src: [2] timer) fe 64 c0 0b
- accumulate: (src: [2] timer) 6a fb 80 13
- accumulate: (src: [2] timer) 6a 6c a9 1a
- accumulate: (src: [0] rdrand) f2 a5 33 ee 2d 9d cc 26
- accumulate: (src: [2] timer) ac 31 c2 1a
- accumulate: (src: [2] timer) 3a 4c 83 22
- accumulate: (src: [2] timer) fc d7 43 2a
- accumulate: (src: [2] timer) 34 25 02 32
- accumulate: (src: [2] timer) d8 24 c3 39
- accumulate: (src: [2] timer) dc 38 83 41
- accumulate: (src: [2] timer) 8e 35 44 49
- accumulate: (src: [2] timer) d2 59 04 51
- accumulate: (src: [2] timer) b6 28 c5 58
- accumulate: (src: [2] timer) 48 67 85 60
- accumulate: (src: [2] timer) c4 28 46 68
- accumulate: (src: [2] timer) 64 0d 07 70
- accumulate: (src: [2] timer) e0 e8 c7 77
- accumulate: (src: [2] timer) 76 69 88 7f
- accumulate: (src: [2] timer) ee 36 49 87
- accumulate: (src: [2] timer) 30 13 09 8f
- accumulate: (src: [2] timer) 4a c2 c9 96
- accumulate: (src: [2] timer) 00 58 8a 9e
- accumulate: (src: [2] timer) 18 09 4a a6
- accumulate: (src: [2] timer) 5a ff 09 ae
- accumulate: (src: [2] timer) 5c b3 5b b5
- accumulate: (src: [0] rdrand) 99 e1 3c 8b c8 06 e6 2d
- accumulate: (src: [2] timer) 04 88 73 b5
- accumulate: (src: [2] timer) d0 66 33 bd
- accumulate: (src: [2] timer) c4 f8 f3 c4
- accumulate: (src: [2] timer) e6 cc b3 cc
- accumulate: (src: [2] timer) b0 7d 73 d4
- accumulate: (src: [2] timer) dc 74 33 dc
- accumulate: (src: [2] timer) e0 d6 f3 e3
- accumulate: (src: [2] timer) 98 bd b3 eb
- accumulate: (src: [2] timer) 68 4f 73 f3
- accumulate: (src: [2] timer) a4 4a 33 fb
- accumulate: (src: [2] timer) 3a 7d f3 02
- accumulate: (src: [2] timer) b4 4d b3 0a
- accumulate: (src: [2] timer) c8 24 73 12
- accumulate: (src: [2] timer) 82 eb 32 1a
- accumulate: (src: [2] timer) 34 73 f3 21
- accumulate: (src: [2] timer) ce 35 b4 29
- accumulate: (src: [2] timer) 18 bd 74 31
- accumulate: (src: [2] timer) 48 b9 35 39
- accumulate: (src: [2] timer) 28 e2 f6 40
- accumulate: (src: [2] timer) 06 5b b7 48
- accumulate: (src: [2] timer) e0 f8 05 50
- accumulate: (src: [0] rdrand) bb 99 ab d1 cd e3 2a ed
- accumulate: (src: [2] timer) f2 bc 24 50
- accumulate: (src: [2] timer) de 24 e8 57
- accumulate: (src: [2] timer) 9e fb a9 5f
- accumulate: (src: [2] timer) 5e 36 6b 67
- accumulate: (src: [2] timer) 5e f2 2b 6f
- accumulate: (src: [2] timer) 1e f5 eb 76
- accumulate: (src: [2] timer) 36 aa ac 7e
- accumulate: (src: [2] timer) a4 c5 6c 86
- accumulate: (src: [2] timer) 18 6b 2d 8e
- accumulate: (src: [2] timer) 32 34 ee 95
- accumulate: (src: [2] timer) 60 0f af 9d
- accumulate: (src: [2] timer) 42 f1 6f a5
- accumulate: (src: [2] timer) ca b5 30 ad
- accumulate: (src: [2] timer) b8 8d f1 b4
- accumulate: (src: [2] timer) 76 32 b2 bc
- accumulate: (src: [2] timer) 8c 14 73 c4
- accumulate: (src: [2] timer) 0c fe 33 cc
- accumulate: (src: [2] timer) 62 f0 f4 d3
- accumulate: (src: [2] timer) 8c 07 b5 db
- accumulate: (src: [2] timer) 76 c4 75 e3
- accumulate: (src: [2] timer) b0 0f b3 ea
- accumulate: (src: [0] rdrand) b1 b1 2e 04 27 c2 de 10
- accumulate: (src: [2] timer) 64 61 d6 ea
- accumulate: (src: [2] timer) 94 db 96 f2
- accumulate: (src: [2] timer) 08 e9 57 fa
- accumulate: (src: [2] timer) d4 22 18 02
- accumulate: (src: [2] timer) 4c 3a d8 09
- accumulate: (src: [2] timer) 74 e6 98 11
- accumulate: (src: [2] timer) 9a b6 5a 19
- accumulate: (src: [2] timer) 62 9c 1c 21
- accumulate: (src: [2] timer) 94 6f de 28
- accumulate: (src: [2] timer) c8 75 9e 30
- accumulate: (src: [2] timer) e0 a8 5e 38
- accumulate: (src: [2] timer) 60 67 1e 40
- accumulate: (src: [2] timer) 18 41 de 47
- accumulate: (src: [2] timer) 74 ac 9e 4f
- accumulate: (src: [2] timer) 80 67 5e 57
- accumulate: (src: [2] timer) 90 46 1d 5f
- accumulate: (src: [2] timer) 84 11 dc 66
- accumulate: (src: [2] timer) 02 ef b8 6e
- accumulate: (src: [2] timer) 76 b3 77 76
- accumulate: (src: [2] timer) 3c 6c 36 7e
- accumulate: (src: [2] timer) 7a a3 64 85
- accumulate: (src: [0] rdrand) 17 40 65 c7 fd fc 64 c9
- accumulate: (src: [2] timer) 38 89 87 85
- accumulate: (src: [2] timer) de ef 46 8d
- accumulate: (src: [2] timer) 76 36 07 95
- accumulate: (src: [2] timer) 80 dd c6 9c
- accumulate: (src: [2] timer) 8a 0f 86 a4
- accumulate: (src: [2] timer) a8 39 45 ac
- accumulate: (src: [2] timer) 3a c2 04 b4
- accumulate: (src: [2] timer) 36 04 c4 bb
- accumulate: (src: [2] timer) 28 e6 83 c3
- accumulate: (src: [2] timer) f4 28 43 cb
- accumulate: (src: [2] timer) f8 08 03 d3
- accumulate: (src: [2] timer) 88 97 c2 da
- accumulate: (src: [2] timer) ac cd 82 e2
- accumulate: (src: [2] timer) d2 95 42 ea
- accumulate: (src: [2] timer) f2 6b 01 f2
- accumulate: (src: [2] timer) f8 22 c2 f9
- accumulate: (src: [2] timer) 9a 46 84 01
- accumulate: (src: [2] timer) b2 8e 46 09
- accumulate: (src: [2] timer) c6 e2 08 11
- accumulate: (src: [2] timer) 0e 03 cb 18
- accumulate: (src: [2] timer) 54 d0 11 20
- accumulate: (src: [0] rdrand) 5a 4c 49 e9 7c d4 1f 3f
- accumulate: (src: [1] getrandom) ad 60 f9 42 ae 69 01 40
-> compiled mirage-crypto-rng-async.0.10.7
-> removed mirage-crypto-rng-async.0.10.7
-> installed mirage-crypto-rng-async.0.10.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:06.17 ---> saved as "7ba27e1536bcae4533912166c0731bac7d16e0c06485583171db2c27c61ef830"
Job succeeded
2025-08-12 22:06.24: Job succeeded