(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 opensuse-tumbleweed-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/29148/head" && git reset --hard ea3d41c3
git fetch origin master
git merge --no-edit 478fb6873e38d7da44dc1ea3074382ce5c3deab7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385
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 "\"opensuse-tumbleweed\""; 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 "\"opensuse-tumbleweed\""; 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:opensuse-tumbleweed-ocaml-4.14@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385-cryptokit.1.21-ea3d41c3a9de6ce5078688dfe4c1d2f7261d7cc0"
2025-12-30 14:37.55: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385)
 (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 \"\\\"opensuse-tumbleweed\\\"\"; 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 \"\\\"opensuse-tumbleweed\\\"\"; 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.57: 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:opensuse-tumbleweed-ocaml-4.14@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385' locally
docker.io/ocaml/opam@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385: Pulling from ocaml/opam
55368789d10b: Pulling fs layer
08299bedff84: Pulling fs layer
f21cda79f875: Pulling fs layer
c60301752eae: Pulling fs layer
7da06c16d505: Pulling fs layer
3ba0f60e890a: Pulling fs layer
9411470670a1: Pulling fs layer
ba8fc0f5ca8e: Pulling fs layer
a13f16bac024: Pulling fs layer
f21cda79f875: Waiting
c60301752eae: Waiting
c42ce914c18f: Pulling fs layer
7da06c16d505: Waiting
3ba0f60e890a: Waiting
a471e4d13dc5: Pulling fs layer
9411470670a1: Waiting
55368789d10b: Waiting
08299bedff84: Waiting
8e1bd102b2e8: Pulling fs layer
ba8fc0f5ca8e: Waiting
a13f16bac024: Waiting
c42ce914c18f: Waiting
27dbb4bfb38e: Pulling fs layer
a471e4d13dc5: Waiting
8e1bd102b2e8: Waiting
5d36e1af9f18: Pulling fs layer
27dbb4bfb38e: Waiting
64defe1aaa1f: Pulling fs layer
f347f3984aed: Pulling fs layer
64defe1aaa1f: Waiting
5d36e1af9f18: Waiting
36d8f0ef9646: Pulling fs layer
f347f3984aed: Waiting
15309872037b: Pulling fs layer
82c7ec6bed6d: Pulling fs layer
36d8f0ef9646: Waiting
15309872037b: Waiting
4f4fb700ef54: Pulling fs layer
75584ad68979: Pulling fs layer
82c7ec6bed6d: Waiting
e825b66b267f: Pulling fs layer
4f4fb700ef54: Waiting
75584ad68979: Waiting
c7a825008a25: Pulling fs layer
3fc7704c7727: Pulling fs layer
86be4188c626: Pulling fs layer
c7a825008a25: Waiting
281e9f79cdc6: Pulling fs layer
3fc7704c7727: Waiting
818786846e70: Pulling fs layer
281e9f79cdc6: Waiting
86be4188c626: Waiting
b8a8f5025b91: Pulling fs layer
de8490232439: Pulling fs layer
818786846e70: Waiting
b8a8f5025b91: Waiting
40e74cf1776d: Pulling fs layer
de8490232439: Waiting
12596449d107: Pulling fs layer
40e74cf1776d: Waiting
9005be6d5a65: Pulling fs layer
12596449d107: Waiting
1ba81e7f841a: Pulling fs layer
9005be6d5a65: Waiting
449ea5cafa26: Pulling fs layer
1ba81e7f841a: Waiting
d0c47428e05c: Pulling fs layer
449ea5cafa26: Waiting
2e66b4c5d777: Pulling fs layer
d0c47428e05c: Waiting
7ce07bb3df83: Pulling fs layer
2e66b4c5d777: Waiting
e21bca19c49b: Pulling fs layer
7ce07bb3df83: Waiting
06f64d008b82: Pulling fs layer
117390c2583b: Pulling fs layer
06f64d008b82: Waiting
e21bca19c49b: Waiting
719977e95fd8: Pulling fs layer
117390c2583b: Waiting
719977e95fd8: Waiting
6cbcd1b93a82: Pulling fs layer
6cbcd1b93a82: Waiting
55368789d10b: Verifying Checksum
55368789d10b: Download complete
08299bedff84: Download complete
55368789d10b: Pull complete
08299bedff84: Pull complete
f21cda79f875: Verifying Checksum
f21cda79f875: Download complete
f21cda79f875: Pull complete
7da06c16d505: Download complete
3ba0f60e890a: Verifying Checksum
3ba0f60e890a: Download complete
9411470670a1: Verifying Checksum
9411470670a1: Download complete
ba8fc0f5ca8e: Verifying Checksum
ba8fc0f5ca8e: Download complete
a13f16bac024: Verifying Checksum
a13f16bac024: Download complete
c42ce914c18f: Verifying Checksum
c42ce914c18f: Download complete
c60301752eae: Verifying Checksum
c60301752eae: Download complete
8e1bd102b2e8: Verifying Checksum
8e1bd102b2e8: Download complete
a471e4d13dc5: Verifying Checksum
a471e4d13dc5: Download complete
27dbb4bfb38e: Verifying Checksum
27dbb4bfb38e: Download complete
5d36e1af9f18: Verifying Checksum
5d36e1af9f18: Download complete
f347f3984aed: Download complete
64defe1aaa1f: Verifying Checksum
64defe1aaa1f: Download complete
36d8f0ef9646: Download complete
82c7ec6bed6d: Verifying Checksum
82c7ec6bed6d: Download complete
15309872037b: Verifying Checksum
15309872037b: Download complete
75584ad68979: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
e825b66b267f: Verifying Checksum
e825b66b267f: Download complete
c7a825008a25: Verifying Checksum
3fc7704c7727: Verifying Checksum
c7a825008a25: Download complete
3fc7704c7727: Download complete
86be4188c626: Verifying Checksum
86be4188c626: Download complete
281e9f79cdc6: Verifying Checksum
281e9f79cdc6: Download complete
818786846e70: Download complete
b8a8f5025b91: Download complete
de8490232439: Download complete
40e74cf1776d: Verifying Checksum
40e74cf1776d: Download complete
12596449d107: Verifying Checksum
12596449d107: Download complete
9005be6d5a65: Download complete
449ea5cafa26: Verifying Checksum
449ea5cafa26: Download complete
c60301752eae: Pull complete
7da06c16d505: Pull complete
3ba0f60e890a: Pull complete
9411470670a1: Pull complete
ba8fc0f5ca8e: Pull complete
a13f16bac024: Pull complete
c42ce914c18f: Pull complete
a471e4d13dc5: Pull complete
d0c47428e05c: Verifying Checksum
d0c47428e05c: Download complete
8e1bd102b2e8: Pull complete
2e66b4c5d777: Download complete
27dbb4bfb38e: Pull complete
7ce07bb3df83: Verifying Checksum
7ce07bb3df83: Download complete
5d36e1af9f18: Pull complete
64defe1aaa1f: Pull complete
f347f3984aed: Pull complete
36d8f0ef9646: Pull complete
15309872037b: Pull complete
82c7ec6bed6d: Pull complete
4f4fb700ef54: Pull complete
e21bca19c49b: Verifying Checksum
e21bca19c49b: Download complete
75584ad68979: Pull complete
e825b66b267f: Pull complete
c7a825008a25: Pull complete
3fc7704c7727: Pull complete
86be4188c626: Pull complete
281e9f79cdc6: Pull complete
818786846e70: Pull complete
b8a8f5025b91: Pull complete
de8490232439: Pull complete
40e74cf1776d: Pull complete
12596449d107: Pull complete
9005be6d5a65: Pull complete
1ba81e7f841a: Verifying Checksum
1ba81e7f841a: Download complete
117390c2583b: Download complete
719977e95fd8: Download complete
6cbcd1b93a82: Verifying Checksum
6cbcd1b93a82: Download complete
06f64d008b82: Verifying Checksum
06f64d008b82: Download complete
1ba81e7f841a: Pull complete
449ea5cafa26: Pull complete
d0c47428e05c: Pull complete
2e66b4c5d777: Pull complete
7ce07bb3df83: Pull complete
e21bca19c49b: Pull complete
06f64d008b82: Pull complete
117390c2583b: Pull complete
719977e95fd8: Pull complete
6cbcd1b93a82: Pull complete
Digest: sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385
Status: Downloaded newer image for ocaml/opam@sha256:f4673e1392a899fc944ecbda4ed841c7ff72f9a0743a9eb4eef080abf1b7c385
2025-12-30 15:04.02 ---> saved as "a4ec35cc27d166d4118a6799d65e2839d427f2afdf36dd31b3238de85f8fc17b"

/: (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:04.02 ---> saved as "d2975906815bf092f721ec39bf026f8d36493332c57b04ba523503377a162e52"

/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:04.28 ---> saved as "042a08e9d657b7207f3b404996084a6535ae9a5a677dd9dbf3625952676093a1"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=opensuse-tumbleweed os-version=20251225
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-12-30 15:04.29 ---> saved as "53574f056d0018383a349d53c318ecb47fbdd161b62a0f01966cefd363c73b7d"

/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:04.35 ---> saved as "bab100ac672b9212cd6085ea480d718d41ac628728a888ca983c9e5bcc140036"

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 15:04.47 ---> saved as "7d855cd13e6fb318b0674d22dff04c4b40f9a50d8009de7155d04520aa57b8c1"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 15:05.05 ---> saved as "52e5a7148e2207ca671149e470d15d62c284c4034b24e6c5be9692f43e60dcd3"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
- .
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- ....
- ....
- ....done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- .
- ......
- ......
- .......
- .....
- .......
- ......
- ...
- ......
- .......
- .......
- ...
- .
- ....
- .....
- .......
- ......
- ......
- ....
- .....
- ...
- ...
- ....
- ......
- .....
- ........
- .
- .
- .....
- ......
- ....
- .....
- .....
- ....
- ....
- ......
- ....
- .....
- ....
- .....
- .....
- .......
- ........
- .....
- ....
- ......
- .......
- ...
- ......
- ...
- ....
- .......
- .......
- ...
- .....
- ........
- ......
- .....
- .......
- ...
- .....
- ....
- .......
- ......
- ........
- ......
- .......
- ....
- .....
- ......
- .......
- ......
- ......
- ......
- .........
- ..........
- .........
- .......
- ........
- ........
- ........
- ........
- .........
- ........
- ........
- .........
- .........
- ........
- ........
- .........
- .........
- .......
- ........
- .........
- .........
- .......
- ........
- .......
- ........
- ........
- .........
- ........
- .........
- ........
- .........
- .........
- ........
- .........
- ........
- .........
- ......
- ........
- .........
- .......
- ........
- ........
- ........
- ........
- .........
- ........
- .......
- .........
- ....
- ........
- ........
- ........
- .........
- ........
- ........
- .........
- .........
- .........
- .........
- ......
- ........
- .........
- .........
- ........
- .........
- .........
- .........
- .........
- .........
- .........
- ........
- ........
- .........
- .....done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2025-12-30 15:07.47 ---> saved as "e553636adba1a14f16d0ed9573823640868b61bc92f610d148a79792cb2b88a1"

/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:07.48 ---> saved as "85da8d20c056b573f0f0b15e45b8e98f31a7527e70ac1ebaa075289822361e7f"

/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 \"\\\"opensuse-tumbleweed\\\"\"; 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:
    gmp-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "zypper" "--non-interactive" "install" "gmp-devel"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 2 NEW packages are going to be installed:
-   gmp-devel libgmpxx4
- 
- 2 new packages to install.
- 
- Package download size:   323.6 KiB
- 
- Package install size change:
-               |       1.1 MiB  required by packages that will be installed
-      1.1 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: libgmpxx4-6.3.0-5.1.x86_64.rpm [done]
- ..
- .
- Preloading: gmp-devel-6.3.0-5.1.x86_64.rpm [done]
- .done]
- Retrieving: libgmpxx4-6.3.0-5.1.x86_64 (openSUSE-Tumbleweed-Oss) (1/2),  17.7 KiB    
- Retrieving: gmp-devel-6.3.0-5.1.x86_64 (openSUSE-Tumbleweed-Oss) (2/2), 305.9 KiB    
- 
- Checking for file conflicts: [..done]
- (1/2) Installing: libgmpxx4-6.3.0-5.1.x86_64 [..done]
- (2/2) Installing: gmp-devel-6.3.0-5.1.x86_64 [..done]
- Running post-transaction scripts [..
- .done]

<><> 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:08.26 ---> saved as "6cd6c68b6d130ac39d6397deb787e08bd3139e36efc846e28a6637c86859b270"

/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:08.32 ---> saved as "796f543c54d0079811a61220721723f60e7de4f73689ef138da8eac34c809c76"

/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 \"\\\"opensuse-tumbleweed\\\"\"; 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/4.14/.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:08.39 ---> saved as "f684158d54dabc2ef05d4bc882622ff22bc8150572d7a2448a5bd0bddfc38482"
Job succeeded
2025-12-30 15:08.44: Job succeeded