2025-08-22 08:46.49: New job: test mirleft/ocaml-tls https://github.com/mirleft/ocaml-tls.git#refs/heads/main (b3deaae86efa9bd5f6ec31b5e4452b29ea158d85) (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 b3deaae8cat > 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 f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && 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.0 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.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.1.3.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.4.1 dune.3.20.0 dune-configurator.3.20.0 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.1 macaddr.5.6.1 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-ptime.5.0.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.1 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.13.2 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-08-22 08:46.49: Using cache hint "mirleft/ocaml-tls-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_arm64_opam-2.4-97a6c7993e66075068ae0dbe8126d60c"2025-08-22 08:46.49: 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 f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && 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.0 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.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.1.3.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.4.1 dune.3.20.0 dune-configurator.3.20.0 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.1 macaddr.5.6.1 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-ptime.5.0.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.1 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.13.2 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-08-22 08:46.49: Waiting for resource in pool OCluster2025-08-22 08:46.49: Waiting for worker…2025-08-22 08:47.01: Got resource from pool OClusterBuilding on m1-worker-01HEAD is now at 2e31587 changes for 2.0.1HEAD is now at b3deaae Merge pull request #514 from dinosaure/improve-readme(from macos-homebrew-ocaml-4.14)2025-08-22 08:47.02 ---> 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-08-22 08:47.03 ---> 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-08-22 08:47.03 ---> 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-08-22 08:47.03 ---> 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 f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEADf6368c68f9..0978bfceb7 master -> origin/masterf9d23e5cb1 Merge pull request #28357 from maiste/release-dune-3.20.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-08-22 08:47.03 ---> using "d722631e4b2f719a7ec3b970cb55275fa41e55b61e0972beca0ae16eb4b93b56" 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-08-22 08:47.03 ---> using "bf8d9be969d4e3bc6cf451de1fa9d2c24ecf354d9ee9c467680fa1fc213b026f" from cache/: (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-08-22 08:47.03 ---> using "d55fac1d3d7ffd4be6853718f098a3ca0b9b3495303bef6db8b27126f4a34445" from cache/: (run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))2025-08-22 08:47.04 ---> using "bb15da4735e355a548d751a83b673e68dd9acaabbff00490f96313a2265991fa" from cache/: (env DEPS "alcotest.1.9.0 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.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.1.3.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.4.1 dune.3.20.0 dune-configurator.3.20.0 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.1 macaddr.5.6.1 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-ptime.5.0.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.1 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.13.2 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.6KB- ==> Running `brew cleanup pkgconf`...- ==> No outdated dependents to upgrade!2025-08-22 08:47.04 ---> using "2c6f2dd0b9373b79d3fdb89498a0d666d26418ef0af27a2004e5790245738de2" from cache/: (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.0- 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.1- install base_bigstring v0.16.0- install base_quickcheck v0.16.0- install bin_prot v0.16.0- install cmdliner 1.3.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.4.1- install dune 3.20.0- install dune-configurator 3.20.0- 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.1- install macaddr 5.6.1- install mirage-crypto 2.0.1- install mirage-crypto-ec 2.0.1- install mirage-crypto-pk 2.0.1- install mirage-crypto-rng 2.0.1- install mirage-flow 5.0.0- install mirage-kv 6.1.1- install mirage-ptime 5.0.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.1- 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.13.2- 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.0 (cached)-> retrieved async_kernel.v0.16.0 (cached)-> retrieved async_rpc_kernel.v0.16.0 (cached)-> retrieved async.v0.16.0 (cached)-> retrieved async_unix.v0.16.0 (cached)-> retrieved base64.3.5.1 (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.1.3.0 (cached)-> installed conf-pkg-config.4-> retrieved base_quickcheck.v0.16.0 (cached)-> installed conf-gmp.5-> retrieved core_kernel.v0.16.0 (cached)-> installed conf-gmp-powm-sec.4-> retrieved cppo.1.8.0 (cached)-> retrieved core_unix.v0.16.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.4.1 (cached)-> retrieved duration.0.2.1 (cached)-> retrieved eqaf.0.10 (cached)-> retrieved expect_test_helpers_core.v0.16.0 (cached)-> retrieved digestif.1.3.0 (cached)-> retrieved fieldslib.v0.16.0 (cached)-> retrieved gmap.0.3.0 (cached)-> retrieved fmt.0.11.0 (cached)-> retrieved int_repr.v0.16.0 (cached)-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)-> retrieved jane-street-headers.v0.16.0 (cached)-> retrieved jst-config.v0.16.0 (cached)-> retrieved kdf.1.0.0 (cached)-> retrieved logs.0.9.0 (cached)-> retrieved lwt.5.9.1 (cached)-> retrieved mirage-flow.5.0.0 (cached)-> retrieved mirage-kv.6.1.1 (cached)-> retrieved mirage-ptime.5.0.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 mirage-crypto.2.0.1, mirage-crypto-ec.2.0.1, mirage-crypto-pk.2.0.1, mirage-crypto-rng.2.0.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ohex.0.2.0 (cached)-> retrieved ocplib-endian.1.2 (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_bin_prot.v0.16.0 (cached)-> retrieved ppx_cold.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.1 (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 ppx_sexp_value.v0.16.0 (cached)-> retrieved ppx_stable.v0.16.0 (cached)-> retrieved ppx_stable_witness.v0.16.0 (cached)-> retrieved ppx_string.v0.16.0 (cached)-> retrieved ppx_tydi.v0.16.0 (cached)-> retrieved dune.3.20.0, dune-configurator.3.20.0 (cached)-> retrieved ppxlib.0.35.0 (cached)-> retrieved ppx_variants_conv.v0.16.0 (cached)-> retrieved ppx_typerep_conv.v0.16.0 (cached)-> retrieved protocol_version_header.v0.16.0 (cached)-> installed ocamlbuild.0.16.1-> retrieved re.1.13.2 (cached)-> retrieved seq.base (cached)-> installed seq.base-> retrieved randomconv.0.2.0 (cached)-> retrieved ptime.1.2.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)-> installed num.1.6-> 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.1.3.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.0-> installed csexp.1.5.2-> installed duration.0.2.1-> installed eqaf.0.10-> installed domain-name.0.4.1-> installed cstruct.6.2.0-> installed cppo.1.8.0-> installed base64.3.5.1-> installed asn1-combinators.0.3.2-> installed gmap.0.3.0-> installed jane-street-headers.v0.16.0-> installed mirage-ptime.5.0.0-> installed macaddr.5.6.1-> installed ohex.0.2.0-> installed optint.0.3.0-> installed ocplib-endian.1.2-> installed ocaml-compiler-libs.v0.12.4-> installed ocaml-syntax-shims.1.0.0-> installed randomconv.0.2.0-> installed ppx_derivers.1.2.1-> installed stdlib-shims.0.3.0-> installed spawn.v0.17.0-> installed ipaddr.5.6.1-> installed sexplib0.v0.16.0-> installed digestif.1.3.0-> installed re.1.13.2-> installed dune-configurator.3.20.0-> installed ounit2.2.2.7-> installed alcotest.1.9.0-> installed ocaml_intrinsics.v0.16.2-> installed parsexp.v0.16.0-> installed mirage-crypto.2.0.1-> installed kdf.1.0.0-> installed sexplib.v0.16.0-> installed lwt.5.9.1-> installed mirage-flow.5.0.0-> installed mirage-kv.6.1.1-> installed logs.0.9.0-> installed mirage-crypto-rng.2.0.1-> installed base.v0.16.4-> installed mirage-crypto-pk.2.0.1-> 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.1-> installed x509.1.0.6-> installed ppxlib.0.35.0-> installed ppx_disable_unused_warnings.v0.16.0-> installed ppx_cold.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_fields_conv.v0.16.0-> installed ppx_here.v0.16.0-> installed ppx_ignore_instrumentation.v0.16.0-> installed ppx_pipebang.v0.16.0-> installed ppx_optcomp.v0.16.0-> installed ppx_optional.v0.16.0-> installed ppx_tydi.v0.16.0-> installed ppx_stable_witness.v0.16.0-> installed ppx_let.v0.16.0-> installed ppx_stable.v0.16.0-> installed ppx_variants_conv.v0.16.0-> installed ppx_typerep_conv.v0.16.0-> installed ppx_sexp_conv.v0.16.0-> installed ppx_hash.v0.16.0-> installed ppx_sexp_value.v0.16.0-> installed ppx_assert.v0.16.0-> installed ppx_sexp_message.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.1-> 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 timezone.v0.16.0-> installed expect_test_helpers_core.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-08-22 08:47.04 ---> using "d296b1c8ec0e2deb1d6040efed6ce01859e38f14bfb9bf4a59199db95ae8abbe" from cache/: (copy (src .) (dst ./src))2025-08-22 08:47.05 ---> saved as "350897886684f54d6f6543254b128d9c0c79083f7fe33a53d419f9e877cbdc80"/: (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 `HUXZAWAK'.[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.008849.04 s(cd _build/default/tests && ./unittestrunner.exe)............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................Ran: 476 tests in: 0.44 seconds.OK2025-08-22 08:47.10 ---> saved as "f27f0bddb41ae78b8c35d872970edb910778f3fed8598ba8905da62d7411de99"Job succeeded2025-08-22 08:47.15: Job succeeded