2025-11-24 08:26.21: New job: test mirage/alcotest https://github.com/mirage/alcotest.git#refs/heads/dependabot/github_actions/actions/checkout-6 (f6791ac99fd2feea4fa50d90a56c72d59fb344d5) (macos-x86_64:macos-homebrew-5.4_opam-2.4)Base: macos-homebrew-ocaml-5.4Opam project buildTo reproduce locally:git clone --recursive "https://github.com/mirage/alcotest.git" -b "dependabot/github_actions/actions/checkout-6" && cd "alcotest" && git reset --hard f6791ac9cat > Dockerfile <<'END-OF-DOCKERFILE'FROM macos-homebrew-ocaml-5.4# macos-homebrew-5.4_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 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam ./src/./RUN opam pin add -yn alcotest.dev './src/./' && \opam pin add -yn alcotest-mirage.dev './src/./' && \opam pin add -yn alcotest-lwt.dev './src/./' && \opam pin add -yn alcotest-js.dev './src/./' && \opam pin add -yn alcotest-async.dev './src/./'RUN echo '(lang dune 3.0)' > './src/./dune-project'ENV DEPS="astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.0.0 conf-npm.1 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 gen.1.1 int_repr.v0.17.0 jane-street-headers.v0.17.0 js_of_ocaml-compiler.6.2.0 jst-config.v0.17.0 logs.0.10.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-clock.4.2.0 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0 yojson.3.0.0"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.4 --depext-only -y alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.dev $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . ./srcRUN cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2025-11-24 08:26.21: Using cache hint "mirage/alcotest-macos-homebrew-ocaml-5.4-macos-homebrew-5.4_opam-2.4-7e8541ae7a45d0ab0c87576d1a22f092"2025-11-24 08:26.21: Using OBuilder spec:((from macos-homebrew-ocaml-5.4)(comment macos-homebrew-5.4_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 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u"))(copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)(dst ./src/./))(run (network host)(shell "opam pin add -yn alcotest.dev './src/./' && \\nopam pin add -yn alcotest-mirage.dev './src/./' && \\nopam pin add -yn alcotest-lwt.dev './src/./' && \\nopam pin add -yn alcotest-js.dev './src/./' && \\nopam pin add -yn alcotest-async.dev './src/./'"))(run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))(env DEPS "astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.0.0 conf-npm.1 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 gen.1.1 int_repr.v0.17.0 jane-street-headers.v0.17.0 js_of_ocaml-compiler.6.2.0 jst-config.v0.17.0 logs.0.10.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-clock.4.2.0 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0 yojson.3.0.0")(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 alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-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 @install @check @runtest && rm -rf _build")))2025-11-24 08:26.21: Waiting for resource in pool OCluster2025-11-24 08:26.21: Waiting for worker…2025-11-24 08:26.21: Got resource from pool OClusterBuilding on i7-worker-02HEAD is now at 9461340 Bump actions/setup-node from 5 to 6 (#428)HEAD is now at f6791ac Bump actions/checkout from 5 to 6(from macos-homebrew-ocaml-5.4)2025-11-24 08:26.23 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache/: (comment macos-homebrew-5.4_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-11-24 08:26.23 ---> using "c45c11c7286cf606ab2156414383237a0e197bf48b9278e9465cc1693c9332b7" 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-11-24 08:26.24 ---> using "59a16318ff40c58338bc0b572a2d778111fa14b30a0dc4a11f6465d8abb80bbd" from cache/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Darwin 24.5.0The OCaml toplevel, version 5.4.02.4.12025-11-24 08:26.24 ---> using "03cbf303c2ae412068cf1b7f097ec773b09f8e6d693af9a4cf051761664f96f9" 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 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEAD12d0447fd1..1c92c86556 master -> origin/master1ec0eeb78d Merge pull request #28897 from dra27/ocamlfind-msys2-cygwin<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///Users/mac1000/opam-repositoryAlready up-to-date.Nothing to do.# To update the current shell environment, run: eval $(opam env)2025-11-24 08:26.24 ---> using "4924b1b7e7a66c33685d04b23a1026f7142c69b1edc275191155d944b5172d80" from cache/: (copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)(dst ./src/./))2025-11-24 08:26.26 ---> saved as "4baf74776ada2d111c77a0d86700ce9d352d61aa0bb59736ed5c33fcf3758f96"/: (run (network host)(shell "opam pin add -yn alcotest.dev './src/./' && \\nopam pin add -yn alcotest-mirage.dev './src/./' && \\nopam pin add -yn alcotest-lwt.dev './src/./' && \\nopam pin add -yn alcotest-js.dev './src/./' && \\nopam pin add -yn alcotest-async.dev './src/./'"))[alcotest.dev] synchronised (file:///Users/mac1000/src)alcotest is now pinned to file:///Users/mac1000/src (version dev)[alcotest-mirage.dev] synchronised (file:///Users/mac1000/src)alcotest-mirage is now pinned to file:///Users/mac1000/src (version dev)[alcotest-lwt.dev] synchronised (file:///Users/mac1000/src)alcotest-lwt is now pinned to file:///Users/mac1000/src (version dev)[alcotest-js.dev] synchronised (file:///Users/mac1000/src)alcotest-js is now pinned to file:///Users/mac1000/src (version dev)[alcotest-async.dev] synchronised (file:///Users/mac1000/src)alcotest-async is now pinned to file:///Users/mac1000/src (version dev)2025-11-24 08:26.56 ---> saved as "b787558963958d520b02651a92d3d7dfe2935a37a281c8348f2536e260efcc0e"/: (run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))2025-11-24 08:26.58 ---> saved as "1830af807efc5fb26cde5ac9418a4c2c5f58b56d43e77e8c113d1c5c76a8478d"/: (env DEPS "astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.0.0 conf-npm.1 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 gen.1.1 int_repr.v0.17.0 jane-street-headers.v0.17.0 js_of_ocaml-compiler.6.2.0 jst-config.v0.17.0 logs.0.10.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-clock.4.2.0 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0 yojson.3.0.0")/: (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 alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.dev $DEPS"))+ /usr/local/bin/brew "update"- ==> Updating Homebrew...- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:b48c918b7693c6d27e8027dc803a18cf64ddce49552fb45d88f3cabb9eead0fd- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/portable-ruby-3.4.7.catalina.bottle.tar.gz- ==> Pouring portable-ruby-3.4.7.catalina.bottle.tar.gz- ==> Homebrew collects anonymous analytics.- Read the analytics documentation (and how to opt-out) here:- https://docs.brew.sh/Analytics- No analytics have been recorded yet (nor will be during this `brew` run).-- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:- https://github.com/Homebrew/brew#donations-- Already up-to-date.<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>[alcotest-js.dev] synchronised (file:///Users/mac1000/src)[alcotest-async.dev] synchronised (file:///Users/mac1000/src)[alcotest.dev] synchronised (file:///Users/mac1000/src)[alcotest-lwt.dev] synchronised (file:///Users/mac1000/src)[alcotest-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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.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:node<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>+ /usr/local/bin/brew "install" "node"- ==> Fetching downloads for: node- ✔︎ Bottle Manifest node (25.2.1)- ✔︎ Bottle Manifest node (25.2.1)- ✔︎ Bottle Manifest brotli (1.2.0)- ✔︎ Bottle brotli (1.2.0)- ✔︎ Bottle Manifest c-ares (1.34.5)- ✔︎ Bottle c-ares (1.34.5)- ✔︎ Bottle Manifest icu4c@78 (78.1)- ✔︎ Bottle Manifest libnghttp2 (1.68.0)- ✔︎ Bottle libnghttp2 (1.68.0)- ✔︎ Bottle Manifest libnghttp3 (1.13.0)- ✔︎ Bottle Manifest ca-certificates (2025-11-04)- ✔︎ Bottle ca-certificates (2025-11-04)- ✔︎ Bottle Manifest openssl@3 (3.6.0)- ✔︎ Bottle Manifest libngtcp2 (1.18.0)- ✔︎ Bottle Manifest libuv (1.51.0)- ✔︎ Bottle libuv (1.51.0)- ✔︎ Bottle Manifest simdjson (4.2.2)- ✔︎ Bottle simdjson (4.2.2)- ✔︎ Bottle Manifest readline (8.3.1)- ✔︎ Bottle readline (8.3.1)- ✔︎ Bottle Manifest sqlite (3.51.0)- ✔︎ Bottle sqlite (3.51.0)- ✔︎ Bottle Manifest uvwasi (0.0.23)- ✔︎ Bottle uvwasi (0.0.23)- ✔︎ Bottle Manifest lz4 (1.10.0)- ✔︎ Bottle Manifest xz (5.8.1)- ✔︎ Bottle Manifest zstd (1.5.7)- ✔︎ Bottle lz4 (1.10.0)- ✔︎ Bottle icu4c@78 (78.1)- ✔︎ Bottle xz (5.8.1)- ✔︎ Bottle zstd (1.5.7)- ✔︎ Bottle libnghttp3 (1.13.0)- ✔︎ Bottle libngtcp2 (1.18.0)- ✔︎ Bottle node (25.2.1)- ✔︎ Bottle openssl@3 (3.6.0)- ==> Installing dependencies for node: brotli, c-ares, icu4c@78, libnghttp2, libnghttp3, ca-certificates, openssl@3, libngtcp2, libuv, simdjson, readline, sqlite, uvwasi, lz4, xz and zstd- ==> Installing node dependency: brotli- ==> Pouring brotli--1.2.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/brotli/1.2.0: 33 files, 1.8MB- ==> Installing node dependency: c-ares- ==> Pouring c-ares--1.34.5.sonoma.bottle.1.tar.gz- 🍺 /usr/local/Cellar/c-ares/1.34.5: 176 files, 961.5KB- ==> Installing node dependency: icu4c@78- ==> Pouring icu4c@78--78.1.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/icu4c@78/78.1: 279 files, 86.7MB- ==> Installing node dependency: libnghttp2- ==> Pouring libnghttp2--1.68.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libnghttp2/1.68.0: 14 files, 752.6KB- ==> Installing node dependency: libnghttp3- ==> Pouring libnghttp3--1.13.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libnghttp3/1.13.0: 20 files, 566.6KB- ==> Installing node dependency: ca-certificates- ==> Pouring ca-certificates--2025-11-04.all.bottle.1.tar.gz- ==> Regenerating CA certificate bundle from keychain, this may take a while...- 🍺 /usr/local/Cellar/ca-certificates/2025-11-04: 4 files, 241KB- ==> Installing node dependency: openssl@3- ==> Pouring openssl@3--3.6.0.sequoia.bottle.tar.gz- 🍺 /usr/local/Cellar/openssl@3/3.6.0: 7,609 files, 37.9MB- ==> Installing node dependency: libngtcp2- ==> Pouring libngtcp2--1.18.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libngtcp2/1.18.0: 21 files, 1.3MB- ==> Installing node dependency: libuv- ==> Pouring libuv--1.51.0.sonoma.bottle.1.tar.gz- 🍺 /usr/local/Cellar/libuv/1.51.0: 34 files, 1.2MB- ==> Installing node dependency: simdjson- ==> Pouring simdjson--4.2.2.sonoma.bottle.2.tar.gz- 🍺 /usr/local/Cellar/simdjson/4.2.2: 19 files, 6.7MB- ==> Installing node dependency: readline- ==> Pouring readline--8.3.1.sequoia.bottle.tar.gz- 🍺 /usr/local/Cellar/readline/8.3.1: 56 files, 2.6MB- ==> Installing node dependency: sqlite- ==> Pouring sqlite--3.51.0.sequoia.bottle.tar.gz- 🍺 /usr/local/Cellar/sqlite/3.51.0: 13 files, 5.1MB- ==> Installing node dependency: uvwasi- ==> Pouring uvwasi--0.0.23.sonoma.bottle.1.tar.gz- 🍺 /usr/local/Cellar/uvwasi/0.0.23: 15 files, 262KB- ==> Installing node dependency: lz4- ==> Pouring lz4--1.10.0.sequoia.bottle.1.tar.gz- 🍺 /usr/local/Cellar/lz4/1.10.0: 24 files, 678.2KB- ==> Installing node dependency: xz- ==> Pouring xz--5.8.1.sequoia.bottle.tar.gz- 🍺 /usr/local/Cellar/xz/5.8.1: 96 files, 2.4MB- ==> Installing node dependency: zstd- ==> Pouring zstd--1.5.7.sequoia.bottle.1.tar.gz- 🍺 /usr/local/Cellar/zstd/1.5.7: 32 files, 2.5MB- ==> Installing node- ==> Pouring node--25.2.1.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/node/25.2.1: 2,269 files, 82.1MB- ==> Running `brew cleanup node`...- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).- ==> Caveats- Bash completion has been installed to:- /usr/local/etc/bash_completion.d2025-11-24 08:28.45 ---> saved as "623ca2f4d51ee21920f1b0a85f195dc1a391ca03a8f3d2d81bce01f662d7430e"/: (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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.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 105 packages- install astring 0.8.5- install async v0.17.0- install async_kernel v0.17.0- install async_log v0.17.0- install async_rpc_kernel v0.17.0- install async_unix v0.17.0- install base v0.17.3- install base-bytes base- install base_bigstring v0.17.0- install base_quickcheck v0.17.1- install bin_prot v0.17.0-1- install capitalization v0.17.0- install cmdliner 2.0.0- install conf-npm 1- install core v0.17.1- install core_kernel v0.17.0- install core_unix v0.17.1- install cppo 1.8.0- install csexp 1.5.2- install cstruct 6.2.0- install dune 3.20.2- install dune-configurator 3.20.2- install duration 0.2.1- install expect_test_helpers_core v0.17.0- install fieldslib v0.17.0- install fmt 0.11.0- install gel v0.17.0- install gen 1.1- install int_repr v0.17.0- install jane-street-headers v0.17.0- install js_of_ocaml-compiler 6.2.0- install jst-config v0.17.0- install logs 0.10.0- install lwt 5.9.2- install menhir 20250912- install menhirCST 20250912- install menhirLib 20250912- install menhirSdk 20250912- install mirage-clock 4.2.0- install num 1.6- install ocaml-compiler-libs v0.17.0- install ocaml-syntax-shims 1.0.0- install ocaml_intrinsics_kernel v0.17.1- install ocamlbuild 0.16.1- install ocamlfind 1.9.8- install ocplib-endian 1.2- install parsexp v0.17.0- install ppx_assert v0.17.0- install ppx_base v0.17.0- install ppx_bench v0.17.1- install ppx_bin_prot v0.17.1- install ppx_cold v0.17.0- install ppx_compare v0.17.0- install ppx_custom_printf v0.17.0- install ppx_derivers 1.2.1- install ppx_diff v0.17.1- install ppx_disable_unused_warnings v0.17.0- install ppx_enumerate v0.17.0- install ppx_expect v0.17.3- install ppx_fields_conv v0.17.0- install ppx_fixed_literal v0.17.0- install ppx_globalize v0.17.2- install ppx_hash v0.17.0- install ppx_here v0.17.0- install ppx_ignore_instrumentation v0.17.0- install ppx_inline_test v0.17.1- install ppx_jane v0.17.0- install ppx_let v0.17.1- install ppx_log v0.17.0- install ppx_module_timer v0.17.0- install ppx_optcomp v0.17.1- install ppx_optional v0.17.0- install ppx_pipebang v0.17.0- install ppx_sexp_conv v0.17.1- install ppx_sexp_message v0.17.0- install ppx_sexp_value v0.17.0- install ppx_stable v0.17.1- install ppx_stable_witness v0.17.0- install ppx_string v0.17.0- install ppx_string_conv v0.17.0- install ppx_tydi v0.17.1- install ppx_typerep_conv v0.17.1- install ppx_variants_conv v0.17.1- install ppxlib 0.37.0- install ppxlib_jane v0.17.4- install protocol_version_header v0.17.0- install re 1.14.0- install sedlex 3.7- install seq base- install sexp_pretty v0.17.0- install sexplib v0.17.0- install sexplib0 v0.17.0- install spawn v0.17.0- install splittable_random v0.17.0- install stdio v0.17.0- install stdlib-shims 0.3.0- install textutils v0.17.0- install time_now v0.17.0- install timezone v0.17.0- install topkg 1.1.1- install typerep v0.17.1- install uopt v0.17.0- install uutf 1.0.4- install variantslib v0.17.0- install yojson 3.0.0<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved async_kernel.v0.17.0 (cached)-> retrieved async.v0.17.0 (cached)-> retrieved async_log.v0.17.0 (cached)-> retrieved astring.0.8.5 (cached)-> retrieved async_rpc_kernel.v0.17.0 (cached)-> retrieved async_unix.v0.17.0 (cached)-> retrieved base_bigstring.v0.17.0 (cached)-> retrieved base_quickcheck.v0.17.1 (cached)-> retrieved bin_prot.v0.17.0-1 (cached)-> retrieved capitalization.v0.17.0 (cached)-> retrieved base.v0.17.3 (cached)-> retrieved core.v0.17.1 (cached)-> retrieved core_kernel.v0.17.0 (cached)-> retrieved core_unix.v0.17.1 (cached)-> retrieved cppo.1.8.0 (cached)-> retrieved csexp.1.5.2 (cached)-> installed conf-npm.1-> retrieved cmdliner.2.0.0 (cached)-> retrieved duration.0.2.1 (cached)-> retrieved cstruct.6.2.0 (cached)-> retrieved expect_test_helpers_core.v0.17.0 (cached)-> retrieved fieldslib.v0.17.0 (cached)-> retrieved fmt.0.11.0 (cached)-> retrieved gel.v0.17.0 (cached)-> retrieved gen.1.1 (cached)-> retrieved int_repr.v0.17.0 (cached)-> retrieved jane-street-headers.v0.17.0 (cached)-> retrieved jst-config.v0.17.0 (cached)-> retrieved logs.0.10.0 (cached)-> retrieved lwt.5.9.2 (cached)-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)-> retrieved mirage-clock.4.2.0 (cached)-> retrieved num.1.6 (cached)-> retrieved ocaml-compiler-libs.v0.17.0 (cached)-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)-> retrieved ocamlbuild.0.16.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ocplib-endian.1.2 (cached)-> retrieved js_of_ocaml-compiler.6.2.0 (cached)-> retrieved parsexp.v0.17.0 (cached)-> retrieved ppx_assert.v0.17.0 (cached)-> retrieved ppx_base.v0.17.0 (cached)-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)-> retrieved ppx_cold.v0.17.0 (cached)-> installed ocamlbuild.0.16.1-> retrieved ppx_compare.v0.17.0 (cached)-> retrieved ppx_bin_prot.v0.17.1 (cached)-> retrieved ppx_custom_printf.v0.17.0 (cached)-> retrieved ppx_derivers.1.2.1 (cached)-> retrieved ppx_bench.v0.17.1 (cached)-> retrieved ppx_disable_unused_warnings.v0.17.0 (cached)-> retrieved ppx_diff.v0.17.1 (cached)-> retrieved ppx_enumerate.v0.17.0 (cached)-> installed num.1.6-> retrieved ppx_fixed_literal.v0.17.0 (cached)-> retrieved ppx_fields_conv.v0.17.0 (cached)-> retrieved ppx_globalize.v0.17.2 (cached)-> retrieved ppx_expect.v0.17.3 (cached)-> retrieved ppx_here.v0.17.0 (cached)-> retrieved ppx_ignore_instrumentation.v0.17.0 (cached)-> retrieved ppx_hash.v0.17.0 (cached)-> retrieved ppx_jane.v0.17.0 (cached)-> retrieved ppx_inline_test.v0.17.1 (cached)-> retrieved ppx_let.v0.17.1 (cached)-> retrieved ppx_module_timer.v0.17.0 (cached)-> retrieved ppx_log.v0.17.0 (cached)-> retrieved ppx_optional.v0.17.0 (cached)-> retrieved ppx_pipebang.v0.17.0 (cached)-> retrieved ppx_optcomp.v0.17.1 (cached)-> retrieved ppx_sexp_value.v0.17.0 (cached)-> retrieved ppx_sexp_message.v0.17.0 (cached)-> retrieved ppx_sexp_conv.v0.17.1 (cached)-> retrieved ppx_stable_witness.v0.17.0 (cached)-> retrieved ppx_stable.v0.17.1 (cached)-> retrieved ppx_string_conv.v0.17.0 (cached)-> retrieved ppx_string.v0.17.0 (cached)-> retrieved ppx_tydi.v0.17.1 (cached)-> retrieved ppx_variants_conv.v0.17.1 (cached)-> retrieved ppx_typerep_conv.v0.17.1 (cached)-> retrieved ppxlib_jane.v0.17.4 (cached)-> retrieved protocol_version_header.v0.17.0 (cached)-> retrieved re.1.14.0 (cached)-> retrieved seq.base (cached)-> retrieved sexp_pretty.v0.17.0 (cached)-> installed cmdliner.2.0.0-> installed seq.base-> retrieved sexplib.v0.17.0 (cached)-> retrieved sedlex.3.7 (cached)-> retrieved sexplib0.v0.17.0 (cached)-> retrieved ppxlib.0.37.0 (cached)-> retrieved splittable_random.v0.17.0 (cached)-> retrieved stdio.v0.17.0 (cached)-> retrieved stdlib-shims.0.3.0 (cached)-> retrieved textutils.v0.17.0 (cached)-> retrieved time_now.v0.17.0 (cached)-> retrieved timezone.v0.17.0 (cached)-> retrieved spawn.v0.17.0 (cached)-> retrieved typerep.v0.17.1 (cached)-> retrieved uopt.v0.17.0 (cached)-> retrieved uutf.1.0.4 (cached)-> retrieved variantslib.v0.17.0 (cached)-> retrieved topkg.1.1.1 (cached)-> retrieved yojson.3.0.0 (cached)-> installed ocamlfind.1.9.8-> installed base-bytes.base-> installed topkg.1.1.1-> installed uutf.1.0.4-> installed fmt.0.11.0-> installed astring.0.8.5-> installed dune.3.20.2-> installed duration.0.2.1-> installed jane-street-headers.v0.17.0-> installed csexp.1.5.2-> installed mirage-clock.4.2.0-> installed ppx_derivers.1.2.1-> installed ocaml_intrinsics_kernel.v0.17.1-> installed ocaml-syntax-shims.1.0.0-> installed ocaml-compiler-libs.v0.17.0-> installed menhirSdk.20250912-> installed menhirLib.20250912-> installed menhirCST.20250912-> installed gen.1.1-> installed cstruct.6.2.0-> installed cppo.1.8.0-> installed stdlib-shims.0.3.0-> installed spawn.v0.17.0-> installed sexplib0.v0.17.0-> installed ocplib-endian.1.2-> installed dune-configurator.3.20.2-> installed yojson.3.0.0-> installed re.1.14.0-> installed parsexp.v0.17.0-> installed sexplib.v0.17.0-> installed lwt.5.9.2-> installed base.v0.17.3-> installed fieldslib.v0.17.0-> installed variantslib.v0.17.0-> installed stdio.v0.17.0-> installed typerep.v0.17.1-> installed ppxlib.0.37.0-> installed menhir.20250912-> installed ppx_cold.v0.17.0-> installed ppx_disable_unused_warnings.v0.17.0-> installed ppx_here.v0.17.0-> installed ppx_tydi.v0.17.1-> installed ppx_pipebang.v0.17.0-> installed ppx_ignore_instrumentation.v0.17.0-> installed ppx_fixed_literal.v0.17.0-> installed ppx_stable_witness.v0.17.0-> installed ppx_optcomp.v0.17.1-> installed ppx_fields_conv.v0.17.0-> installed ppx_stable.v0.17.1-> installed ppx_typerep_conv.v0.17.1-> installed ppx_variants_conv.v0.17.1-> installed ppxlib_jane.v0.17.4-> installed ppx_let.v0.17.1-> installed sedlex.3.7-> installed ppx_optional.v0.17.0-> installed ppx_enumerate.v0.17.0-> installed ppx_globalize.v0.17.2-> installed ppx_compare.v0.17.0-> installed ppx_sexp_conv.v0.17.1-> installed ppx_hash.v0.17.0-> installed ppx_sexp_value.v0.17.0-> installed ppx_assert.v0.17.0-> installed ppx_sexp_message.v0.17.0-> installed ppx_base.v0.17.0-> installed ppx_custom_printf.v0.17.0-> installed capitalization.v0.17.0-> installed jst-config.v0.17.0-> installed sexp_pretty.v0.17.0-> installed ppx_string.v0.17.0-> installed time_now.v0.17.0-> installed bin_prot.v0.17.0-1-> installed ppx_string_conv.v0.17.0-> installed ppx_module_timer.v0.17.0-> installed ppx_inline_test.v0.17.1-> installed ppx_bin_prot.v0.17.1-> installed ppx_bench.v0.17.1-> installed ppx_expect.v0.17.3-> installed splittable_random.v0.17.0-> installed js_of_ocaml-compiler.6.2.0-> installed ppx_log.v0.17.0-> installed base_quickcheck.v0.17.1-> installed logs.0.10.0-> installed ppx_jane.v0.17.0-> installed uopt.v0.17.0-> installed gel.v0.17.0-> installed int_repr.v0.17.0-> installed base_bigstring.v0.17.0-> installed ppx_diff.v0.17.1-> installed core.v0.17.1-> installed protocol_version_header.v0.17.0-> installed timezone.v0.17.0-> installed expect_test_helpers_core.v0.17.0-> installed core_kernel.v0.17.0-> installed async_kernel.v0.17.0-> installed core_unix.v0.17.1-> installed textutils.v0.17.0-> installed async_rpc_kernel.v0.17.0-> installed async_unix.v0.17.0-> installed async_log.v0.17.0-> installed async.v0.17.0Done.# To update the current shell environment, run: eval $(opam env)2025-11-24 08:32.50 ---> saved as "07a4910214d27d0cf3f2668a528e4aaf6ef13d21f16129639bb6f119117dcf3c"/: (copy (src .) (dst ./src))2025-11-24 08:32.52 ---> saved as "a99a91457ea043c11f615c39db45348fc37609075353d01c8646371ff6d209b9"/: (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build"))(cd _build/default/examples && ./simple.exe)Testing `Utils'.This run has ID `59O08GWL'.[OK] string-case 0 Lower case.[OK] string-case 1 Capitalization.[OK] string-concat 0 String mashing.[OK] list-concat 0 List mashing.Full test results in `~/src/_build/default/examples/_build/_tests/Utils'.Test Successful in 0.001s. 4 tests run.(cd _build/default/examples && ./floats.exe)Testing `Float tests'.This run has ID `0NMBE1WW'.[OK] Edge cases 0 NaN.[OK] Edge cases 1 ∞.[OK] Other floats 0 others.Full test results in `~/src/_build/default/examples/_build/_tests/Float tests'.Test Successful in 0.001s. 3 tests run.(cd _build/default/examples/lwt && ./test.exe)Testing `LwtUtils'.This run has ID `8DDTGKQH'.[OK] basic 0 Plain.[OK] basic 1 Lwt.[OK] exceptions 0 Plain.[OK] exceptions 1 Lwt toplevel.[OK] exceptions 2 Lwt internal.[OK] switches 0 Allocate resource.[OK] switches 1 Check resource deallocated.Full test results in `~/src/_build/default/examples/lwt/_build/_tests/LwtUtils'.Test Successful in 0.001s. 7 tests run.2025-11-24 08:33.00 ---> saved as "f9f505744359a751cc31bbaed4785189138d8ef3488113ae6fb38645c5091eb6"Job succeeded2025-11-24 08:33.06: Job succeeded