- github
- ocaml
- opam-repository
- ea3d41
- extras,riscv64-ocaml-5.4,cryptokit.1.21,tests
(not at the head of any monitored branch or PR)
2025-12-30 14:37.55: New job: test cryptokit.1.21, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29148/head (ea3d41c3a9de6ce5078688dfe4c1d2f7261d7cc0)
on ubuntu-24.04-ocaml-5.4/riscv64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29148/head" && git reset --hard ea3d41c3
git fetch origin master
git merge --no-edit 478fb6873e38d7da44dc1ea3074382ce5c3deab7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347
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 cryptokit.1.21 1.21
RUN opam reinstall cryptokit.1.21; \
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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'cryptokit.1.21' && 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 cryptokit.1.21) || true
RUN opam reinstall --with-test --verbose cryptokit.1.21; \
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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'cryptokit.1.21' && 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-12-30 14:37.55: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347-cryptokit.1.21-ea3d41c3a9de6ce5078688dfe4c1d2f7261d7cc0"
2025-12-30 14:37.55: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347)
(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 cryptokit.1.21 1.21"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall cryptokit.1.21;\
\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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'cryptokit.1.21' && 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 cryptokit.1.21) || true"))
(run (shell "opam reinstall --with-test --verbose cryptokit.1.21;\
\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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'cryptokit.1.21' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-30 14:37.55: Waiting for resource in pool OCluster
2025-12-30 14:37.56: Waiting for worker…
2025-12-30 14:46.56: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files: 14% (2703/19115)
Updating files: 15% (2868/19115)
Updating files: 16% (3059/19115)
Updating files: 17% (3250/19115)
Updating files: 18% (3441/19115)
Updating files: 19% (3632/19115)
Updating files: 20% (3823/19115)
Updating files: 21% (4015/19115)
Updating files: 22% (4206/19115)
Updating files: 23% (4397/19115)
Updating files: 24% (4588/19115)
Updating files: 25% (4779/19115)
Updating files: 25% (4942/19115)
Updating files: 26% (4970/19115)
Updating files: 27% (5162/19115)
Updating files: 28% (5353/19115)
Updating files: 29% (5544/19115)
Updating files: 30% (5735/19115)
Updating files: 31% (5926/19115)
Updating files: 32% (6117/19115)
Updating files: 33% (6308/19115)
Updating files: 34% (6500/19115)
Updating files: 35% (6691/19115)
Updating files: 36% (6882/19115)
Updating files: 37% (7073/19115)
Updating files: 37% (7130/19115)
Updating files: 38% (7264/19115)
Updating files: 39% (7455/19115)
Updating files: 40% (7646/19115)
Updating files: 41% (7838/19115)
Updating files: 42% (8029/19115)
Updating files: 43% (8220/19115)
Updating files: 44% (8411/19115)
Updating files: 45% (8602/19115)
Updating files: 46% (8793/19115)
Updating files: 47% (8985/19115)
Updating files: 48% (9176/19115)
Updating files: 49% (9367/19115)
Updating files: 49% (9397/19115)
Updating files: 50% (9558/19115)
Updating files: 51% (9749/19115)
Updating files: 52% (9940/19115)
Updating files: 53% (10131/19115)
Updating files: 54% (10323/19115)
Updating files: 55% (10514/19115)
Updating files: 56% (10705/19115)
Updating files: 57% (10896/19115)
Updating files: 58% (11087/19115)
Updating files: 59% (11278/19115)
Updating files: 60% (11469/19115)
Updating files: 60% (11645/19115)
Updating files: 61% (11661/19115)
Updating files: 62% (11852/19115)
Updating files: 63% (12043/19115)
Updating files: 64% (12234/19115)
Updating files: 65% (12425/19115)
Updating files: 66% (12616/19115)
Updating files: 67% (12808/19115)
Updating files: 68% (12999/19115)
Updating files: 69% (13190/19115)
Updating files: 70% (13381/19115)
Updating files: 71% (13572/19115)
Updating files: 72% (13763/19115)
Updating files: 72% (13952/19115)
Updating files: 73% (13954/19115)
Updating files: 74% (14146/19115)
Updating files: 75% (14337/19115)
Updating files: 76% (14528/19115)
Updating files: 77% (14719/19115)
Updating files: 78% (14910/19115)
Updating files: 79% (15101/19115)
Updating files: 80% (15292/19115)
Updating files: 81% (15484/19115)
Updating files: 82% (15675/19115)
Updating files: 83% (15866/19115)
Updating files: 84% (16057/19115)
Updating files: 84% (16076/19115)
Updating files: 85% (16248/19115)
Updating files: 86% (16439/19115)
Updating files: 87% (16631/19115)
Updating files: 88% (16822/19115)
Updating files: 89% (17013/19115)
Updating files: 90% (17204/19115)
Updating files: 91% (17395/19115)
Updating files: 92% (17586/19115)
Updating files: 93% (17777/19115)
Updating files: 94% (17969/19115)
Updating files: 95% (18160/19115)
Updating files: 96% (18351/19115)
Updating files: 96% (18439/19115)
Updating files: 97% (18542/19115)
Updating files: 98% (18733/19115)
Updating files: 99% (18924/19115)
Updating files: 100% (19115/19115)
Updating files: 100% (19115/19115), done.
HEAD is now at 478fb6873e Merge pull request #29008 from tjammer/release-raylib-1.6.0
Merge made by the 'ort' strategy.
packages/cryptokit/cryptokit.1.21/opam | 40 ++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 packages/cryptokit/cryptokit.1.21/opam
(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347' locally
docker.io/ocaml/opam@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347: Pulling from ocaml/opam
4f36e1b0a2cc: Pulling fs layer
0c935b9c683c: Pulling fs layer
017f18f352fe: Pulling fs layer
f978f6b3932a: Pulling fs layer
89e2d126182a: Pulling fs layer
34544737d27b: Pulling fs layer
0d1d4df4d42a: Pulling fs layer
b362026811ef: Pulling fs layer
d5b1b45f3787: Pulling fs layer
c6acd23758e6: Pulling fs layer
a1dadd9b4824: Pulling fs layer
a53579595dae: Pulling fs layer
ff6fdf3de570: Pulling fs layer
5177a4e08837: Pulling fs layer
a484cf266a78: Pulling fs layer
555dc3669c6c: Pulling fs layer
84d1c5730b64: Pulling fs layer
ffae22b8efe2: Pulling fs layer
8e4d27279184: Pulling fs layer
bed3f713a624: Pulling fs layer
9bdcda63ea67: Pulling fs layer
4f4fb700ef54: Pulling fs layer
4de3076a1644: Pulling fs layer
b24be418d86f: Pulling fs layer
fd259f899874: Pulling fs layer
5c8673430b57: Pulling fs layer
80aed0f40581: Pulling fs layer
a0f3f8e8007d: Pulling fs layer
e23b61c36abf: Pulling fs layer
723171499691: Pulling fs layer
a8a417695a9a: Pulling fs layer
e9b9f8b2a37b: Pulling fs layer
df39bf306a4a: Pulling fs layer
8c0f3799b80b: Pulling fs layer
f978f6b3932a: Waiting
bd4d0ae2f36b: Pulling fs layer
89e2d126182a: Waiting
34544737d27b: Waiting
0d1d4df4d42a: Waiting
c6f148f8ffc0: Pulling fs layer
b362026811ef: Waiting
d5b1b45f3787: Waiting
828cca44001b: Pulling fs layer
c6acd23758e6: Waiting
c48b0ad0142e: Pulling fs layer
ff6fdf3de570: Waiting
a1dadd9b4824: Waiting
5177a4e08837: Waiting
a484cf266a78: Waiting
555dc3669c6c: Waiting
84d1c5730b64: Waiting
a53579595dae: Waiting
ffae22b8efe2: Waiting
8e4d27279184: Waiting
bed3f713a624: Waiting
9bdcda63ea67: Waiting
981a16b58005: Pulling fs layer
fd259f899874: Waiting
5c8673430b57: Waiting
584473f44228: Pulling fs layer
40eadc69148d: Pulling fs layer
ea65b313d720: Pulling fs layer
5026371c4abf: Pulling fs layer
65a73d295db2: Pulling fs layer
761852c5e052: Pulling fs layer
b424c0b2e750: Pulling fs layer
4ef5efb1cdf0: Pulling fs layer
e9b9f8b2a37b: Waiting
df39bf306a4a: Waiting
8c0f3799b80b: Waiting
bd4d0ae2f36b: Waiting
c6f148f8ffc0: Waiting
828cca44001b: Waiting
c48b0ad0142e: Waiting
981a16b58005: Waiting
584473f44228: Waiting
40eadc69148d: Waiting
ea65b313d720: Waiting
5026371c4abf: Waiting
65a73d295db2: Waiting
761852c5e052: Waiting
b424c0b2e750: Waiting
4ef5efb1cdf0: Waiting
80aed0f40581: Waiting
4f4fb700ef54: Waiting
b24be418d86f: Waiting
e23b61c36abf: Waiting
723171499691: Waiting
4de3076a1644: Waiting
a8a417695a9a: Waiting
a0f3f8e8007d: Waiting
0c935b9c683c: Verifying Checksum
0c935b9c683c: Download complete
017f18f352fe: Verifying Checksum
017f18f352fe: Download complete
89e2d126182a: Verifying Checksum
89e2d126182a: Download complete
f978f6b3932a: Verifying Checksum
f978f6b3932a: Download complete
4f36e1b0a2cc: Verifying Checksum
4f36e1b0a2cc: Download complete
b362026811ef: Verifying Checksum
b362026811ef: Download complete
0d1d4df4d42a: Verifying Checksum
0d1d4df4d42a: Download complete
d5b1b45f3787: Verifying Checksum
d5b1b45f3787: Download complete
c6acd23758e6: Verifying Checksum
c6acd23758e6: Download complete
a1dadd9b4824: Download complete
a53579595dae: Verifying Checksum
a53579595dae: Download complete
4f36e1b0a2cc: Pull complete
0c935b9c683c: Pull complete
017f18f352fe: Pull complete
5177a4e08837: Download complete
a484cf266a78: Verifying Checksum
a484cf266a78: Download complete
ff6fdf3de570: Verifying Checksum
ff6fdf3de570: Download complete
f978f6b3932a: Pull complete
555dc3669c6c: Verifying Checksum
555dc3669c6c: Download complete
84d1c5730b64: Verifying Checksum
84d1c5730b64: Download complete
ffae22b8efe2: Verifying Checksum
ffae22b8efe2: Download complete
89e2d126182a: Pull complete
bed3f713a624: Verifying Checksum
bed3f713a624: Download complete
8e4d27279184: Verifying Checksum
8e4d27279184: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
9bdcda63ea67: Verifying Checksum
9bdcda63ea67: Download complete
4de3076a1644: Verifying Checksum
4de3076a1644: Download complete
b24be418d86f: Verifying Checksum
b24be418d86f: Download complete
fd259f899874: Download complete
5c8673430b57: Verifying Checksum
5c8673430b57: Download complete
34544737d27b: Verifying Checksum
34544737d27b: Download complete
80aed0f40581: Verifying Checksum
80aed0f40581: Download complete
a0f3f8e8007d: Verifying Checksum
a0f3f8e8007d: Download complete
e23b61c36abf: Download complete
723171499691: Verifying Checksum
723171499691: Download complete
a8a417695a9a: Verifying Checksum
a8a417695a9a: Download complete
e9b9f8b2a37b: Verifying Checksum
e9b9f8b2a37b: Download complete
df39bf306a4a: Verifying Checksum
df39bf306a4a: Download complete
8c0f3799b80b: Verifying Checksum
8c0f3799b80b: Download complete
c6f148f8ffc0: Verifying Checksum
c6f148f8ffc0: Download complete
c48b0ad0142e: Verifying Checksum
c48b0ad0142e: Download complete
981a16b58005: Verifying Checksum
981a16b58005: Download complete
584473f44228: Verifying Checksum
584473f44228: Download complete
40eadc69148d: Verifying Checksum
40eadc69148d: Download complete
ea65b313d720: Verifying Checksum
ea65b313d720: Download complete
5026371c4abf: Verifying Checksum
5026371c4abf: Download complete
34544737d27b: Pull complete
0d1d4df4d42a: Pull complete
65a73d295db2: Verifying Checksum
65a73d295db2: Download complete
828cca44001b: Verifying Checksum
828cca44001b: Download complete
761852c5e052: Verifying Checksum
761852c5e052: Download complete
b362026811ef: Pull complete
4ef5efb1cdf0: Verifying Checksum
4ef5efb1cdf0: Download complete
b424c0b2e750: Verifying Checksum
b424c0b2e750: Download complete
d5b1b45f3787: Pull complete
c6acd23758e6: Pull complete
bd4d0ae2f36b: Verifying Checksum
bd4d0ae2f36b: Download complete
a1dadd9b4824: Pull complete
a53579595dae: Pull complete
ff6fdf3de570: Pull complete
5177a4e08837: Pull complete
a484cf266a78: Pull complete
555dc3669c6c: Pull complete
84d1c5730b64: Pull complete
ffae22b8efe2: Pull complete
8e4d27279184: Pull complete
bed3f713a624: Pull complete
9bdcda63ea67: Pull complete
4f4fb700ef54: Pull complete
4de3076a1644: Pull complete
b24be418d86f: Pull complete
fd259f899874: Pull complete
5c8673430b57: Pull complete
80aed0f40581: Pull complete
a0f3f8e8007d: Pull complete
e23b61c36abf: Pull complete
723171499691: Pull complete
a8a417695a9a: Pull complete
e9b9f8b2a37b: Pull complete
df39bf306a4a: Pull complete
8c0f3799b80b: Pull complete
bd4d0ae2f36b: Pull complete
c6f148f8ffc0: Pull complete
828cca44001b: Pull complete
c48b0ad0142e: Pull complete
981a16b58005: Pull complete
584473f44228: Pull complete
40eadc69148d: Pull complete
ea65b313d720: Pull complete
5026371c4abf: Pull complete
65a73d295db2: Pull complete
761852c5e052: Pull complete
b424c0b2e750: Pull complete
4ef5efb1cdf0: Pull complete
Digest: sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347
Status: Downloaded newer image for ocaml/opam@sha256:b2e8cda7b6f1db3d5510704d9d3e3401875b3c411a38bf9839fd48be2585d347
2025-12-30 14:47.09 ---> using "a6ade97ac9edb0d6639b68c495e44fca669c4241186d471d23872d806376ede6" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-30 14:47.09 ---> using "796d08ab746425f136bf565cbc33b98210fa447726e84bfb6e85dbb086c8b3be" 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
2025-12-30 14:47.09 ---> using "abec55552ac98c8d6285e48f60becabc4ba13113f2e817fc1164a97296d3e4db" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# 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
2025-12-30 14:47.09 ---> using "bf0476916acbb1744b00bad012de66a1289d0335308cdc38dc99f97d3815ab5e" 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-12-30 14:47.09 ---> using "c1e7d11fa23e09a98ab46ff4eea4825b282aeb8767d4734b1db73fa83e5a9e9b" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 14:47.14 ---> using "2a973d13be86ecd022466619aee74ae194ac3c1aab300e7cdb3ad4a120dba344" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 14:47.14 ---> using "be9ae7f02cbc35fb1e1bf8479337e9bef7adea35da351fe92a114b6a9f5df80e" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Fetched 378 kB in 2s (247 kB/s)
- Reading package lists...
-
2025-12-30 14:47.14 ---> using "b90dd1148d2b8459a52bcc9d1cb2fda3a8da193a1636f4a4c357f18cb4798114" from cache
/home/opam: (run (shell "opam pin add -k version -yn cryptokit.1.21 1.21"))
cryptokit is now pinned to version 1.21
2025-12-30 14:47.14 ---> using "f72645cbb1fbd44c5ba4c1f0316fa6a0dfb5558ed47c792dd07b219a5419a832" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall cryptokit.1.21;\
\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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'cryptokit.1.21' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
cryptokit.1.21 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by cryptokit]
- install conf-pkg-config 4 [required by conf-zlib, zarith]
- install conf-zlib 1 [required by cryptokit]
- install cryptokit 1.21 (pinned)
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by cryptokit]
- install dune-configurator 3.20.2 [required by cryptokit]
- install ocamlfind 1.9.8 [required by zarith]
- install zarith 1.14 [required by cryptokit]
The following system packages will first need to be installed:
libgmp-dev pkg-config zlib1g-dev
<><> 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" "libgmp-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:riscv64.
- (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 ... 16279 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_riscv64.deb ...
- Unpacking libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libgmp-dev:riscv64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_riscv64.deb ...
- Unpacking libgmp-dev:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libpkgconf3:riscv64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-2build1_riscv64.deb ...
- Unpacking libpkgconf3:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:riscv64.
- Preparing to unpack .../4-pkgconf_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:riscv64.
- Preparing to unpack .../5-pkg-config_1.8.1-2build1_riscv64.deb ...
- Unpacking pkg-config:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package zlib1g-dev:riscv64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.3.dfsg-3.1ubuntu2.1_riscv64.deb ...
- Unpacking zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libpkgconf3:riscv64 (1.8.1-2build1) ...
- Setting up libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libgmp-dev:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up pkgconf:riscv64 (1.8.1-2build1) ...
- Setting up pkg-config:riscv64 (1.8.1-2build1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.6) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4 (https://opam.ocaml.org/cache)
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> retrieved cryptokit.1.21 (https://github.com/xavierleroy/cryptokit/archive/release121.tar.gz)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved zarith.1.14 (https://opam.ocaml.org/cache)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed dune-configurator.3.20.2
-> installed cryptokit.1.21
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 14:47.14 ---> using "58436abc78f7697b1006a753bf812241cc0e4ca0442b0e929bd427c14b31bbed" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test cryptokit.1.21) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile cryptokit 1.21 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed cryptokit.1.21
-> installed cryptokit.1.21
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 14:48.06 ---> saved as "79060391ee94534147648acb07fe94ae54e8ffa3b94fd3881bbb3768243374af"
/home/opam: (run (shell "opam reinstall --with-test --verbose cryptokit.1.21;\
\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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'cryptokit.1.21' && 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 cryptokit 1.21 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [cryptokit: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cryptokit" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/cryptokit.1.21)
- (cd _build/default/src && config/flags.exe)
- ZLib: ............................... enabled
- Hardware support for AES and GCM: ... disabled
- getentropy():........................ enabled
- (cd _build/default/test && ./test.exe)
-
- Hex conversion
- 1... 2...
- AES
- 1... 2... 3... 4... 5... 6...
- Blowfish
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14... 15... 16... 17... 18... 19... 20... 21... 22... 23... 24... 25... 26... 27... 28... 29... 30... 31... 32... 33... 34...
- DES
- 1... 2... 3...
- Triple DES
- 1... 2... 3... 4... 5... 6...
- ARCfour
- 1... 2... 3... 4... 5... 6... 7... 8... 9...
- Chacha20
- 1... 2... 3... 4... 5... 6... 7... 8...
- Blowfish
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14... 15... 16... 17... 18... 19... 20... 21... 22... 23... 24... 25... 26... 27... 28... 29... 30... 31... 32... 33... 34... 35... 36... 37... 38... 39... 40... 41... 42... 43... 44... 45... 46... 47... 48... 49... 50... 51... 52... 53... 54... 55... 56... 57... 58... 59... 60... 61... 62... 63... 64... 65... 66... 67... 68...
- AES-GCM
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14...
- Chacha20-Poly1305
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14...
- SHA-1
- 1... 2... 3... 4... 5... 6...
- SHA-2 224
- 1... 2... 3... 4...
- SHA-2 256
- 1... 2... 3... 4...
- SHA-2 384
- 1... 2... 3... 4...
- SHA-2 512
- 1... 2... 3... 4... 5...
- SHA-2 512/256
- 1... 2... 3... 4... 5...
- SHA-2 512/224
- 1... 2... 3... 4... 5...
- SHA-3
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14... 15... 16... 17... 18... 19... 20...
- Keccak
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14... 15... 16... 17... 18... 19... 20...
- BLAKE2b-512
- 1... 2... 3...
- BLAKE2b-512 (keyed)
- 0... 1... 2... 3... 4... 5... 6... 7... 128... 192... 255...
- BLAKE2s-256 (keyed)
- 0... 1... 2... 3... 4... 5... 6... 7... 128... 192... 255...
- BLAKE3
- 0... 0... 1... 1... 2... 2... 3... 3... 4... 4... 5... 5... 6... 6... 7... 7... 8... 8... 63... 63... 64... 64... 65... 65... 127... 127... 128... 128... 129... 129... 1023... 1023... 1024... 1024... 1025... 1025... 2048... 2048... 2049... 2049... 3072... 3072... 3073... 3073... 4096... 4096... 4097... 4097... 5120... 5120... 5121... 5121... 6144... 6144... 6145... 6145... 7168... 7168... 7169... 7169... 8192... 8192... 8193... 8193... 16384... 16384... 31744... 31744... 102400... 102400...
- RIPEMD-160
- 1... 2... 3... 4... 5... 6... 7... 8... 9...
- MD5
- 1... 2... 3... 4...
- GFmul
- 1...
- Poly1305
- 1...
- SipHash 64
- 0... 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14... 15... 16... 17... 18... 19... 20... 21... 22... 23... 24... 25... 26... 27... 28... 29... 30... 31... 32... 33... 34... 35... 36... 37... 38... 39... 40... 41... 42... 43... 44... 45... 46... 47... 48... 49... 50... 51... 52... 53... 54... 55... 56... 57... 58... 59... 60... 61... 62... 63...
- SipHash 128
- 0... 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12... 13... 14... 15... 16... 17... 18... 19... 20... 21... 22... 23... 24... 25... 26... 27... 28... 29... 30... 31... 32... 33... 34... 35... 36... 37... 38... 39... 40... 41... 42... 43... 44... 45... 46... 47... 48... 49... 50... 51... 52... 53... 54... 55... 56... 57... 58... 59... 60... 61... 62... 63...
- ECB
- 1... 2... 3... 4... 5... 6...
- CBC
- 1... 2... 3... 4... 5... 6...
- CFB 1
- 1... 2... 3... 4... 5...
- CFB 4
- 1... 2... 3...
- OFB 1
- 1... 2... 3... 4... 5...
- OFB 8
- 1... 2... 3...
- CTR
- 1... 2... 3... 4...
- CTR_N
- 1... 2... 3...
- HMAC-SHA256
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10...
- HMAC-SHA384
- 1... 2... 3...
- HMAC-SHA512
- 1... 2... 3...
- HMAC-MD5
- 1... 2... 3...
- AES-CMAC
- 1... 2... 3... 4...
- RSA
- 1... 2... 3... 4... 5... 6... 7... 8... 9... 10... 11... 12...
- Paillier
- 1... 2... 3...
- Diffie-Hellman
- 1...
- Elliptic curves
- 1... 2... 3... 4... 5... 6... 7... 10... 11... 12... 13... 14... 15... 16... 17...
- ECDSA
- 10... 11... 12... 13... 14... 15... 20... 21... 22... 30... 31... 32...
- ECDH
- 1...
- KDF
- 1... 2... 3...
- PBKDF2
- 1... 2... 3... 4... 5...
- Base64
- 1... 2... 3... 4... 5... 6... 7...
- Zlib compression
- 1... 2... 3...
- Comparison functions
- 1... 2...
- Random number generation
- 1. PRNG: chi^2 plausible
- 2. PRNG based on AES CTR: chi^2 plausible
- 3. /dev/urandom: chi^2 plausible
- 4. Hardware RNG: not available
- 5. System RNG: chi^2 plausible
-
- All tests successful.
-> compiled cryptokit.1.21
-> removed cryptokit.1.21
-> installed cryptokit.1.21
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 14:48.56 ---> saved as "9a4ad9b6d7f19942545fee0906a3bf5f80f0ce3fe8d31455ba71d451d96c47fc"
Job succeeded
2025-12-30 14:49.32: Job succeeded