Build:
- 0
2026-02-15 18:27.54: New job: test mirage-crypto-rng-miou-unix.2.0.1 with miou.0.5.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29400/head (9f6e17a0398aaa7eab5cb0171ab4ee9a62ba149f)
on debian-13-ocaml-5.4/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/29400/head" && git reset --hard 9f6e17a0
git fetch origin master
git merge --no-edit 66fe1c299d8a0fe922268a88a05ccf4bee097900
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 miou.0.5.4 0.5.4
RUN opam reinstall miou.0.5.4; \
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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'miou.0.5.4' && 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-miou-unix.2.0.1; \
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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mirage-crypto-rng-miou-unix.2.0.1' && 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-miou-unix.2.0.1) || true
RUN opam reinstall --with-test --verbose mirage-crypto-rng-miou-unix.2.0.1; \
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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mirage-crypto-rng-miou-unix.2.0.1' && 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-02-15 18:27.54: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-miou.0.5.4-mirage-crypto-rng-miou-unix.2.0.1-9f6e17a0398aaa7eab5cb0171ab4ee9a62ba149f"
2026-02-15 18:27.54: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(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 miou.0.5.4 0.5.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall miou.0.5.4;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'miou.0.5.4' && 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-miou-unix.2.0.1;\
\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-13\\\"\"; 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-miou-unix.2.0.1' && 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-miou-unix.2.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose mirage-crypto-rng-miou-unix.2.0.1;\
\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-13\\\"\"; 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-miou-unix.2.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-15 18:27.54: Waiting for resource in pool OCluster
2026-02-15 18:27.55: Waiting for worker…
2026-02-15 18:28.20: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 64% (11692/18212)
Updating files: 65% (11838/18212)
Updating files: 66% (12020/18212)
Updating files: 67% (12203/18212)
Updating files: 68% (12385/18212)
Updating files: 69% (12567/18212)
Updating files: 70% (12749/18212)
Updating files: 71% (12931/18212)
Updating files: 72% (13113/18212)
Updating files: 73% (13295/18212)
Updating files: 74% (13477/18212)
Updating files: 75% (13659/18212)
Updating files: 76% (13842/18212)
Updating files: 77% (14024/18212)
Updating files: 78% (14206/18212)
Updating files: 79% (14388/18212)
Updating files: 80% (14570/18212)
Updating files: 81% (14752/18212)
Updating files: 82% (14934/18212)
Updating files: 83% (15116/18212)
Updating files: 84% (15299/18212)
Updating files: 85% (15481/18212)
Updating files: 86% (15663/18212)
Updating files: 87% (15845/18212)
Updating files: 88% (16027/18212)
Updating files: 89% (16209/18212)
Updating files: 90% (16391/18212)
Updating files: 91% (16573/18212)
Updating files: 92% (16756/18212)
Updating files: 93% (16938/18212)
Updating files: 94% (17120/18212)
Updating files: 95% (17302/18212)
Updating files: 96% (17484/18212)
Updating files: 97% (17666/18212)
Updating files: 98% (17848/18212)
Updating files: 99% (18030/18212)
Updating files: 100% (18212/18212)
Updating files: 100% (18212/18212), done.
HEAD is now at 66fe1c299d Merge pull request #29371 from edwintorok/release-lintcstubs-arity-0.5.0
Updating 66fe1c299d..9f6e17a039
Fast-forward
packages/miou/miou.0.5.4/opam | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 packages/miou/miou.0.5.4/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-02-15 18:28.33 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" 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-02-15 18:28.33 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" 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-02-15 18:28.33 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" 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=debian os-version=13
# 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-02-15 18:28.33 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-02-15 18:28.33 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-15 18:28.40 ---> saved as "87802fd50a3fcfc67847b9e4734509f816075800497fb41ba573787fb9a8f002"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-15 18:29.13 ---> saved as "89e26b05addb9e45afb075e16bd9f10f6644cd4746c2763589ab9ceddd067964"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [108 kB]
- Fetched 198 kB in 0s (1002 kB/s)
- Reading package lists...
-
2026-02-15 18:29.16 ---> saved as "0259c3de8e60d1897477403e87c4e4af394ebdacadc601b6d648fd84ac2eb2bb"
/home/opam: (run (shell "opam pin add -k version -yn miou.0.5.4 0.5.4"))
miou is now pinned to version 0.5.4
2026-02-15 18:29.17 ---> saved as "c4bf0bccfce0dff69f36dc6c861d21092696960704a2634ea2accd41cec38ec1"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall miou.0.5.4;\
\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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'miou.0.5.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
miou.0.5.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.1 [required by miou]
- install dune-configurator 3.21.1 [required by miou]
- install miou 0.5.4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved miou.0.5.4 (cached)
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.1
-> installed miou.0.5.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 18:30.23 ---> saved as "67c0b3d128d105cfd65a940c510e0cd48223cc8fb06f72653197aed68997d266"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-crypto-rng-miou-unix.2.0.1;\
\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-13\\\"\"; 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-miou-unix.2.0.1' && 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-miou-unix.2.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install digestif 1.3.0 [required by mirage-crypto-rng-miou-unix]
- install duration 0.2.1 [required by mirage-crypto-rng-miou-unix]
- install eqaf 0.10 [required by digestif]
- install logs 0.10.0 [required by mirage-crypto-rng-miou-unix]
- install mirage-crypto 2.0.1 [required by mirage-crypto-rng]
- install mirage-crypto-rng 2.0.1 [required by mirage-crypto-rng-miou-unix]
- install mirage-crypto-rng-miou-unix 2.0.1
- install mtime 2.1.0 [required by mirage-crypto-rng-miou-unix]
- install ocamlbuild 0.16.1 [required by logs, mtime]
- install ocamlfind 1.9.8 [required by logs, mtime]
- install topkg 1.1.1 [required by logs, mtime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved digestif.1.3.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved logs.0.10.0 (cached)
-> installed duration.0.2.1
-> installed eqaf.0.10
-> retrieved mirage-crypto.2.0.1, mirage-crypto-rng.2.0.1, mirage-crypto-rng-miou-unix.2.0.1 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed digestif.1.3.0
-> installed mirage-crypto.2.0.1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed mtime.2.1.0
-> installed mirage-crypto-rng.2.0.1
-> installed mirage-crypto-rng-miou-unix.2.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 18:30.52 ---> saved as "6096c810117bfbcad72849d2454ba3bd6b38e05b6fea512a18b758c8934da25d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mirage-crypto-rng-miou-unix.2.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage-crypto-rng-miou-unix 2.0.1
=== install 1 package
- install ohex 0.2.0 [required by mirage-crypto-rng-miou-unix]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mirage-crypto-rng-miou-unix.2.0.1 (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0 (https://opam.ocaml.org/cache)
-> removed mirage-crypto-rng-miou-unix.2.0.1
-> installed ohex.0.2.0
-> installed mirage-crypto-rng-miou-unix.2.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 18:31.02 ---> saved as "bf4a62f043cc6a356c08079c509fdd3a2fb568fe10c352b38466fdd919580b45"
/home/opam: (run (shell "opam reinstall --with-test --verbose mirage-crypto-rng-miou-unix.2.0.1;\
\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-13\\\"\"; 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-miou-unix.2.0.1' && 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-miou-unix 2.0.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mirage-crypto-rng-miou-unix.2.0.1: extract]
-> retrieved mirage-crypto-rng-miou-unix.2.0.1 (cached)
Processing 2/4: [mirage-crypto-rng-miou-unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-rng-miou-unix" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-crypto-rng-miou-unix.2.0.1)
Processing 2/4: [mirage-crypto-rng-miou-unix: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-crypto-rng-miou-unix" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-crypto-rng-miou-unix.2.0.1)
- (cd _build/default/tests && ./test_miou_entropy_collection.exe)
- reseeding:
- 000000 0008 fac5 c747 2518 ff87 01c8 05d6 dfdd .....G%.........
- 000010 63e4 04e6 e2ec 27f0 0bf1 c8f4 adf7 f503 c.....'.........
- 000020 4910 9611 1817 7d21 ab26 b72f 173c c23c I.....}!.&./.<.<
- 000030 9b3f ba4a e753 e660 3164 2a65 5369 006e .?.J.S.`1d*eSi.n
- 000040 0674 5174 b375 a47b d187 8b94 aa96 759e .tQt.u.{......u.
- 000050 19a3 12aa 44ae 1eb3 8cba 1ac0 bfc0 dbc2 ....D...........
- 000060 fec9 d5ce 34d6 09dd 42e0 68e1 70e5 4be9 ....4...B.h.p.K.
- 000070 36ec f6ec 0fef 25f7 11ff 9007 4711 8c14 6.....%.....G...
- 000080 6316 cf1c d91e 8926 742c c72d ea31 f535 c......&t,.-.1.5
- 000090 ae3a b740 9742 ce47 b251 f955 335b 3c64 .:.@.B.G.Q.U3[<d
- 0000a0 5665 f469 aa6e d174 f676 e37d d783 ee8a Ve.i.n.t.v.}....
- 0000b0 7891 d495 959b 34a5 c2a7 afb1 1cb7 a0c0 x.....4.........
- 0000c0 cbc2 e7ca fdd2 04db 8fe3 caed 8ff2 98f8 ................
- 0000d0 3ffa c2fe 0208 648c 69f7 9ac0 ed59 0380 ?.....d.i....Y..
- 0000e0 9249 71b5 b104 82e2 97c1 c5a1 a0b5 3cd3 .Iq...........<.
- 0000f0 4d7e 9f4d 39c3 06d3 b204 ea55 00a0 44ff M~.M9......U..D.
- 000100 1144 5096 7afe b845 ff7e af19 eeaa 7016 .DP.z..E.~....p.
- 000110 3f08 2d7d 319d 9ec1 ed72 43a8 15e1 536c ?.-}1....rC...Sl
- 000120 dd77 26bd d60a f658 2803 2389 4d33 016c .w&....X(.#.M3.l
- 000130 2574 a53c 31c1 85d2 3ff7 8d20 ef72 548e %t.<1...?.. .rT.
- 000140 95a5 7b25 2990 ca24 ee6f d6f9 5d24 89b7 ..{%)..$.o..]$..
- 000150 c502 4689 e9a2 615e 3bb9 5ef7 e790 8d09 ..F...a^;.^.....
-
- entropy sources:
- accumulate: (src: [0] rdrand) c24f db21 043c 84b5
- accumulate: (src: [1] getrandom) 83ea 71d2 4dd6 30b3
- accumulate: (src: [0] rdrand) c5d7 5b51 a0f0 e7d4
- (cd _build/default/tests && ./test_miou_rng.exe)
- 32 bit random number: 9398631efac8ba9992dc28fa55ba57239efcdb7864d625054bae701c75434657
- 16 bit random number: a3a9fed243af2db651779b96104d7468
-> compiled mirage-crypto-rng-miou-unix.2.0.1
-> removed mirage-crypto-rng-miou-unix.2.0.1
-> installed mirage-crypto-rng-miou-unix.2.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 18:31.11 ---> saved as "ab0057d107d60f98526ccb85ce19e8ab11dc374dda34d3f8850f1a8bd05eeacb"
Job succeeded
2026-02-15 18:31.20: Job succeeded