2025-10-22 11:52.32: New job: test mirleft/ocaml-tls https://github.com/mirleft/ocaml-tls.git#refs/heads/main (ba8ce3191bab369c698bd9dc4540873ee3a35c3e) (macos-arm64:macos-homebrew-4.14_arm64_opam-2.4)Base: macos-homebrew-ocaml-4.14Opam project buildTo reproduce locally:git clone --recursive "https://github.com/mirleft/ocaml-tls.git" -b "main" && cd "ocaml-tls" && git reset --hard ba8ce319cat > Dockerfile <<'END-OF-DOCKERFILE'FROM macos-homebrew-ocaml-4.14# macos-homebrew-4.14_arm64_opam-2.4USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"RUN ln -f ~/local/bin/opam-2.4 ~/local/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionRUN cd ~/opam-repository && (git cat-file -e 537e2afc5ba2e54c49504cf6cf1d31eba03df3d8 || git fetch origin master) && git reset -q --hard 537e2afc5ba2e54c49504cf6cf1d31eba03df3d8 && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 tls.opam tls-mirage.opam tls-miou-unix.opam tls-lwt.opam tls-eio.opam tls-async.opam ./src/./RUN opam pin add -yn tls.dev './src/./' && \opam pin add -yn tls-mirage.dev './src/./' && \opam pin add -yn tls-miou-unix.dev './src/./' && \opam pin add -yn tls-lwt.dev './src/./' && \opam pin add -yn tls-eio.dev './src/./' && \opam pin add -yn tls-async.dev './src/./'RUN echo '(lang dune 3.0)' > './src/./dune-project'ENV DEPS="alcotest.1.9.1 asn1-combinators.0.3.2 astring.0.8.5 async.v0.16.0 async_kernel.v0.16.0 async_rpc_kernel.v0.16.0 async_unix.v0.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.2.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-pkg-config.4 core.v0.16.2 core_kernel.v0.16.0 core_unix.v0.16.0 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 cstruct-async.6.2.0 digestif.1.3.0 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 fmt.0.11.0 gmap.0.3.0 int_repr.v0.16.0 ipaddr.5.6.1 jane-street-headers.v0.16.0 jst-config.v0.16.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-ptime.5.2.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.16.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 optint.0.3.0 ounit2.2.2.7 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 protocol_version_header.v0.16.0 ptime.1.2.0 randomconv.0.2.0 re.1.14.0 seq.base sexp_pretty.v0.16.0 sexplib.v0.16.0 sexplib0.v0.16.0 spawn.v0.17.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 textutils.v0.16.0 textutils_kernel.v0.16.0 time_now.v0.16.0 timezone.v0.16.0 topkg.1.1.0 typerep.v0.16.0 uutf.1.0.4 variantslib.v0.16.0 x509.1.0.6 zarith.1.14"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.4 --depext-only -y tls.dev tls-mirage.dev tls-lwt.dev tls-async.dev $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . ./srcRUN cd ./src && opam exec -- dune build --only-packages=tls,tls-mirage,tls-lwt,tls-async @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2025-10-22 11:52.32: Using cache hint "mirleft/ocaml-tls-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_arm64_opam-2.4-720623850e1cc9a3a68459514bc6b264"2025-10-22 11:52.32: Using OBuilder spec:((from macos-homebrew-ocaml-4.14)(comment macos-homebrew-4.14_arm64_opam-2.4)(user (uid 1000) (gid 1000))(env CLICOLOR_FORCE 1)(env OPAMCOLOR always)(run (shell "ln -f ~/local/bin/opam-2.4 ~/local/bin/opam"))(run (shell "opam init --reinit -ni"))(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))(network host)(shell "cd ~/opam-repository && (git cat-file -e 537e2afc5ba2e54c49504cf6cf1d31eba03df3d8 || git fetch origin master) && git reset -q --hard 537e2afc5ba2e54c49504cf6cf1d31eba03df3d8 && git log --no-decorate -n1 --oneline && opam update -u"))(copy (src tls.opam tls-mirage.opam tls-miou-unix.opam tls-lwt.opam tls-eio.opam tls-async.opam)(dst ./src/./))(run (network host)(shell "opam pin add -yn tls.dev './src/./' && \\nopam pin add -yn tls-mirage.dev './src/./' && \\nopam pin add -yn tls-miou-unix.dev './src/./' && \\nopam pin add -yn tls-lwt.dev './src/./' && \\nopam pin add -yn tls-eio.dev './src/./' && \\nopam pin add -yn tls-async.dev './src/./'"))(run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))(env DEPS "alcotest.1.9.1 asn1-combinators.0.3.2 astring.0.8.5 async.v0.16.0 async_kernel.v0.16.0 async_rpc_kernel.v0.16.0 async_unix.v0.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.2.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-pkg-config.4 core.v0.16.2 core_kernel.v0.16.0 core_unix.v0.16.0 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 cstruct-async.6.2.0 digestif.1.3.0 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 fmt.0.11.0 gmap.0.3.0 int_repr.v0.16.0 ipaddr.5.6.1 jane-street-headers.v0.16.0 jst-config.v0.16.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-ptime.5.2.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.16.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 optint.0.3.0 ounit2.2.2.7 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 protocol_version_header.v0.16.0 ptime.1.2.0 randomconv.0.2.0 re.1.14.0 seq.base sexp_pretty.v0.16.0 sexplib.v0.16.0 sexplib0.v0.16.0 spawn.v0.17.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 textutils.v0.16.0 textutils_kernel.v0.16.0 time_now.v0.16.0 timezone.v0.16.0 topkg.1.1.0 typerep.v0.16.0 uutf.1.0.4 variantslib.v0.16.0 x509.1.0.6 zarith.1.14")(env CI true)(env OCAMLCI true)(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))(network host)(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y tls.dev tls-mirage.dev tls-lwt.dev tls-async.dev $DEPS"))(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))(network host)(shell "opam install $DEPS"))(copy (src .) (dst ./src))(run (shell "cd ./src && opam exec -- dune build --only-packages=tls,tls-mirage,tls-lwt,tls-async @install @check @runtest && rm -rf _build")))2025-10-22 11:52.32: Waiting for resource in pool OCluster2025-10-22 11:52.32: Waiting for worker…2025-10-22 12:11.19: Got resource from pool OClusterBuilding on m1-worker-01Initialized empty Git repository in /private/var/lib/ocluster-worker/git/ocaml-tls.git-02795074a37c9630b46eba2f96cef87319103ab0/.git/HEAD is now at ba8ce31 changes for 2.0.3(from macos-homebrew-ocaml-4.14)2025-10-22 12:11.31 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache/: (comment macos-homebrew-4.14_arm64_opam-2.4)/: (user (uid 1000) (gid 1000))/: (env CLICOLOR_FORCE 1)/: (env OPAMCOLOR always)/: (run (shell "ln -f ~/local/bin/opam-2.4 ~/local/bin/opam"))2025-10-22 12:11.31 ---> using "16fd332aba96a180769fbf49639a0f9a6aa6ed7d2edfa24c2b9bea4039176eb4" from cache/: (run (shell "opam init --reinit -ni"))No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 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 1 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=1 --globalFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] no changes from git+file:///Users/mac1000/opam-repository2025-10-22 12:11.31 ---> using "441082522a992e4675bb61cf184ac4d487fcb27eccab875ab68ef480e42527a0" from cache/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Darwin 24.5.0The OCaml toplevel, version 4.14.22.4.12025-10-22 12:11.31 ---> using "73a23ad864bce177bda3ef5ed15fdc258f712e067e25e839184501078d169a1f" from cache/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))(network host)(shell "cd ~/opam-repository && (git cat-file -e 537e2afc5ba2e54c49504cf6cf1d31eba03df3d8 || git fetch origin master) && git reset -q --hard 537e2afc5ba2e54c49504cf6cf1d31eba03df3d8 && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEAD5bf570252b..537e2afc5b master -> origin/master537e2afc5b Merge pull request #28756 from hannesm/release-mirage-ptime-v5.2.0<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///Users/mac1000/opam-repositoryEverything as up-to-date as possibleThe following packages are not being upgraded because the new versions conflict with other installed packages:- ocaml.5.3.0- ocaml-config.3However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.3.0"), 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-10-22 12:11.31 ---> using "e46cc124c75f24e3cf8710a635bc371c5d07d4f9312bc045be6f7833c4072f30" from cache/: (copy (src tls.opam tls-mirage.opam tls-miou-unix.opam tls-lwt.opam tls-eio.opam tls-async.opam)(dst ./src/./))2025-10-22 12:11.32 ---> saved as "93cdff093b6f67864c71c56d13d8c7340b49768955ba7056d026cc9e8655bb65"/: (run (network host)(shell "opam pin add -yn tls.dev './src/./' && \\nopam pin add -yn tls-mirage.dev './src/./' && \\nopam pin add -yn tls-miou-unix.dev './src/./' && \\nopam pin add -yn tls-lwt.dev './src/./' && \\nopam pin add -yn tls-eio.dev './src/./' && \\nopam pin add -yn tls-async.dev './src/./'"))[tls.dev] synchronised (file:///Users/mac1000/src)tls is now pinned to file:///Users/mac1000/src (version dev)[tls-mirage.dev] synchronised (file:///Users/mac1000/src)tls-mirage is now pinned to file:///Users/mac1000/src (version dev)[tls-miou-unix.dev] synchronised (file:///Users/mac1000/src)tls-miou-unix is now pinned to file:///Users/mac1000/src (version dev)[tls-lwt.dev] synchronised (file:///Users/mac1000/src)tls-lwt is now pinned to file:///Users/mac1000/src (version dev)[tls-eio.dev] synchronised (file:///Users/mac1000/src)tls-eio is now pinned to file:///Users/mac1000/src (version dev)[tls-async.dev] synchronised (file:///Users/mac1000/src)tls-async is now pinned to file:///Users/mac1000/src (version dev)2025-10-22 12:11.47 ---> saved as "99a2150109587c011b7034732f4c65c8ce2c93556c42eb73d10fa050154da7db"/: (run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))2025-10-22 12:11.48 ---> saved as "3716548171e476a95384ae5296da99e21385e2fa391c615000d90412cf127255"/: (env DEPS "alcotest.1.9.1 asn1-combinators.0.3.2 astring.0.8.5 async.v0.16.0 async_kernel.v0.16.0 async_rpc_kernel.v0.16.0 async_unix.v0.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.2.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-pkg-config.4 core.v0.16.2 core_kernel.v0.16.0 core_unix.v0.16.0 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 cstruct-async.6.2.0 digestif.1.3.0 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 fmt.0.11.0 gmap.0.3.0 int_repr.v0.16.0 ipaddr.5.6.1 jane-street-headers.v0.16.0 jst-config.v0.16.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-ptime.5.2.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.16.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 optint.0.3.0 ounit2.2.2.7 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 protocol_version_header.v0.16.0 ptime.1.2.0 randomconv.0.2.0 re.1.14.0 seq.base sexp_pretty.v0.16.0 sexplib.v0.16.0 sexplib0.v0.16.0 spawn.v0.17.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 textutils.v0.16.0 textutils_kernel.v0.16.0 time_now.v0.16.0 timezone.v0.16.0 topkg.1.1.0 typerep.v0.16.0 uutf.1.0.4 variantslib.v0.16.0 x509.1.0.6 zarith.1.14")/: (env CI true)/: (env OCAMLCI true)/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))(network host)(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y tls.dev tls-mirage.dev tls-lwt.dev tls-async.dev $DEPS"))+ /opt/homebrew/bin/brew "update"- ==> Updating Homebrew...- Already up-to-date.<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>[tls-lwt.dev] synchronised (file:///Users/mac1000/src)[tls-async.dev] synchronised (file:///Users/mac1000/src)[tls.dev] synchronised (file:///Users/mac1000/src)[tls-mirage.dev] synchronised (file:///Users/mac1000/src)[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).[NOTE] Package ocaml-config is already installed (current version is 2).[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).[NOTE] Package ocaml is already installed (current version is 4.14.2).[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-bigarray is already installed (current version is base).The following system packages will first need to be installed:gmp pkgconf<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>+ /opt/homebrew/bin/brew "install" "gmp" "pkgconf"- ==> Fetching downloads for: gmp and pkgconf- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/manifests/2.5.1- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e0bf05fafcedcfbde9a9a488dc3a083cadd19584ac19f4cc053a9c265f841120--pkgconf-2.5.1.bottle_manifest.json- ==> Fetching gmp- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:6683d73d6677d28e1e8d1b92d6ebfbc068c1d33e19b79114a22a648a99ba5991- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a0c4a56cc56ffac0cb3f0aa5deb1b3a614002dabf65a81e14d87129c89eb7bde--gmp--6.3.0.arm64_sequoia.bottle.tar.gz- ==> Fetching pkgconf- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/blobs/sha256:6fabdc3d0a656e2d505aec4e39b2f8e354601ee141469554fa71eabc3386e18f- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/1a24d1ad02d9375a2488968c81e160cf6edbbb0709cc51dbeeb5c7f9c5e473b0--pkgconf--2.5.1.arm64_sequoia.bottle.tar.gz- ==> Pouring gmp--6.3.0.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/gmp/6.3.0: 22 files, 3.3MB- ==> Running `brew cleanup gmp`...- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).- ==> Pouring pkgconf--2.5.1.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/pkgconf/2.5.1: 28 files, 518.7KB- ==> Running `brew cleanup pkgconf`...2025-10-22 12:12.04 ---> saved as "f5cb44ef3796e4521de0d828a2e8e848cd494fb44c9e1e0c063b98b0770239e3"/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))(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 2).[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).[NOTE] Package ocaml is already installed (current version is 4.14.2).[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-bigarray is already installed (current version is base).The following actions will be performed:=== install 117 packages- install alcotest 1.9.1- install asn1-combinators 0.3.2- install astring 0.8.5- install async v0.16.0- install async_kernel v0.16.0- install async_rpc_kernel v0.16.0- install async_unix v0.16.0- install base v0.16.4- install base-bytes base- install base64 3.5.2- install base_bigstring v0.16.0- install base_quickcheck v0.16.0- install bin_prot v0.16.0- install cmdliner 2.0.0- install conf-gmp 5- install conf-gmp-powm-sec 4- install conf-pkg-config 4- install core v0.16.2- install core_kernel v0.16.0- install core_unix v0.16.0- install cppo 1.8.0- install csexp 1.5.2- install cstruct 6.2.0- install cstruct-async 6.2.0- install digestif 1.3.0- install domain-name 0.5.0- install dune 3.20.2- install dune-configurator 3.20.2- install duration 0.2.1- install eqaf 0.10- install expect_test_helpers_core v0.16.0- install fieldslib v0.16.0- install fmt 0.11.0- install gmap 0.3.0- install int_repr v0.16.0- install ipaddr 5.6.1- install jane-street-headers v0.16.0- install jst-config v0.16.0- install kdf 1.0.0- install logs 0.9.0- install lwt 5.9.2- install macaddr 5.6.1- install mirage-crypto 2.0.2- install mirage-crypto-ec 2.0.2- install mirage-crypto-pk 2.0.2- install mirage-crypto-rng 2.0.2- install mirage-flow 5.0.0- install mirage-kv 6.1.1- install mirage-ptime 5.2.0- install num 1.6- install ocaml-compiler-libs v0.12.4- install ocaml-syntax-shims 1.0.0- install ocaml_intrinsics v0.16.2- install ocamlbuild 0.16.1- install ocamlfind 1.9.8- install ocplib-endian 1.2- install ohex 0.2.0- install optint 0.3.0- install ounit2 2.2.7- install parsexp v0.16.0- install ppx_assert v0.16.0- install ppx_base v0.16.0- install ppx_bench v0.16.0- install ppx_bin_prot v0.16.0- install ppx_cold v0.16.0- install ppx_compare v0.16.0- install ppx_custom_printf v0.16.0- install ppx_derivers 1.2.1- install ppx_disable_unused_warnings v0.16.0- install ppx_enumerate v0.16.0- install ppx_expect v0.16.2- install ppx_fields_conv v0.16.0- install ppx_fixed_literal v0.16.0- install ppx_globalize v0.16.0- install ppx_hash v0.16.0- install ppx_here v0.16.0- install ppx_ignore_instrumentation v0.16.0- install ppx_inline_test v0.16.1- install ppx_jane v0.16.0- install ppx_let v0.16.0- install ppx_log v0.16.0- install ppx_module_timer v0.16.0- install ppx_optcomp v0.16.0- install ppx_optional v0.16.0- install ppx_pipebang v0.16.0- install ppx_sexp_conv v0.16.0- install ppx_sexp_message v0.16.0- install ppx_sexp_value v0.16.0- install ppx_stable v0.16.0- install ppx_stable_witness v0.16.0- install ppx_string v0.16.0- install ppx_tydi v0.16.0- install ppx_typerep_conv v0.16.0- install ppx_variants_conv v0.16.0- install ppxlib 0.35.0- install protocol_version_header v0.16.0- install ptime 1.2.0- install randomconv 0.2.0- install re 1.14.0- install seq base- install sexp_pretty v0.16.0- install sexplib v0.16.0- install sexplib0 v0.16.0- install spawn v0.17.0- install splittable_random v0.16.0- install stdio v0.16.0- install stdlib-shims 0.3.0- install textutils v0.16.0- install textutils_kernel v0.16.0- install time_now v0.16.0- install timezone v0.16.0- install topkg 1.1.0- install typerep v0.16.0- install uutf 1.0.4- install variantslib v0.16.0- install x509 1.0.6- install zarith 1.14<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved astring.0.8.5 (cached)-> retrieved asn1-combinators.0.3.2 (cached)-> retrieved alcotest.1.9.1 (cached)-> retrieved async_kernel.v0.16.0 (cached)-> retrieved async_rpc_kernel.v0.16.0 (cached)-> retrieved async_unix.v0.16.0 (cached)-> retrieved async.v0.16.0 (cached)-> retrieved base64.3.5.2 (cached)-> retrieved base_bigstring.v0.16.0 (cached)-> retrieved base.v0.16.4 (cached)-> retrieved bin_prot.v0.16.0 (cached)-> retrieved conf-gmp.5 (cached)-> retrieved conf-gmp-powm-sec.4 (cached)-> retrieved cmdliner.2.0.0 (cached)-> installed conf-pkg-config.4-> retrieved base_quickcheck.v0.16.0 (cached)-> retrieved core_kernel.v0.16.0 (cached)-> installed conf-gmp.5-> retrieved core_unix.v0.16.0 (cached)-> installed conf-gmp-powm-sec.4-> retrieved cppo.1.8.0 (cached)-> retrieved csexp.1.5.2 (cached)-> retrieved cstruct.6.2.0, cstruct-async.6.2.0 (cached)-> retrieved core.v0.16.2 (cached)-> retrieved domain-name.0.5.0 (cached)-> retrieved duration.0.2.1 (cached)-> retrieved eqaf.0.10 (cached)-> retrieved digestif.1.3.0 (cached)-> retrieved expect_test_helpers_core.v0.16.0 (cached)-> retrieved fieldslib.v0.16.0 (cached)-> retrieved fmt.0.11.0 (cached)-> retrieved gmap.0.3.0 (cached)-> retrieved int_repr.v0.16.0 (cached)-> retrieved jane-street-headers.v0.16.0 (cached)-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)-> retrieved jst-config.v0.16.0 (cached)-> retrieved kdf.1.0.0 (cached)-> retrieved logs.0.9.0 (cached)-> retrieved lwt.5.9.2 (cached)-> retrieved mirage-flow.5.0.0 (cached)-> retrieved mirage-kv.6.1.1 (cached)-> retrieved mirage-ptime.5.2.0 (cached)-> retrieved num.1.6 (cached)-> retrieved ocaml-compiler-libs.v0.12.4 (cached)-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved ocaml_intrinsics.v0.16.2 (cached)-> retrieved ocamlbuild.0.16.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ocplib-endian.1.2 (cached)-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2 (cached)-> retrieved ohex.0.2.0 (cached)-> retrieved optint.0.3.0 (cached)-> retrieved parsexp.v0.16.0 (cached)-> retrieved ounit2.2.2.7 (cached)-> retrieved ppx_assert.v0.16.0 (cached)-> retrieved ppx_base.v0.16.0 (cached)-> retrieved ppx_bench.v0.16.0 (cached)-> retrieved ppx_cold.v0.16.0 (cached)-> retrieved ppx_bin_prot.v0.16.0 (cached)-> retrieved ppx_compare.v0.16.0 (cached)-> retrieved ppx_custom_printf.v0.16.0 (cached)-> retrieved ppx_derivers.1.2.1 (cached)-> retrieved ppx_disable_unused_warnings.v0.16.0 (cached)-> retrieved ppx_enumerate.v0.16.0 (cached)-> retrieved ppx_fields_conv.v0.16.0 (cached)-> retrieved ppx_expect.v0.16.2 (cached)-> retrieved ppx_fixed_literal.v0.16.0 (cached)-> retrieved ppx_globalize.v0.16.0 (cached)-> retrieved ppx_hash.v0.16.0 (cached)-> retrieved ppx_here.v0.16.0 (cached)-> retrieved ppx_ignore_instrumentation.v0.16.0 (cached)-> retrieved ppx_inline_test.v0.16.1 (cached)-> retrieved ppx_jane.v0.16.0 (cached)-> retrieved ppx_let.v0.16.0 (cached)-> retrieved ppx_log.v0.16.0 (cached)-> retrieved ppx_module_timer.v0.16.0 (cached)-> retrieved ppx_optcomp.v0.16.0 (cached)-> retrieved ppx_optional.v0.16.0 (cached)-> retrieved ppx_pipebang.v0.16.0 (cached)-> retrieved ppx_sexp_conv.v0.16.0 (cached)-> retrieved ppx_sexp_message.v0.16.0 (cached)-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)-> retrieved ppx_stable_witness.v0.16.0 (cached)-> retrieved ppx_stable.v0.16.0 (cached)-> retrieved ppx_string.v0.16.0 (cached)-> retrieved ppx_sexp_value.v0.16.0 (cached)-> retrieved ppx_tydi.v0.16.0 (cached)-> retrieved ppx_variants_conv.v0.16.0 (cached)-> retrieved ppx_typerep_conv.v0.16.0 (cached)-> installed ocamlbuild.0.16.1-> retrieved ptime.1.2.0 (cached)-> retrieved protocol_version_header.v0.16.0 (cached)-> installed num.1.6-> retrieved re.1.14.0 (cached)-> retrieved seq.base (cached)-> installed seq.base-> retrieved randomconv.0.2.0 (cached)-> retrieved ppxlib.0.35.0 (cached)-> retrieved sexplib.v0.16.0 (cached)-> retrieved sexplib0.v0.16.0 (cached)-> retrieved sexp_pretty.v0.16.0 (cached)-> retrieved splittable_random.v0.16.0 (cached)-> retrieved spawn.v0.17.0 (cached)-> retrieved stdlib-shims.0.3.0 (cached)-> retrieved stdio.v0.16.0 (cached)-> retrieved textutils.v0.16.0 (cached)-> retrieved time_now.v0.16.0 (cached)-> retrieved textutils_kernel.v0.16.0 (cached)-> retrieved timezone.v0.16.0 (cached)-> retrieved uutf.1.0.4 (cached)-> retrieved typerep.v0.16.0 (cached)-> retrieved variantslib.v0.16.0 (cached)-> retrieved topkg.1.1.0 (cached)-> retrieved zarith.1.14 (cached)-> retrieved x509.1.0.6 (cached)-> installed cmdliner.2.0.0-> installed ocamlfind.1.9.8-> installed base-bytes.base-> installed zarith.1.14-> installed topkg.1.1.0-> installed uutf.1.0.4-> installed ptime.1.2.0-> installed fmt.0.11.0-> installed astring.0.8.5-> installed dune.3.20.2-> installed duration.0.2.1-> installed csexp.1.5.2-> installed domain-name.0.5.0-> installed gmap.0.3.0-> installed eqaf.0.10-> installed cstruct.6.2.0-> installed cppo.1.8.0-> installed base64.3.5.2-> installed asn1-combinators.0.3.2-> installed jane-street-headers.v0.16.0-> installed macaddr.5.6.1-> installed mirage-ptime.5.2.0-> installed ohex.0.2.0-> installed ocplib-endian.1.2-> installed ocaml-syntax-shims.1.0.0-> installed ocaml-compiler-libs.v0.12.4-> installed ppx_derivers.1.2.1-> installed randomconv.0.2.0-> installed optint.0.3.0-> installed stdlib-shims.0.3.0-> installed spawn.v0.17.0-> installed ipaddr.5.6.1-> installed digestif.1.3.0-> installed sexplib0.v0.16.0-> installed dune-configurator.3.20.2-> installed re.1.14.0-> installed ounit2.2.2.7-> installed ocaml_intrinsics.v0.16.2-> installed mirage-crypto.2.0.2-> installed kdf.1.0.0-> installed parsexp.v0.16.0-> installed alcotest.1.9.1-> installed sexplib.v0.16.0-> installed lwt.5.9.2-> installed mirage-flow.5.0.0-> installed mirage-kv.6.1.1-> installed logs.0.9.0-> installed mirage-crypto-rng.2.0.2-> installed base.v0.16.4-> installed mirage-crypto-pk.2.0.2-> installed fieldslib.v0.16.0-> installed variantslib.v0.16.0-> installed stdio.v0.16.0-> installed typerep.v0.16.0-> installed mirage-crypto-ec.2.0.2-> installed x509.1.0.6-> installed ppxlib.0.35.0-> installed ppx_cold.v0.16.0-> installed ppx_disable_unused_warnings.v0.16.0-> installed ppx_globalize.v0.16.0-> installed ppx_fixed_literal.v0.16.0-> installed ppx_enumerate.v0.16.0-> installed ppx_compare.v0.16.0-> installed ppx_here.v0.16.0-> installed ppx_fields_conv.v0.16.0-> installed ppx_ignore_instrumentation.v0.16.0-> installed ppx_pipebang.v0.16.0-> installed ppx_optional.v0.16.0-> installed ppx_optcomp.v0.16.0-> installed ppx_tydi.v0.16.0-> installed ppx_let.v0.16.0-> installed ppx_stable_witness.v0.16.0-> installed ppx_stable.v0.16.0-> installed ppx_typerep_conv.v0.16.0-> installed ppx_variants_conv.v0.16.0-> installed ppx_sexp_conv.v0.16.0-> installed ppx_assert.v0.16.0-> installed ppx_sexp_value.v0.16.0-> installed ppx_sexp_message.v0.16.0-> installed ppx_hash.v0.16.0-> installed ppx_base.v0.16.0-> installed ppx_custom_printf.v0.16.0-> installed ppx_log.v0.16.0-> installed jst-config.v0.16.0-> installed sexp_pretty.v0.16.0-> installed ppx_string.v0.16.0-> installed time_now.v0.16.0-> installed bin_prot.v0.16.0-> installed ppx_module_timer.v0.16.0-> installed ppx_inline_test.v0.16.1-> installed ppx_bin_prot.v0.16.0-> installed ppx_bench.v0.16.0-> installed ppx_expect.v0.16.2-> installed splittable_random.v0.16.0-> installed base_quickcheck.v0.16.0-> installed ppx_jane.v0.16.0-> installed int_repr.v0.16.0-> installed base_bigstring.v0.16.0-> installed core.v0.16.2-> installed protocol_version_header.v0.16.0-> installed textutils_kernel.v0.16.0-> installed expect_test_helpers_core.v0.16.0-> installed timezone.v0.16.0-> installed core_kernel.v0.16.0-> installed async_kernel.v0.16.0-> installed core_unix.v0.16.0-> installed async_rpc_kernel.v0.16.0-> installed textutils.v0.16.0-> installed async_unix.v0.16.0-> installed async.v0.16.0-> installed cstruct-async.6.2.0Done.# To update the current shell environment, run: eval $(opam env)2025-10-22 12:14.13 ---> saved as "5a9d51c0c4f522c595b609630c0ce68820a2f69a5f01ba881c3e0b935325ee6c"/: (copy (src .) (dst ./src))2025-10-22 12:14.14 ---> saved as "be880a031e4daa9fc278b1e4aebcdd3e1e4727a49b6327ba9c7977b30424366e"/: (run (shell "cd ./src && opam exec -- dune build --only-packages=tls,tls-mirage,tls-lwt,tls-async @install @check @runtest && rm -rf _build"))(cd _build/default/tests && ./key_derivation.exe)Testing `Key derivation tests'.This run has ID `9R6P1FD6'.[OK] key extraction and derivation 0 initial extract.[OK] key extraction and derivation 1 initial derive.[OK] key extraction and derivation 2 handshake extract.[OK] key extraction and derivation 3 derive c hs.[OK] key extraction and derivation 4 derive s hs.[OK] key extraction and derivation 5 derive finished.[OK] key extraction and derivation 6 derive master.[OK] key extraction and derivation 7 extract master.[OK] key extraction and derivation 8 derive handshake k...[OK] key extraction and derivation 9 derive traffic keys.[OK] key extraction and derivation 10 application write ...[OK] key extraction and derivation 11 application read k...[OK] key extraction and derivation 12 hs read keys.[OK] key extraction and derivation 13 resumption key.[OK] key extraction and derivation 14 payload.[OK] key extraction and derivation 15 processed payload.[OK] key extraction and derivation 16 self signature.[OK] key extraction and derivation 17 wire signature.[OK] key extraction and derivation 18 res secret.[OK] key extraction and derivation 19 early resumed.[OK] key extraction and derivation 20 binder.[OK] key extraction and derivation 21 x25519.Full test results in `~/src/_build/default/tests/_build/_tests/Key derivation tests'.Test Successful in 0.005s. 22 tests run.(cd _build/default/tests && ./feedback.exe)Looping 10 times, 1024 bytes.[time] 0.007271.04 s(cd _build/default/tests && ./unittestrunner.exe)............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................Ran: 476 tests in: 0.59 seconds.OK2025-10-22 12:14.18 ---> saved as "7c4ce69818a47eb0e87ee3fb90ce782f82bf809903d613aad005866eb951de2c"Job succeeded2025-10-22 12:14.23: Job succeeded