- github
- ocaml
- opam-repository
- ea3d41
- distributions,debian-12-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 debian-12-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/29148/head" && git reset --hard ea3d41c3
git fetch origin master
git merge --no-edit 478fb6873e38d7da44dc1ea3074382ce5c3deab7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.4@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99
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 "\"debian-12\""; 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 "\"debian-12\""; 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:debian-12-ocaml-5.4@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99-cryptokit.1.21-ea3d41c3a9de6ce5078688dfe4c1d2f7261d7cc0"
2025-12-30 14:37.55: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.4@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99)
(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 \"\\\"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\" != '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 \"\\\"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\" != '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.55: Waiting for worker…
2025-12-30 14:37.56: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
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:debian-12-ocaml-5.4@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.4@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99' locally
docker.io/ocaml/opam@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99: Pulling from ocaml/opam
c8443a297fa4: Pulling fs layer
3117594fcbaa: Pulling fs layer
85ca0e82a234: Pulling fs layer
1c1f02d52226: Pulling fs layer
c8443a297fa4: Waiting
85ca0e82a234: Waiting
3117594fcbaa: Waiting
fe9d3c2e10e2: Pulling fs layer
2217026faa73: Pulling fs layer
fe9d3c2e10e2: Waiting
1fef585d5a09: Pulling fs layer
2217026faa73: Waiting
0d0070c18c6d: Pulling fs layer
1fef585d5a09: Waiting
c51172af0160: Pulling fs layer
0d0070c18c6d: Waiting
df8875cc93ac: Pulling fs layer
c51172af0160: Waiting
67847aef0407: Pulling fs layer
df8875cc93ac: Waiting
36beb7078293: Pulling fs layer
191136a5f5c0: Pulling fs layer
36beb7078293: Waiting
67847aef0407: Waiting
714757d72e7f: Pulling fs layer
191136a5f5c0: Waiting
68234c5c011d: Pulling fs layer
714757d72e7f: Waiting
8df6961c36fa: Pulling fs layer
68234c5c011d: Waiting
afa495f7821e: Pulling fs layer
8df6961c36fa: Waiting
5f9643dc0d5e: Pulling fs layer
afa495f7821e: Waiting
c5cd204c27b0: Pulling fs layer
5f9643dc0d5e: Waiting
7a188148750f: Pulling fs layer
c5cd204c27b0: Waiting
0c4a275107e2: Pulling fs layer
7a188148750f: Waiting
3ce9f77add31: Pulling fs layer
0c4a275107e2: Waiting
4f4fb700ef54: Pulling fs layer
3ce9f77add31: Waiting
9b27f4cec1f5: Pulling fs layer
f13f8b8a6ebe: Pulling fs layer
9b27f4cec1f5: Waiting
4f4fb700ef54: Waiting
7347d8d6169e: Pulling fs layer
d0faf52955c3: Pulling fs layer
f13f8b8a6ebe: Waiting
7347d8d6169e: Waiting
02b89d433f3e: Pulling fs layer
1f88f6e46b0c: Pulling fs layer
d0faf52955c3: Waiting
02b89d433f3e: Waiting
345b324af9bd: Pulling fs layer
1f88f6e46b0c: Waiting
a95711b9c003: Pulling fs layer
345b324af9bd: Waiting
f874b80e803a: Pulling fs layer
a95711b9c003: Waiting
82c952ade8b1: Pulling fs layer
f874b80e803a: Waiting
8c8b9ca5e561: Pulling fs layer
82c952ade8b1: Waiting
b34ef319e463: Pulling fs layer
8c8b9ca5e561: Waiting
888dc0bf1f1f: Pulling fs layer
083ae27b8914: Pulling fs layer
b34ef319e463: Waiting
888dc0bf1f1f: Waiting
529d05c22b93: Pulling fs layer
0b92011566a7: Pulling fs layer
529d05c22b93: Waiting
083ae27b8914: Waiting
3e1d10060b32: Pulling fs layer
0b92011566a7: Waiting
ee8d3043c790: Pulling fs layer
3e1d10060b32: Waiting
adf5284757c4: Pulling fs layer
ee8d3043c790: Waiting
6b1b580b67b0: Pulling fs layer
adf5284757c4: Waiting
2b80a4482c14: Pulling fs layer
6b1b580b67b0: Waiting
2b80a4482c14: Waiting
ee0843a0df87: Pulling fs layer
7477c5172be9: Pulling fs layer
ee0843a0df87: Waiting
b8e1f107e63d: Pulling fs layer
7477c5172be9: Waiting
3ea2c8b32c1a: Pulling fs layer
3ea2c8b32c1a: Waiting
c8443a297fa4: Verifying Checksum
c8443a297fa4: Download complete
3117594fcbaa: Verifying Checksum
3117594fcbaa: Download complete
85ca0e82a234: Verifying Checksum
85ca0e82a234: Download complete
1c1f02d52226: Download complete
fe9d3c2e10e2: Download complete
c8443a297fa4: Pull complete
3117594fcbaa: Pull complete
85ca0e82a234: Pull complete
1c1f02d52226: Pull complete
fe9d3c2e10e2: Pull complete
2217026faa73: Verifying Checksum
2217026faa73: Download complete
1fef585d5a09: Verifying Checksum
1fef585d5a09: Download complete
0d0070c18c6d: Verifying Checksum
0d0070c18c6d: Download complete
c51172af0160: Verifying Checksum
c51172af0160: Download complete
df8875cc93ac: Verifying Checksum
df8875cc93ac: Download complete
67847aef0407: Verifying Checksum
67847aef0407: Download complete
36beb7078293: Verifying Checksum
36beb7078293: Download complete
191136a5f5c0: Download complete
714757d72e7f: Verifying Checksum
714757d72e7f: Download complete
68234c5c011d: Verifying Checksum
68234c5c011d: Download complete
8df6961c36fa: Verifying Checksum
8df6961c36fa: Download complete
afa495f7821e: Verifying Checksum
afa495f7821e: Download complete
5f9643dc0d5e: Verifying Checksum
5f9643dc0d5e: Download complete
c5cd204c27b0: Verifying Checksum
c5cd204c27b0: Download complete
7a188148750f: Verifying Checksum
7a188148750f: Download complete
2217026faa73: Pull complete
0c4a275107e2: Download complete
1fef585d5a09: Pull complete
0d0070c18c6d: Pull complete
3ce9f77add31: Download complete
c51172af0160: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
9b27f4cec1f5: Download complete
df8875cc93ac: Pull complete
f13f8b8a6ebe: Download complete
67847aef0407: Pull complete
7347d8d6169e: Download complete
36beb7078293: Pull complete
d0faf52955c3: Verifying Checksum
d0faf52955c3: Download complete
02b89d433f3e: Download complete
191136a5f5c0: Pull complete
1f88f6e46b0c: Download complete
714757d72e7f: Pull complete
68234c5c011d: Pull complete
8df6961c36fa: Pull complete
afa495f7821e: Pull complete
5f9643dc0d5e: Pull complete
c5cd204c27b0: Pull complete
7a188148750f: Pull complete
0c4a275107e2: Pull complete
3ce9f77add31: Pull complete
4f4fb700ef54: Pull complete
9b27f4cec1f5: Pull complete
f13f8b8a6ebe: Pull complete
7347d8d6169e: Pull complete
d0faf52955c3: Pull complete
02b89d433f3e: Pull complete
1f88f6e46b0c: Pull complete
345b324af9bd: Download complete
345b324af9bd: Pull complete
a95711b9c003: Download complete
a95711b9c003: Pull complete
f874b80e803a: Download complete
f874b80e803a: Pull complete
82c952ade8b1: Download complete
82c952ade8b1: Pull complete
8c8b9ca5e561: Verifying Checksum
8c8b9ca5e561: Download complete
8c8b9ca5e561: Pull complete
b34ef319e463: Download complete
b34ef319e463: Pull complete
888dc0bf1f1f: Verifying Checksum
888dc0bf1f1f: Download complete
083ae27b8914: Verifying Checksum
083ae27b8914: Download complete
529d05c22b93: Verifying Checksum
529d05c22b93: Download complete
0b92011566a7: Download complete
3e1d10060b32: Download complete
ee8d3043c790: Download complete
adf5284757c4: Verifying Checksum
adf5284757c4: Download complete
6b1b580b67b0: Download complete
2b80a4482c14: Verifying Checksum
2b80a4482c14: Download complete
ee0843a0df87: Verifying Checksum
ee0843a0df87: Download complete
7477c5172be9: Verifying Checksum
7477c5172be9: Download complete
b8e1f107e63d: Verifying Checksum
b8e1f107e63d: Download complete
3ea2c8b32c1a: Verifying Checksum
3ea2c8b32c1a: Download complete
888dc0bf1f1f: Pull complete
083ae27b8914: Pull complete
529d05c22b93: Pull complete
0b92011566a7: Pull complete
3e1d10060b32: Pull complete
ee8d3043c790: Pull complete
adf5284757c4: Pull complete
6b1b580b67b0: Pull complete
2b80a4482c14: Pull complete
ee0843a0df87: Pull complete
7477c5172be9: Pull complete
b8e1f107e63d: Pull complete
3ea2c8b32c1a: Pull complete
Digest: sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99
Status: Downloaded newer image for ocaml/opam@sha256:564ede020b69de7d9ec386064d40326060f577a7153ff6097f0d97a5cc6ccf99
2025-12-30 15:02.17 ---> saved as "bde762841c712caee49d4765f93629a002d29a425cadab2eeb94b0dc94d3bd41"
/: (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 15:02.17 ---> saved as "c25dc8b2f1db81905891c6323db59388a0703d881fc592e36b536cc15e10bc35"
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 15:02.42 ---> saved as "2ddc99bcc347bd8f651abdca08cf53d9303f94fbe015114c4d86b9bb1006bd95"
/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=12
# 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
2025-12-30 15:02.43 ---> saved as "89237d054010a987de65ce73d42979e7a684b9efc7f252270ddf237553ffd783"
/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 15:02.51 ---> saved as "f30187ea5d03bf57bb7299100f648b7024d08972baf5942b997a9307bfe36310"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 15:03.01 ---> saved as "8db72f1f99d922142c9c7f57864f1c359659b94de5eee3e8d247d803fe86da1d"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 15:03.21 ---> saved as "42eb039e215b6c1f214e977f04c472608dfc8ba95dfaa4a8ed009c3a90a21e01"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- 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]
- Fetched 103 kB in 0s (253 kB/s)
- Reading package lists...
-
2025-12-30 15:03.22 ---> saved as "2c8d3c1f4d94f4983c2fd2a4869a60cba56fd137bc4f7ab76aef9bc225e0ec5e"
/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 15:03.23 ---> saved as "9e58293bd1572e215f6e3c6c0cd734cfeb5dd176e0a76bee67b24649f32a689c"
/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 \"\\\"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\" != '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: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 ... 18784 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-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+deb12u13) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cryptokit.1.21 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved zarith.1.14 (cached)
-> 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 15:04.04 ---> saved as "19325ad14cd24183729b51125d6782605b6f060c756ea677c8aa1a284d613b4c"
/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 15:04.11 ---> saved as "be1ba8b30634eb3e44448c1abed856d96e090e1878465e22b3648be1d8f952dd"
/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 \"\\\"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\" != '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" "71" "@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: ... enabled
- 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: chi^2 plausible
- 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 15:04.18 ---> saved as "c5fd544b063990dd59623858e8999002e1fb12fe153d9a436b8e752a4b261871"
Job succeeded
2025-12-30 15:04.31: Job succeeded