Organisationsmiragealcotesta0897c (main)macos-homebrew-5.3_opam-2.4

macos-homebrew-5.3_opam-2.4

Logs

Show full logs
2025-10-14 14:31.11: New job: test mirage/alcotest https://github.com/mirage/alcotest.git#refs/heads/main (a0897cfcba3e7cc9b7b0f3678da86277c9299af4) (macos-x86_64:macos-homebrew-5.3_opam-2.4)
Base: macos-homebrew-ocaml-5.3
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/mirage/alcotest.git" -b "main" && cd "alcotest" && git reset --hard a0897cfc
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.3
# macos-homebrew-5.3_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
RUN ln -f ~/local/bin/opam-2.4 ~/local/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
RUN cd ~/opam-repository && (git cat-file -e deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && git log --no-decorate -n1 --oneline && opam update -u
COPY --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.9.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-clock.4.2.0 num.1.6 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 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.0 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 $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . ./src
RUN cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build

END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK

2025-10-14 14:31.11: Using cache hint "mirage/alcotest-macos-homebrew-ocaml-5.3-macos-homebrew-5.3_opam-2.4-158e4229ec62370200578d5a0e7abde9"
2025-10-14 14:31.11: Using OBuilder spec:
((from macos-homebrew-ocaml-5.3)
 (comment macos-homebrew-5.3_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 deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && 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.9.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-clock.4.2.0 num.1.6 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 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.0 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-10-14 14:31.11: Waiting for resource in pool OCluster
2025-10-14 14:31.11: Waiting for workerโ€ฆ
2025-10-14 19:01.04: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
HEAD is now at a0897cf Add missing conf-npm with-test dep to alcotest-js and regenerate opam file (#427)

(from macos-homebrew-ocaml-5.3)
2025-10-14 19:01.05 ---> using "6ee950b55569b1a3f8a7953dc679318bf303d3a70ac7d49901c0ac2ca3805d7c" from cache

/: (comment macos-homebrew-5.3_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-14 19:01.06 ---> using "98f27ffc931cc35f6fd0434c4b7cb74004ae5b966eac1b4d0d724f37574600ad" 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 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2025-10-14 19:01.06 ---> using "05bef02621f4f152ba73fa5008f45408f9224fb6a3f95400ffe628ff48189e9f" from cache

/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Darwin 24.5.0
The OCaml toplevel, version 5.3.0
2.4.1
2025-10-14 19:01.06 ---> using "a78de44d0fa6eb2299c3aff4eac17004df22cc4faa362aec41a39eccbcb56bb5" 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 deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   f1d3c77350..deb3de7fc5  master     -> origin/master
deb3de7fc5 Merge pull request #28686 from NathanReb/release-ppxlib-0.37.0

<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///Users/mac1000/opam-repository

Everything as up-to-date as possible

The following packages are not being upgraded because the new versions conflict with other installed packages:
  - ocaml-compiler.5.4.0
However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml-base-compiler.5.4.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-14 19:01.06 ---> using "c8587477cd7af6a53dce768562513ae85c22abd4b63cf54efaf29e0ab743ee40" from cache

/: (copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)
         (dst ./src/./))
2025-10-14 19:01.09 ---> saved as "c712ba7e98306ec9315f15c7c5d77c0f8384a7319e2dc469d32d46c61edf5d17"

/: (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-10-14 19:01.31 ---> saved as "f29afc07930e16f17c1601f7cffd9ee7587d2de1b0a89788714de28c42adb9ae"

/: (run (network host)
        (shell "echo '(lang dune 3.0)' > './src/./dune-project'"))
2025-10-14 19:01.33 ---> saved as "cef9c7f186e949dba4fca0be0cb1bed896a2030886c4d05d259f4988f1fcb5f2"

/: (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.9.0 lwt.5.9.2 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-clock.4.2.0 num.1.6 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 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.0 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...
- ==> 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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).

The following system packages will first need to be installed:
    node

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

+ /usr/local/bin/brew "install" "node"
- ==> Fetching downloads for: node
- ==> Downloading https://ghcr.io/v2/homebrew/core/node/manifests/24.10.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/bd419bc4f320b2a636e664d0468dea9e55de8afe7edb0660fe38fc441f2df54b--node-24.10.0-1.bottle_manifest.json
- ==> Fetching dependencies for node: brotli, c-ares, icu4c@77, libnghttp2, libnghttp3, ca-certificates, openssl@3, libngtcp2, libuv, simdjson, readline, sqlite, uvwasi, lz4, xz and zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/72b36368116298518fd66e638dfbe8cb541d8db2d33e279683bbdb4b79c73e0d--brotli-1.1.0-2.bottle_manifest.json
- ==> Fetching brotli
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/blobs/sha256:8934e84777d1c6f63d6e4c07213731c9af1b7a66d5f0a6b3ef0bb6d56bb63a86
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4822f8f201cbdc0e3eb6468466e796865c20a2c0cd1a7244ef39c3b88482e895--brotli--1.1.0.sonoma.bottle.2.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/c-ares/manifests/1.34.5-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c52b1c91460667312755a235f78ac192a45bff39befbba6da9aa72a17263c559--c-ares-1.34.5-1.bottle_manifest.json
- ==> Fetching c-ares
- ==> Downloading https://ghcr.io/v2/homebrew/core/c-ares/blobs/sha256:c152939c8cbf3784c07d1c335fa4d8a279926613ef8a63fd8b86ce0c9fc2c1ce
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/bf88eedc18ad300abe4125955def9c187bb3cb9a68e3f81022c5a5d37c6383ef--c-ares--1.34.5.sonoma.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/77/manifests/77.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/35ec2c3adb94255ba47424a4334da9616d97e1ec6d59ed907b368535018bed0a--icu4c@77-77.1.bottle_manifest.json
- ==> Fetching icu4c@77
- ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/77/blobs/sha256:54d609febedd08e8a4a825435d85f6d4db045f586523edb8965434e8e9c93fa6
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/11e74c87967dc86e6b3deabe4c454ae87bbf7535c100ec0d330418593c466408--icu4c@77--77.1.sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.67.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4ab02c0d5b434fceba7c6d80df57d28c94c7e93f966dce66b789029ded4773e3--libnghttp2-1.67.1.bottle_manifest.json
- ==> Fetching libnghttp2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/blobs/sha256:1f1af7129a29e9c9b05a6fe28eceaf3dd8806d84972f48d22eaa1f04569939e6
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/269366369d27a9822da5dee13c02613eeaf7cdce699d726cd2aeff480227df8e--libnghttp2--1.67.1.sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp3/manifests/1.12.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/870c7405e7536d3964d6a4063f552f6ba7db08a1057381685a9f9c177df71c9f--libnghttp3-1.12.0.bottle_manifest.json
- ==> Fetching libnghttp3
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp3/blobs/sha256:81311931d8acb0cb2cb216c87bb17c9fe2abb19bff1edcf35436d75b0997f06c
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d7cd98fcdf1afa7b9ffc2f90f8c36a3da23c20d4c16cb32a2782297b601d6f0c--libnghttp3--1.12.0.sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-09-09-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4d4fbd31e178e7d46676ee46b8a629a56cf084bda67d2ae2d543a7a9b8d0718a--ca-certificates-2025-09-09-1.bottle_manifest.json
- ==> Fetching ca-certificates
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:bf8219c33f6de8c2554cff8bcff1e9061ba61e9201acdabf6955347a3b72eb03
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6085493d1b30b576e5ad85aa34370174eec955f21a0516162a86816a4bd1cd1b--ca-certificates--2025-09-09.all.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.6.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/403c903e557d19d801f4c6b4f635c9553af72a487024139a5773e636c884ef9e--openssl@3-3.6.0.bottle_manifest.json
- ==> Fetching openssl@3
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:a015d2e06290484b37547a57b60c6bc5bd45be0479e0c58529ffa4359a3f6225
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8dc0f2d4b5d1dc3675652c2239ed47f365d72b5ec28d9c875fddff6150f0b7a0--openssl@3--3.6.0.sequoia.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/manifests/1.16.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/290446528002e942cbf1c2e8a47e708849a12d950e04c3d3a116637d0df3de89--libngtcp2-1.16.0.bottle_manifest.json
- ==> Fetching libngtcp2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/blobs/sha256:942be6702f77383e6cf5651212cd469f4e79e23cd70bdcc1ed10fa0a2d752194
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e6c37997327e3f93aac87ebb2f9c0e82fa8ca1b0975e960c8963a361b2c668b5--libngtcp2--1.16.0.sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/manifests/1.51.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3134253b57ab9327739c97027f8b90160da109e06dda0dc4d2d222a6df0ab9b8--libuv-1.51.0-1.bottle_manifest.json
- ==> Fetching libuv
- ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/blobs/sha256:89296bb1520f6d2f60061a6dee3c8f0ad4a86e69e37c4c452223267a411b0c35
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e7781985f8826e89dc5fbdfc2a3c4aeba10203f346ae0fd8dd085a869bfac351--libuv--1.51.0.sonoma.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/manifests/4.0.7
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b037dadb18347fedfc8816e145a3fee0a418844d6deb50c11adeb4ac69564964--simdjson-4.0.7.bottle_manifest.json
- ==> Fetching simdjson
- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/blobs/sha256:a19a84d0b4cd38378280d0d1cf2407b90b933bdf70242fc2cc455e4561b6504f
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/2c415aab57bb222078e9666e599146a8e17d9ce19f02d99d7b0426319029fd68--simdjson--4.0.7.sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.3.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/52cb2bb3f0d9e66789968b865501c41ed80dc303eb488939476b309f1d350dc5--readline-8.3.1.bottle_manifest.json
- ==> Fetching readline
- ==> Downloading https://ghcr.io/v2/homebrew/core/readline/blobs/sha256:85d56c6896ac184bf38b1b0867d050235fb0a4873c152b52a46748aa1b458ec9
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ff22b4cc8c6a052f791b14e1f40c6f99cfd39c54aee98d59cd1345fed1578c9b--readline--8.3.1.sequoia.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/manifests/3.50.4-2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/cc0b46a30077b6cb9f6927fc0c81145398349a0ba416b914b1e5485d0d678231--sqlite-3.50.4-2.bottle_manifest.json
- ==> Fetching sqlite
- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:6c3265b83d4f30bde5b89f3b0138b0eb8c4c1db12a08f61071c87fecd7bc2474
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/5f291f48f99c557166eba6507c97b7daa379f0f081fc23c12a8d33cc44475baa--sqlite--3.50.4.sequoia.bottle.2.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/uvwasi/manifests/0.0.23-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d9fc39e8e8eb3c4e33b14bafb8f46ce7c30a8814a9d2ff809f4a27525ec96893--uvwasi-0.0.23-1.bottle_manifest.json
- ==> Fetching uvwasi
- ==> Downloading https://ghcr.io/v2/homebrew/core/uvwasi/blobs/sha256:74534d557b0603f0fac5d6b4e98257bee2f372c55e0eabf97b0ac5ccbd10415d
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a134b63098d1b1f42c473f81cff03a8306b51badf4fb712f34cd4d54ac88f3cd--uvwasi--0.0.23.sonoma.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/manifests/1.10.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8e11e90eb21a06e0f199af9d80e011e3693c77dd353b2477579d95c8471a5802--lz4-1.10.0-1.bottle_manifest.json
- ==> Fetching lz4
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/blobs/sha256:f75cb29a4d25d37e1db38d95c5970cc45de7ec63ce43cfa881a877b424154a42
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/042532902d873e5c9a0241944df9f8952f25a1befbce2f95faa3f3154161bc3a--lz4--1.10.0.sequoia.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.8.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/86a115cc1d43ff8a480fd907f812e70a403e1675d8a7223f61bbb08cbd2adc27--xz-5.8.1.bottle_manifest.json
- ==> Fetching xz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:6558e19cb2f13893677ec1fe075d268a69ce242a064ce1dc53940234da4b2c5f
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4b6542fb56398cfc7335831c3feeff47ff3e191a92b7c43c5e74539fe62d952c--xz--5.8.1.sequoia.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.7-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/14f45413747fef87558cd195b1104e55d9739f9574f146051dbd6569ded74a94--zstd-1.5.7-1.bottle_manifest.json
- ==> Fetching zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/blobs/sha256:342e64c01287a716615d14d4a71770fc5930871dc0a965fbdda6062f80dc1952
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/526ee0bcc5dbf4b6f0ca556d34954a7267d57322b268645072b5e0bd8e908c44--zstd--1.5.7.sequoia.bottle.1.tar.gz
- ==> Fetching node
- ==> Downloading https://ghcr.io/v2/homebrew/core/node/blobs/sha256:7c4367eecd2baf026b90288615e5e8f04caf917170129d2bfab8017648eecbf7
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/5387204e79bfb87ca7c0852dd81e27d24979b143ac0156c58ff3de5056f5e22a--node--24.10.0.sonoma.bottle.1.tar.gz
- ==> Installing dependencies for node: brotli, c-ares, icu4c@77, libnghttp2, libnghttp3, ca-certificates, openssl@3, libngtcp2, libuv, simdjson, readline, sqlite, uvwasi, lz4, xz and zstd
- ==> Installing node dependency: brotli
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/72b36368116298518fd66e638dfbe8cb541d8db2d33e279683bbdb4b79c73e0d--brotli-1.1.0-2.bottle_manifest.json
- ==> Pouring brotli--1.1.0.sonoma.bottle.2.tar.gz
- ๐Ÿบ  /usr/local/Cellar/brotli/1.1.0: 28 files, 1.6MB
- ==> Installing node dependency: c-ares
- ==> Downloading https://ghcr.io/v2/homebrew/core/c-ares/manifests/1.34.5-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c52b1c91460667312755a235f78ac192a45bff39befbba6da9aa72a17263c559--c-ares-1.34.5-1.bottle_manifest.json
- ==> Pouring c-ares--1.34.5.sonoma.bottle.1.tar.gz
- ๐Ÿบ  /usr/local/Cellar/c-ares/1.34.5: 176 files, 939.0KB
- ==> Installing node dependency: icu4c@77
- ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/77/manifests/77.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/35ec2c3adb94255ba47424a4334da9616d97e1ec6d59ed907b368535018bed0a--icu4c@77-77.1.bottle_manifest.json
- ==> Pouring icu4c@77--77.1.sonoma.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/icu4c@77/77.1: 277 files, 80MB
- ==> Installing node dependency: libnghttp2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.67.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4ab02c0d5b434fceba7c6d80df57d28c94c7e93f966dce66b789029ded4773e3--libnghttp2-1.67.1.bottle_manifest.json
- ==> Pouring libnghttp2--1.67.1.sonoma.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/libnghttp2/1.67.1: 14 files, 704KB
- ==> Installing node dependency: libnghttp3
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp3/manifests/1.12.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/870c7405e7536d3964d6a4063f552f6ba7db08a1057381685a9f9c177df71c9f--libnghttp3-1.12.0.bottle_manifest.json
- ==> Pouring libnghttp3--1.12.0.sonoma.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/libnghttp3/1.12.0: 20 files, 552.8KB
- ==> Installing node dependency: ca-certificates
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-09-09-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4d4fbd31e178e7d46676ee46b8a629a56cf084bda67d2ae2d543a7a9b8d0718a--ca-certificates-2025-09-09-1.bottle_manifest.json
- ==> Pouring ca-certificates--2025-09-09.all.bottle.1.tar.gz
- ==> Regenerating CA certificate bundle from keychain, this may take a while...
- ๐Ÿบ  /usr/local/Cellar/ca-certificates/2025-09-09: 4 files, 232.4KB
- ==> Installing node dependency: openssl@3
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.6.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/403c903e557d19d801f4c6b4f635c9553af72a487024139a5773e636c884ef9e--openssl@3-3.6.0.bottle_manifest.json
- ==> Pouring openssl@3--3.6.0.sequoia.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/openssl@3/3.6.0: 7,609 files, 36MB
- ==> Installing node dependency: libngtcp2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/manifests/1.16.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/290446528002e942cbf1c2e8a47e708849a12d950e04c3d3a116637d0df3de89--libngtcp2-1.16.0.bottle_manifest.json
- ==> Pouring libngtcp2--1.16.0.sonoma.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/libngtcp2/1.16.0: 21 files, 1.2MB
- ==> Installing node dependency: libuv
- ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/manifests/1.51.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3134253b57ab9327739c97027f8b90160da109e06dda0dc4d2d222a6df0ab9b8--libuv-1.51.0-1.bottle_manifest.json
- ==> 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
- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/manifests/4.0.7
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b037dadb18347fedfc8816e145a3fee0a418844d6deb50c11adeb4ac69564964--simdjson-4.0.7.bottle_manifest.json
- ==> Pouring simdjson--4.0.7.sonoma.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/simdjson/4.0.7: 17 files, 6MB
- ==> Installing node dependency: readline
- ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.3.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/52cb2bb3f0d9e66789968b865501c41ed80dc303eb488939476b309f1d350dc5--readline-8.3.1.bottle_manifest.json
- ==> Pouring readline--8.3.1.sequoia.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/readline/8.3.1: 56 files, 2.4MB
- ==> Installing node dependency: sqlite
- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/manifests/3.50.4-2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/cc0b46a30077b6cb9f6927fc0c81145398349a0ba416b914b1e5485d0d678231--sqlite-3.50.4-2.bottle_manifest.json
- ==> Pouring sqlite--3.50.4.sequoia.bottle.2.tar.gz
- ๐Ÿบ  /usr/local/Cellar/sqlite/3.50.4: 13 files, 4.8MB
- ==> Installing node dependency: uvwasi
- ==> Downloading https://ghcr.io/v2/homebrew/core/uvwasi/manifests/0.0.23-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d9fc39e8e8eb3c4e33b14bafb8f46ce7c30a8814a9d2ff809f4a27525ec96893--uvwasi-0.0.23-1.bottle_manifest.json
- ==> Pouring uvwasi--0.0.23.sonoma.bottle.1.tar.gz
- ๐Ÿบ  /usr/local/Cellar/uvwasi/0.0.23: 15 files, 255.9KB
- ==> Installing node dependency: lz4
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/manifests/1.10.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8e11e90eb21a06e0f199af9d80e011e3693c77dd353b2477579d95c8471a5802--lz4-1.10.0-1.bottle_manifest.json
- ==> Pouring lz4--1.10.0.sequoia.bottle.1.tar.gz
- ๐Ÿบ  /usr/local/Cellar/lz4/1.10.0: 24 files, 662.3KB
- ==> Installing node dependency: xz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.8.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/86a115cc1d43ff8a480fd907f812e70a403e1675d8a7223f61bbb08cbd2adc27--xz-5.8.1.bottle_manifest.json
- ==> Pouring xz--5.8.1.sequoia.bottle.tar.gz
- ๐Ÿบ  /usr/local/Cellar/xz/5.8.1: 96 files, 2.3MB
- ==> Installing node dependency: zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.7-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/14f45413747fef87558cd195b1104e55d9739f9574f146051dbd6569ded74a94--zstd-1.5.7-1.bottle_manifest.json
- ==> Pouring zstd--1.5.7.sequoia.bottle.1.tar.gz
- ๐Ÿบ  /usr/local/Cellar/zstd/1.5.7: 32 files, 2.4MB
- ==> Installing node
- ==> Pouring node--24.10.0.sonoma.bottle.1.tar.gz
- ๐Ÿบ  /usr/local/Cellar/node/24.10.0: 2,468 files, 75.5MB
- ==> 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.d
2025-10-14 19:03.15 ---> saved as "bd5d38bd5630377951c0e416c609c23a6fd11eeb6b50b4edfd28060d9327c036"

/: (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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 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.9.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.0
  - 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 async_rpc_kernel.v0.17.0  (cached)
-> retrieved async_unix.v0.17.0  (cached)
-> retrieved astring.0.8.5  (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)
-> 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)
-> installed conf-npm.1
-> retrieved int_repr.v0.17.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.9.0  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved mirage-clock.4.2.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved js_of_ocaml-compiler.6.2.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ppx_bin_prot.v0.17.1  (cached)
-> retrieved ppx_bench.v0.17.1  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> installed num.1.6
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_custom_printf.v0.17.0  (cached)
-> retrieved ppx_diff.v0.17.1  (cached)
-> retrieved ppx_disable_unused_warnings.v0.17.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_fields_conv.v0.17.0  (cached)
-> retrieved ppx_fixed_literal.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_let.v0.17.1  (cached)
-> retrieved ppx_jane.v0.17.0  (cached)
-> retrieved ppx_log.v0.17.0  (cached)
-> retrieved ppx_module_timer.v0.17.0  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_optional.v0.17.0  (cached)
-> retrieved ppx_pipebang.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_sexp_message.v0.17.0  (cached)
-> retrieved ppx_sexp_value.v0.17.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppx_stable_witness.v0.17.0  (cached)
-> retrieved ppx_string.v0.17.0  (cached)
-> retrieved ppx_string_conv.v0.17.0  (cached)
-> retrieved ppx_tydi.v0.17.1  (cached)
-> retrieved ppx_typerep_conv.v0.17.1  (cached)
-> retrieved ppx_stable.v0.17.1  (cached)
-> retrieved ppx_variants_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 sedlex.3.7  (cached)
-> retrieved sexp_pretty.v0.17.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spawn.v0.17.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)
-> installed cmdliner.2.0.0
-> installed seq.base
-> retrieved topkg.1.1.0  (cached)
-> retrieved timezone.v0.17.0  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved uopt.v0.17.0  (cached)
-> retrieved typerep.v0.17.1  (cached)
-> retrieved variantslib.v0.17.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed dune.3.20.2
-> installed jane-street-headers.v0.17.0
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed fmt.0.11.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed mirage-clock.4.2.0
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed menhirCST.20250912
-> installed gen.1.1
-> installed ppx_derivers.1.2.1
-> installed cppo.1.8.0
-> installed astring.0.8.5
-> installed stdlib-shims.0.3.0
-> installed cstruct.6.2.0
-> installed spawn.v0.17.0
-> installed sexplib0.v0.17.0
-> installed ocplib-endian.1.2
-> installed re.1.14.0
-> installed dune-configurator.3.20.2
-> installed yojson.3.0.0
-> installed parsexp.v0.17.0
-> installed sexplib.v0.17.0
-> installed lwt.5.9.2
-> installed base.v0.17.3
-> installed variantslib.v0.17.0
-> installed fieldslib.v0.17.0
-> installed stdio.v0.17.0
-> installed typerep.v0.17.1
-> installed ppxlib.0.37.0
-> installed ppx_disable_unused_warnings.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_optcomp.v0.17.1
-> installed ppx_stable_witness.v0.17.0
-> installed ppx_ignore_instrumentation.v0.17.0
-> installed ppx_pipebang.v0.17.0
-> installed ppx_fixed_literal.v0.17.0
-> installed menhir.20250912
-> installed ppx_tydi.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_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_sexp_value.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 ppx_string_conv.v0.17.0
-> installed bin_prot.v0.17.0-1
-> 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 base_quickcheck.v0.17.1
-> installed ppx_log.v0.17.0
-> installed ppx_jane.v0.17.0
-> installed logs.0.9.0
-> installed gel.v0.17.0
-> installed uopt.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.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-10-14 19:08.20 ---> saved as "269be548c031691868fdecad02f9a49cc2159281919e0a9757b81240d77ed3ff"

/: (copy (src .) (dst ./src))
2025-10-14 19:08.22 ---> saved as "f96a61507f0b0256b12f58a425e48c84834c4c02e42bd8ba95c3b7f242410ccf"

/: (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/examples && ./floats.exe)
Testing `Float tests'.
This run has ID `TYLQG3JW'.

  [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 && ./simple.exe)
Testing `Utils'.
This run has ID `KIPJCNFA'.

  [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.009s. 4 tests run.
(cd _build/default/examples/lwt && ./test.exe)
Testing `LwtUtils'.
This run has ID `U09RRNN5'.

  [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-10-14 19:08.32 ---> saved as "aaa464d5ce57dbdf0988eb07e4617af80d8462218d39396790daa2670d03e730"
Job succeeded
2025-10-14 19:08.40: Job succeeded