2025-03-04 12:10.11: New job: test mirage/mirage-crypto https://github.com/mirage/mirage-crypto.git#refs/pull/259/head (d097a9300fb4c849c1d545e21367f5c2a626243c) (linux-x86_64:ubuntu-24.04-5.3_opam-2.3) Base: ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:44e15be74257aebfcb44dfe7b5feef71b890aeecc9d126f40cb5debab16df804 Opam project build To reproduce locally: git clone --recursive "https://github.com/mirage/mirage-crypto.git" && cd "mirage-crypto" && git fetch origin "refs/pull/259/head" && git reset --hard d097a930 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:44e15be74257aebfcb44dfe7b5feef71b890aeecc9d126f40cb5debab16df804 # ubuntu-24.04-5.3_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e 5c627de42309bb6474331d403efeb6d68d617b1e || git fetch origin master) && git reset -q --hard 5c627de42309bb6474331d403efeb6d68d617b1e && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 mirage-crypto.opam mirage-crypto-rng.opam mirage-crypto-rng-mirage.opam mirage-crypto-rng-miou-unix.opam mirage-crypto-pk.opam mirage-crypto-ec.opam ./ RUN opam pin add -yn mirage-crypto.dev './' && \ opam pin add -yn mirage-crypto-rng.dev './' && \ opam pin add -yn mirage-crypto-rng-mirage.dev './' && \ opam pin add -yn mirage-crypto-rng-miou-unix.dev './' && \ opam pin add -yn mirage-crypto-pk.dev './' && \ opam pin add -yn mirage-crypto-ec.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="alcotest.1.8.0 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-name.0.4.1 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 eqaf.0.10 fmt.0.9.0 ipaddr.5.6.0 logs.0.7.0 lwt.5.9.0 macaddr.5.6.0 miou.0.3.1 mirage-mtime.5.0.0 mirage-runtime.4.8.2 mirage-sleep.4.0.0 mirage-unix.5.0.1 mtime.2.1.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 ounit2.2.2.7 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_deriving_yojson.3.9.1 ppxlib.0.35.0 ptime.1.2.0 randomconv.0.2.0 re.1.12.0 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3 yojson.2.2.2 zarith.1.14" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y mirage-crypto.dev mirage-crypto-rng.dev mirage-crypto-rng-mirage.dev mirage-crypto-rng-miou-unix.dev mirage-crypto-pk.dev mirage-crypto-ec.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-03-04 12:10.11: Using cache hint "mirage/mirage-crypto-ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:44e15be74257aebfcb44dfe7b5feef71b890aeecc9d126f40cb5debab16df804-ubuntu-24.04-5.3_opam-2.3-cbf02f8e83b1985128921049c73b03ef" 2025-03-04 12:10.11: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:44e15be74257aebfcb44dfe7b5feef71b890aeecc9d126f40cb5debab16df804) (comment ubuntu-24.04-5.3_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 5c627de42309bb6474331d403efeb6d68d617b1e || git fetch origin master) && git reset -q --hard 5c627de42309bb6474331d403efeb6d68d617b1e && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src mirage-crypto.opam mirage-crypto-rng.opam mirage-crypto-rng-mirage.opam mirage-crypto-rng-miou-unix.opam mirage-crypto-pk.opam mirage-crypto-ec.opam) (dst ./)) (run (network host) (shell "opam pin add -yn mirage-crypto.dev './' && \ \nopam pin add -yn mirage-crypto-rng.dev './' && \ \nopam pin add -yn mirage-crypto-rng-mirage.dev './' && \ \nopam pin add -yn mirage-crypto-rng-miou-unix.dev './' && \ \nopam pin add -yn mirage-crypto-pk.dev './' && \ \nopam pin add -yn mirage-crypto-ec.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "alcotest.1.8.0 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-name.0.4.1 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 eqaf.0.10 fmt.0.9.0 ipaddr.5.6.0 logs.0.7.0 lwt.5.9.0 macaddr.5.6.0 miou.0.3.1 mirage-mtime.5.0.0 mirage-runtime.4.8.2 mirage-sleep.4.0.0 mirage-unix.5.0.1 mtime.2.1.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 ounit2.2.2.7 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_deriving_yojson.3.9.1 ppxlib.0.35.0 ptime.1.2.0 randomconv.0.2.0 re.1.12.0 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3 yojson.2.2.2 zarith.1.14") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y mirage-crypto.dev mirage-crypto-rng.dev mirage-crypto-rng-mirage.dev mirage-crypto-rng-miou-unix.dev mirage-crypto-pk.dev mirage-crypto-ec.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) ) 2025-03-04 12:10.11: Waiting for resource in pool OCluster 2025-03-04 12:10.12: Waiting for worker… 2025-03-04 12:10.12: Got resource from pool OCluster Building on laodoke.caelum.ci.dev HEAD is now at cadf0e1 changes for 2.0.0 HEAD is now at d097a93 mirage-crypto-ec: implementation of SECP256K1 (from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:44e15be74257aebfcb44dfe7b5feef71b890aeecc9d126f40cb5debab16df804) 2025-03-04 12:10.13 ---> using "45c68f09a6aedde794f62eebf894c4dcd1c8986164e3a2207908576873ab39c7" from cache /: (comment ubuntu-24.04-5.3_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-03-04 12:10.13 ---> using "9b3b08fa393a38047160ee5ad169f27608e5b62864145475444c983f1b3f1197" from cache /src: (run (shell "opam init --reinit -ni")) Configuring from /home/opam/.opamrc and then 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted. You may want to back it up before going further. 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not update repository "opam-repository-archive": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/opam-repository-archive/': Could not resolve host: github.com" [default] synchronised from file:///home/opam/opam-repository 2025-03-04 12:10.13 ---> using "8d4d20eed54b74e0ff07873262a203344b87b65e8956d1c8788a9b95b24c4ee4" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-131-generic The OCaml toplevel, version 5.3.0 2.3.0 2025-03-04 12:10.13 ---> using "c4ae39a4991a369fd792f19195ee9e6e3693d82635994016ed52bcb99a7a6d1e" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-03-04 12:10.13 ---> using "ab2298e51e2d3d2a5f87634d062f7f3567ca1beb48d5c3de8b69df9a3c685cdf" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 5c627de42309bb6474331d403efeb6d68d617b1e || git fetch origin master) && git reset -q --hard 5c627de42309bb6474331d403efeb6d68d617b1e && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD b2ce667dc5..a263eb47bd master -> origin/master 5c627de423 Merge pull request #27523 from hannesm/re-add-base-ocamlbuild <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive [default] synchronised from file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-03-04 12:11.09 ---> saved as "fd0c8723f751cf93433022fd626e197d07092ec2dbd8a1f44f574e03b533c82a" /src: (copy (src mirage-crypto.opam mirage-crypto-rng.opam mirage-crypto-rng-mirage.opam mirage-crypto-rng-miou-unix.opam mirage-crypto-pk.opam mirage-crypto-ec.opam) (dst ./)) 2025-03-04 12:11.09 ---> saved as "8d9b9fe8f7f21172c9409ce2475daeee4f2afde3ef5425b9e2fd4f0e2b76f893" /src: (run (network host) (shell "opam pin add -yn mirage-crypto.dev './' && \ \nopam pin add -yn mirage-crypto-rng.dev './' && \ \nopam pin add -yn mirage-crypto-rng-mirage.dev './' && \ \nopam pin add -yn mirage-crypto-rng-miou-unix.dev './' && \ \nopam pin add -yn mirage-crypto-pk.dev './' && \ \nopam pin add -yn mirage-crypto-ec.dev './'")) [mirage-crypto.dev] synchronised (file:///src) mirage-crypto is now pinned to file:///src (version dev) [mirage-crypto-rng.dev] synchronised (file:///src) mirage-crypto-rng is now pinned to file:///src (version dev) [mirage-crypto-rng-mirage.dev] synchronised (file:///src) mirage-crypto-rng-mirage is now pinned to file:///src (version dev) [mirage-crypto-rng-miou-unix.dev] synchronised (file:///src) mirage-crypto-rng-miou-unix is now pinned to file:///src (version dev) [mirage-crypto-pk.dev] synchronised (file:///src) mirage-crypto-pk is now pinned to file:///src (version dev) [mirage-crypto-ec.dev] synchronised (file:///src) mirage-crypto-ec is now pinned to file:///src (version dev) 2025-03-04 12:11.23 ---> saved as "a3acdc3c4b6a05142277f5a8e0fa415758ee381cb2997a92f5d88b8c650b8d5c" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-03-04 12:11.23 ---> saved as "ddc9ea5cc86e901163edba8fdcecae30aaa206111c5bf89a8c3d12209b0f9658" /src: (env DEPS "alcotest.1.8.0 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-name.0.4.1 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 eqaf.0.10 fmt.0.9.0 ipaddr.5.6.0 logs.0.7.0 lwt.5.9.0 macaddr.5.6.0 miou.0.3.1 mirage-mtime.5.0.0 mirage-runtime.4.8.2 mirage-sleep.4.0.0 mirage-unix.5.0.1 mtime.2.1.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 ounit2.2.2.7 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_deriving_yojson.3.9.1 ppxlib.0.35.0 ptime.1.2.0 randomconv.0.2.0 re.1.12.0 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3 yojson.2.2.2 zarith.1.14") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y mirage-crypto.dev mirage-crypto-rng.dev mirage-crypto-rng-mirage.dev mirage-crypto-rng-miou-unix.dev mirage-crypto-pk.dev mirage-crypto-ec.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB] - Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease - Get:3 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1058 kB] - Get:4 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [24.2 kB] - Get:5 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [814 kB] - Get:6 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] - Get:7 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [842 kB] - Get:8 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] - Get:9 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [881 kB] - Get:10 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [28.8 kB] - Get:11 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1341 kB] - Get:12 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1138 kB] - Get:13 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [16.0 kB] - Fetched 6523 kB in 1s (5690 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [mirage-crypto.dev] synchronised (file:///src) [mirage-crypto-ec.dev] synchronised (file:///src) [mirage-crypto-pk.dev] synchronised (file:///src) [mirage-crypto-rng.dev] synchronised (file:///src) [mirage-crypto-rng-miou-unix.dev] synchronised (file:///src) [mirage-crypto-rng-mirage.dev] synchronised (file:///src) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following system packages will first need to be installed: libgmp-dev pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config" - 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 ... 16365 files and directories currently installed.) - Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ... - Selecting previously unselected package libpkgconf3:amd64. - Preparing to unpack .../2-libpkgconf3_1.8.1-2build1_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-2build1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../3-pkgconf-bin_1.8.1-2build1_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-2build1) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../4-pkgconf_1.8.1-2build1_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-2build1) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../5-pkg-config_1.8.1-2build1_amd64.deb ... - Unpacking pkg-config:amd64 (1.8.1-2build1) ... - Setting up libpkgconf3:amd64 (1.8.1-2build1) ... - Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ... - Setting up pkgconf-bin (1.8.1-2build1) ... - Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ... - Setting up pkgconf:amd64 (1.8.1-2build1) ... - Setting up pkg-config:amd64 (1.8.1-2build1) ... - Processing triggers for libc-bin (2.39-0ubuntu8.4) ... 2025-03-04 12:11.46 ---> saved as "73a4992bd39cc9802d151a66f39c4b73e7ff072c7b0e3e8b55d81ef1c1e4f700" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following actions will be performed: === install 48 packages - install alcotest 1.8.0 - install asn1-combinators 0.3.2 - install astring 0.8.5 - install base-bytes base - install cmdliner 1.3.0 - install conf-gmp 4 - install conf-gmp-powm-sec 3 - install conf-pkg-config 4 - install cppo 1.8.0 - install csexp 1.5.2 - install digestif 1.2.0 - install domain-name 0.4.1 - install dune 3.17.2 - install dune-configurator 3.17.2 - install duration 0.2.1 - install eqaf 0.10 - install fmt 0.9.0 - install ipaddr 5.6.0 - install logs 0.7.0 - install lwt 5.9.0 - install macaddr 5.6.0 - install miou 0.3.1 - install mirage-mtime 5.0.0 - install mirage-runtime 4.8.2 - install mirage-sleep 4.0.0 - install mirage-unix 5.0.1 - install mtime 2.1.0 - install ocaml-compiler-libs v0.17.0 - install ocaml-syntax-shims 1.0.0 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ocplib-endian 1.2 - install ohex 0.2.0 - install ounit2 2.2.7 - install ppx_derivers 1.2.1 - install ppx_deriving 6.0.3 - install ppx_deriving_yojson 3.9.1 - install ppxlib 0.35.0 - install ptime 1.2.0 - install randomconv 0.2.0 - install re 1.12.0 - install seq base - install sexplib0 v0.17.0 - install stdlib-shims 0.3.0 - install topkg 1.0.7 - install uutf 1.0.3 - install yojson 2.2.2 - install zarith 1.14 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved asn1-combinators.0.3.2 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved conf-gmp.4 (cached) -> retrieved conf-gmp-powm-sec.3 (cached) -> installed conf-pkg-config.4 -> retrieved cmdliner.1.3.0 (cached) -> retrieved alcotest.1.8.0 (cached) -> retrieved cppo.1.8.0 (cached) -> installed conf-gmp.4 -> retrieved csexp.1.5.2 (cached) -> retrieved domain-name.0.4.1 (cached) -> retrieved duration.0.2.1 (cached) -> retrieved eqaf.0.10 (cached) -> installed conf-gmp-powm-sec.3 -> retrieved fmt.0.9.0 (cached) -> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lwt.5.9.0 (cached) -> retrieved miou.0.3.1 (cached) -> retrieved mirage-mtime.5.0.0 (cached) -> retrieved mirage-runtime.4.8.2 (cached) -> retrieved mirage-sleep.4.0.0 (cached) -> retrieved mirage-unix.5.0.1 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved mtime.2.1.0 (cached) -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved ohex.0.2.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ounit2.2.2.7 (cached) -> retrieved ppx_deriving_yojson.3.9.1 (cached) -> retrieved ppx_deriving.6.0.3 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved randomconv.0.2.0 (cached) -> retrieved re.1.12.0 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved sexplib0.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved topkg.1.0.7 (cached) -> retrieved uutf.1.0.3 (cached) -> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved yojson.2.2.2 (cached) -> retrieved zarith.1.14 (cached) -> installed cmdliner.1.3.0 -> installed ocamlbuild.0.16.1 -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed zarith.1.14 -> installed topkg.1.0.7 -> installed uutf.1.0.3 -> installed mtime.2.1.0 -> installed fmt.0.9.0 -> installed ptime.1.2.0 -> installed astring.0.8.5 -> installed dune.3.17.2 -> installed duration.0.2.1 -> installed ppx_derivers.1.2.1 -> installed randomconv.0.2.0 -> installed ohex.0.2.0 -> installed csexp.1.5.2 -> installed asn1-combinators.0.3.2 -> installed domain-name.0.4.1 -> installed eqaf.0.10 -> installed macaddr.5.6.0 -> installed miou.0.3.1 -> installed mirage-mtime.5.0.0 -> installed ocaml-compiler-libs.v0.17.0 -> installed ocaml-syntax-shims.1.0.0 -> installed cppo.1.8.0 -> installed re.1.12.0 -> installed sexplib0.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed yojson.2.2.2 -> installed ocplib-endian.1.2 -> installed ipaddr.5.6.0 -> installed digestif.1.2.0 -> installed alcotest.1.8.0 -> installed ounit2.2.2.7 -> installed dune-configurator.3.17.2 -> installed lwt.5.9.0 -> installed mirage-sleep.4.0.0 -> installed logs.0.7.0 -> installed mirage-runtime.4.8.2 -> installed mirage-unix.5.0.1 -> installed ppxlib.0.35.0 -> installed ppx_deriving.6.0.3 -> installed ppx_deriving_yojson.3.9.1 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-04 12:12.59 ---> saved as "d7662c95656663037780a4186d2c3dde1ee2d90568a34c8e9e960397e9965862" /src: (copy (src .) (dst /src)) 2025-03-04 12:13.00 ---> saved as "6e137137c049d9029a59cfd4239b5fe7778d7c60ed7a3325ebeaf2ff29332b87" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default/tests && ./test_entropy.exe) test entropy OK (cd _build/default/tests && ./test_symmetric_runner.exe) accel: XOR AES GHASH ................................................................ Ran: 64 tests in: 0.12 seconds. OK (cd _build/default/tests && ./test_random_runner.exe) ......... Ran: 9 tests in: 0.11 seconds. OK (cd _build/default/tests && ./test_miou_entropy_collection.exe) reseeding: 000000 0008 daec 284a 70d0 ff0f 01c8 841f 9f2b ....(Jp........+ 000010 3c37 6940 ce41 0e47 3e50 3151 2755 5a58 <7i@.A.G>P1Q'UZX 000020 aa59 635e 1966 fd6c 4870 4d71 4975 8a79 .Yc^.f.lHpMqIu.y 000030 2b7e d384 b287 5d91 f595 589c a59d 2da3 +~....]...X...-. 000040 1dad b3b0 29b3 e0bc cebf 19cc a3cc e6ce ....)........... 000050 67d8 e1d9 0be0 68e0 fae1 87e8 7fea 50f2 g.....h.......P. 000060 dcf9 d9ff c00c 360f aa19 051f 7629 622e ......6.....v)b. 000070 0336 cc3c 873f 0f4b ab54 1857 d860 c363 .6.<.?.K.T.W.`.c 000080 cf6f 1a7c a17c b47e 8487 0c93 9c9c be9e .o.|.|.~........ 000090 70a7 47b2 82b9 65be fdc5 66cc dacd 04d4 p.G...e...f..... 0000a0 40d4 42d5 aad9 f3de 74e8 1bea eaf0 08f4 @.B.....t....... 0000b0 4df4 88f5 44fa ca01 8e07 1c13 481d 8f21 M...D.......H..! 0000c0 db26 6230 dc31 0638 5738 bc39 593f 304a .&b0.1.8W8.9Y?0J 0000d0 5c51 d355 0208 3dfa 5845 f8f0 6f28 0380 \Q.U..=.XE..o(.. 0000e0 66cb 450d 25f1 ae6c b0f7 de9c b69a 1324 f.E.%..l.......$ 0000f0 e9c5 a212 29ff fa89 2ae1 ce12 799a ff6c ....)...*...y..l 000100 5e62 b398 5dae 2e6c 45a4 7c0d bffe b664 ^b..]..lE.|....d 000110 6c14 14ba 03b0 02a4 54d2 8991 5ee7 646d l.......T...^.dm 000120 3b46 845e 4954 e317 a348 6846 bd6f 9fb2 ;F.^IT...HhF.o.. 000130 efbf 4a1b e4be 0d94 c7d8 e249 aa34 a53a ..J........I.4.: 000140 6d83 29e5 56f3 ca00 ed78 c356 5c49 948b m.).V....x.V\I.. 000150 61bd 3bc6 d2ca c315 8663 4310 9267 7f6f a.;......cC..g.o entropy sources: accumulate: (src: [0] rdrand) dc33 dfa6 a4c9 28d5 accumulate: (src: [1] getrandom) 0ac1 de9d bdd6 31e5 accumulate: (src: [0] rdrand) 51c1 2508 7eba f0ed accumulate: (src: [1] getrandom) 596d 76ff 1d69 d684 accumulate: (src: [0] rdrand) e671 2853 a556 82d0 (cd _build/default/tests && ./test_miou_rng.exe) 32 bit random number: 8057f8b2b880260a60f99b2e483b6bc694a6b9c9c8cdfc0071769aa05062eb71 16 bit random number: d4d265f0c0057aabc18cb9da719e6e19 (cd _build/default/tests && ./test_entropy_collection.exe) reseeding: 000000 0008 faf7 8b71 d4ce d40c 0108 e6b3 9010 .....q.......... 000010 d869 52d7 02c8 cd6a f575 267d 7f81 0c87 .iR....j.u&}.... 000020 0196 b2a0 78a4 42a7 d6ba 76cb f5de 4ef1 ....x.B...v...N. 000030 24f8 6df9 f900 3906 7d11 aa19 8426 7333 $.m...9.}....&s3 000040 d548 d54f ad67 7b7e 558b 4897 11a3 1dae .H.O.g{~U.H..... 000050 dab5 a9bc 49bf 20cb 64d6 16df 37ea 48f2 ....I. .d...7.H. 000060 98fa 0004 6204 0d06 8b0d 4913 191f 562a ....b.....I...V* 000070 c932 e03c 3d40 6341 8746 b04f e45e 6c6e .2.<=@cA.F.O.^ln 000080 7a7c de7f 6297 ebab 01bf 30d1 91da bdeb z|..b.....0..... 000090 7602 180f 391a 5122 bd2a aa34 5137 3d43 v...9.Q".*.4Q7=C 0000a0 ea4e 7159 cd5e f268 956c ef6e 8b79 427f .NqY.^.h.l.n.yB. 0000b0 fd8a ca95 619c 059e 7ca5 fbaa bab5 12bc ....a...|....... 0000c0 9ebc 45bf 07cb f0d5 05dd e7e0 59e4 e8e5 ..E.........Y... 0000d0 e1ec 3ef0 64f1 96f6 f0ff 050e 6715 0308 ..>.d.......g... 0000e0 704d e870 5b82 3be9 pM.p[.;. accumulate: (src: [0] rdrand) 720c 8014 0fca 987e entropy sources: [0] rdrand [1] timer accumulate: (src: [1] timer) d67a b766 accumulate: (src: [0] rdrand) 5792 990b 70f9 d56e accumulate: (src: [1] timer) 0238 08e4 accumulate: (src: [0] rdrand) 4d66 fc38 1492 49b0 accumulate: (src: [1] timer) 6c1e 5761 File "tests/dune", line 48, characters 7-25: 48 | (name test_ec_wycheproof) ^^^^^^^^^^^^^^^^^^ (cd _build/default/tests && ./test_ec_wycheproof.exe) Fatal error: exception Sys_error("ecdh_secp256k1_test.json: No such file or directory") (cd _build/default/tests && ./test_ec.exe) Testing `EC'. This run has ID `7LM75SY5'. [OK] P256 Key exchange 0 b*A. [OK] P256 Key exchange 1 a*B. [OK] P256 Key exchange 2 a*A. [OK] P256 Key exchange 3 b*B. [OK] P256 Low level scalar mult 0 Scalar mu... [OK] P256 Low level scalar mult 1 Scalar mu... [OK] P256 Low level scalar mult 2 Scalar mu... [OK] P256 Low level scalar mult 3 Scalar mu... [OK] P256 Low level scalar mult 4 Scalar mu... [OK] P256 Low level scalar mult 5 Scalar mu... [OK] P256 Point validation 0 Ok. [OK] P256 Point validation 1 P=0. [OK] P256 Point validation 2 (0, sqrt(... [OK] P256 Point validation 3 out of ra... [OK] P256 Scalar validation when generating 0 0. [OK] P256 Scalar validation when generating 1 1. [OK] P256 Scalar validation when generating 2 n-1. [OK] P256 Scalar validation when generating 3 n. [OK] ECDSA NIST 0 ECDSA gen. [OK] ECDSA NIST 1 ECDSA sign. [OK] ECDSA NIST 2 ECDSA ver... [OK] ECDSA RFC 6979 P256 0 public ke... [OK] ECDSA RFC 6979 P256 1 public ke... [OK] ECDSA RFC 6979 P256 2 RFC 6979 ... [OK] ECDSA RFC 6979 P256 3 RFC 6979 ... [OK] ECDSA RFC 6979 P256 4 RFC 6979 ... [OK] ECDSA RFC 6979 P256 5 RFC 6979 ... [OK] ECDSA RFC 6979 P256 6 RFC 6979 ... [OK] ECDSA RFC 6979 P256 7 RFC 6979 ... [OK] ECDSA RFC 6979 P256 8 RFC 6979 ... [OK] ECDSA RFC 6979 P256 9 RFC 6979 ... [OK] ECDSA RFC 6979 P256 10 RFC 6979 ... [OK] ECDSA RFC 6979 P256 11 RFC 6979 ... [OK] ECDSA RFC 6979 P384 0 public ke... [OK] ECDSA RFC 6979 P384 1 public ke... [OK] ECDSA RFC 6979 P384 2 RFC 6979 ... [OK] ECDSA RFC 6979 P384 3 RFC 6979 ... [OK] ECDSA RFC 6979 P384 4 RFC 6979 ... [OK] ECDSA RFC 6979 P384 5 RFC 6979 ... [OK] ECDSA RFC 6979 P384 6 RFC 6979 ... [OK] ECDSA RFC 6979 P384 7 RFC 6979 ... [OK] ECDSA RFC 6979 P384 8 RFC 6979 ... [OK] ECDSA RFC 6979 P384 9 RFC 6979 ... [OK] ECDSA RFC 6979 P384 10 RFC 6979 ... [OK] ECDSA RFC 6979 P384 11 RFC 6979 ... [OK] ECDSA RFC 6979 P521 0 public ke... [OK] ECDSA RFC 6979 P521 1 public ke... [OK] ECDSA RFC 6979 P521 2 RFC 6979 ... [OK] ECDSA RFC 6979 P521 3 RFC 6979 ... [OK] ECDSA RFC 6979 P521 4 RFC 6979 ... [OK] ECDSA RFC 6979 P521 5 RFC 6979 ... [OK] ECDSA RFC 6979 P521 6 RFC 6979 ... [OK] ECDSA RFC 6979 P521 7 RFC 6979 ... [OK] ECDSA RFC 6979 P521 8 RFC 6979 ... [OK] ECDSA RFC 6979 P521 9 RFC 6979 ... [OK] ECDSA RFC 6979 P521 10 RFC 6979 ... [OK] ECDSA RFC 6979 P521 11 RFC 6979 ... [OK] X25519 0 RFC 7748. [OK] ED25519 0 RFC 8032 1. [OK] ED25519 1 RFC 8032 2. [OK] ED25519 2 RFC 8032 3. [OK] ED25519 3 RFC 8032 4. [OK] ED25519 4 RFC 8032 5. [OK] ECDSA P521 regression 0 regression1. [OK] secp256k1 ECDSA 0 ECDSA gen. [OK] secp256k1 ECDSA 1 ECDSA ver... [OK] secp256k1 ECDSA sign 0 ECDSA sig... [OK] secp256k1 ECDSA sign 1 ECDSA sig... [OK] secp256k1 ECDSA sign 2 ECDSA sig... [OK] secp256k1 ECDSA sign 3 ECDSA sig... [OK] secp256k1 ECDSA sign 4 ECDSA sig... [OK] secp256k1 ECDSA sign 5 ECDSA sig... [OK] secp256k1 ECDSA sign 6 ECDSA sig... Full test results in `/src/_build/default/tests/_build/_tests/EC'. Test Successful in 0.112s. 73 tests run. (cd _build/default/tests && ./test_pk_runner.exe) ....................................................................................................................................................................................................................................................................................................................................................................... Ran: 359 tests in: 1.24 seconds. OK "/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-03-04 12:13.09: Job failed: Failed: Build failed