2025-10-31 07:51.31: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/adaptive-bo-mpmcq (454b12278a87378840439ed4688907f19f9db381) (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/ocaml-multicore/picos.git" -b "adaptive-bo-mpmcq" && cd "picos" && git reset --hard 454b1227cat > 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 60c74a29f5d280ca9330c57b890e2e8c0fbc444c || git fetch origin master) && git reset -q --hard 60c74a29f5d280ca9330c57b890e2e8c0fbc444c && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam ./src/./RUN opam pin add -yn picos_std.dev './src/./' && \opam pin add -yn picos_mux.dev './src/./' && \opam pin add -yn picos_meta.dev './src/./' && \opam pin add -yn picos_lwt.dev './src/./' && \opam pin add -yn picos_io_cohttp.dev './src/./' && \opam pin add -yn picos_io.dev './src/./' && \opam pin add -yn picos_aux.dev './src/./' && \opam pin add -yn picos.dev './src/./'RUN echo '(lang dune 3.0)' > './src/./dune-project'ENV DEPS="alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.0.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-npm.1 conf-pkg-config.4 containers.3.16 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 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-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.0 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.4 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.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-10-31 07:51.31: Using cache hint "ocaml-multicore/picos-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_arm64_opam-2.4-55ff5c5df367607cbca520ef2ebaaad7"2025-10-31 07:51.31: 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 60c74a29f5d280ca9330c57b890e2e8c0fbc444c || git fetch origin master) && git reset -q --hard 60c74a29f5d280ca9330c57b890e2e8c0fbc444c && git log --no-decorate -n1 --oneline && opam update -u"))(copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam)(dst ./src/./))(run (network host)(shell "opam pin add -yn picos_std.dev './src/./' && \\nopam pin add -yn picos_mux.dev './src/./' && \\nopam pin add -yn picos_meta.dev './src/./' && \\nopam pin add -yn picos_lwt.dev './src/./' && \\nopam pin add -yn picos_io_cohttp.dev './src/./' && \\nopam pin add -yn picos_io.dev './src/./' && \\nopam pin add -yn picos_aux.dev './src/./' && \\nopam pin add -yn picos.dev './src/./'"))(run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))(env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.0.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-npm.1 conf-pkg-config.4 containers.3.16 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 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-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.0 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 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 picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.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-31 07:51.31: Waiting for resource in pool OCluster2025-10-31 07:51.31: Waiting for worker…2025-10-31 07:52.46: Got resource from pool OClusterBuilding on m1-worker-03All commits already cachedHEAD is now at 454b122 Use adaptive backoff in mpmcq(from macos-homebrew-ocaml-4.14)2025-10-31 07:52.46 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache/: (comment macos-homebrew-4.14_arm64_opam-2.4)/: (user (uid 1000) (gid 1000))/: (env CLICOLOR_FORCE 1)/: (env OPAMCOLOR always)/: (run (shell "ln -f ~/local/bin/opam-2.4 ~/local/bin/opam"))2025-10-31 07:52.46 ---> using "16fd332aba96a180769fbf49639a0f9a6aa6ed7d2edfa24c2b9bea4039176eb4" from cache/: (run (shell "opam init --reinit -ni"))No configuration file found, using built-in defaults.Checking for available remotes: rsync and local, git.- you won't be able to use mercurial repositories unless you install the hg command on your system.- you won't be able to use darcs repositories unless you install the darcs command on your system.This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.You may want to back it up before going further.Continue? [Y/n] y[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:opam option jobs=1 --globalFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] no changes from git+file:///Users/mac1000/opam-repository2025-10-31 07:52.47 ---> using "441082522a992e4675bb61cf184ac4d487fcb27eccab875ab68ef480e42527a0" from cache/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Darwin 24.5.0The OCaml toplevel, version 4.14.22.4.12025-10-31 07:52.47 ---> 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 60c74a29f5d280ca9330c57b890e2e8c0fbc444c || git fetch origin master) && git reset -q --hard 60c74a29f5d280ca9330c57b890e2e8c0fbc444c && git log --no-decorate -n1 --oneline && opam update -u"))60c74a29f5 Merge pull request #28709 from hannesm/release-domain-name-v0.5.0<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///Users/mac1000/opam-repositoryEverything as up-to-date as possibleThe following packages are not being upgraded because the new versions conflict with other installed packages:- ocaml.5.3.0- ocaml-config.3However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.3.0"), which will ask permission to downgrade or uninstall the conflicting packages.Nothing to do.# To update the current shell environment, run: eval $(opam env)2025-10-31 07:52.47 ---> using "82962a10081d9551250eb61dd0137f0b21a65aa9ae0fd043decb8cd910c52cb8" from cache/: (copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam)(dst ./src/./))2025-10-31 07:52.47 ---> using "faef1d0c2baabb5b0d2f956bf3898b64a5efa9e93213f34e041dbd20eebfd7da" from cache/: (run (network host)(shell "opam pin add -yn picos_std.dev './src/./' && \\nopam pin add -yn picos_mux.dev './src/./' && \\nopam pin add -yn picos_meta.dev './src/./' && \\nopam pin add -yn picos_lwt.dev './src/./' && \\nopam pin add -yn picos_io_cohttp.dev './src/./' && \\nopam pin add -yn picos_io.dev './src/./' && \\nopam pin add -yn picos_aux.dev './src/./' && \\nopam pin add -yn picos.dev './src/./'"))[picos_std.dev] synchronised (file:///Users/mac1000/src)picos_std is now pinned to file:///Users/mac1000/src (version dev)[picos_mux.dev] synchronised (file:///Users/mac1000/src)picos_mux is now pinned to file:///Users/mac1000/src (version dev)[picos_meta.dev] synchronised (file:///Users/mac1000/src)picos_meta is now pinned to file:///Users/mac1000/src (version dev)[picos_lwt.dev] synchronised (file:///Users/mac1000/src)picos_lwt is now pinned to file:///Users/mac1000/src (version dev)[picos_io_cohttp.dev] synchronised (file:///Users/mac1000/src)picos_io_cohttp is now pinned to file:///Users/mac1000/src (version dev)[picos_io.dev] synchronised (file:///Users/mac1000/src)picos_io is now pinned to file:///Users/mac1000/src (version dev)[picos_aux.dev] synchronised (file:///Users/mac1000/src)picos_aux is now pinned to file:///Users/mac1000/src (version dev)[picos.dev] synchronised (file:///Users/mac1000/src)picos is now pinned to file:///Users/mac1000/src (version dev)2025-10-31 07:52.47 ---> using "e73e944ebef79e1d67a4ae94c49236a5189b8dd865db292883280351c853e2fc" from cache/: (run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))2025-10-31 07:52.47 ---> using "bcba9d02fe9506f69e209a36de45e6d609e5cdad8f9a84b00abcc2fb691365d4" from cache/: (env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.0.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-npm.1 conf-pkg-config.4 containers.3.16 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 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-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.0 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 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 picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS"))+ /opt/homebrew/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-- Updated 2 taps (homebrew/core and homebrew/cask).- ==> New Formulae- cpptrace: Simple, portable, and self-contained stacktrace library for C++11 and newer- kibi: Text editor in ≤1024 lines of code, written in Rust- node@24: Open-source, cross-platform JavaScript runtime environment- postgres-language-server: Language Server for Postgres- qcoro6: C++ Coroutines for Qt<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>[picos_io.dev] synchronised (file:///Users/mac1000/src)[picos_aux.dev] synchronised (file:///Users/mac1000/src)[picos.dev] synchronised (file:///Users/mac1000/src)[picos_io_cohttp.dev] synchronised (file:///Users/mac1000/src)[picos_lwt.dev] synchronised (file:///Users/mac1000/src)[picos_mux.dev] synchronised (file:///Users/mac1000/src)[picos_meta.dev] synchronised (file:///Users/mac1000/src)[picos_std.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 node pkgconf<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>+ /opt/homebrew/bin/brew "install" "gmp" "node" "pkgconf"- ==> Fetching downloads for: gmp, node 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/node/manifests/25.1.0- ==> 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 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.2.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/43040be3ccb15626fbea32e35b07134720b9790ad66caf27be03edac1dfbfeb2--brotli-1.2.0.bottle_manifest.json- ==> Fetching brotli- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/blobs/sha256:b8e388c96be5a63a46e0335c390fecb20dda7adb1368a2ba0209b38cae17c708- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3f631a80881167b6c789cc23e6effbfb02b611a8c557010e2027571c29b15a14--brotli--1.2.0.arm64_sequoia.bottle.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:76858a7f6dd6df68f7e9d13aca30a299d5947b5b6d6ce979ee660dd4ecca2bb6- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8c423bccd2411d4f32b51122f2a0699c6d83d73384cbef7a244a126426af124c--c-ares--1.34.5.arm64_sequoia.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:19f6b5fef0cdf1dfc7f136ca103348ec8530ffdf8012273f6ee4a6159cdfaf75- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/925ec4df8e8aece0ebfb6b26320362f5303a72fe3b19162578809e42a6a64283--icu4c@77--77.1.arm64_sequoia.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.68.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/16e7ebe81106c5b0b363cf16b9a25118a344811cd317e5042943682b17675a76--libnghttp2-1.68.0.bottle_manifest.json- ==> Fetching libnghttp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/blobs/sha256:65c944b77dd8e8583f9e1fd0820cd81fe2b12f5b7a1992350386dd2e1a117257- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c2ace7db2ee5b0af9f60dac8366a0b9dd6e4b89b50d90e59c4e10f47c1fe02f2--libnghttp2--1.68.0.arm64_sequoia.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:1eb2c780340d21a766a0e7f4a7f2ae330377340d8a272fa0ad5d144ca709cca5- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/1dcb6a5f6421b75fddb7cf12e743b22a8974a05b105b75b136e4ac0945bc4593--libnghttp3--1.12.0.arm64_sequoia.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:9a8fa2ae1ef3424b116d7e6422d979e0290f4affdef072b1592e4535d2617d92- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/336e1d7e8cbec306e6796df73cd7b298afa264160212680ab0c6877745093d71--openssl@3--3.6.0.arm64_sequoia.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/manifests/1.17.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f9ac96017064e1c9c23c32050e1fedb487cd3f6a744fc6c8bfd3a3ee8fa90605--libngtcp2-1.17.0.bottle_manifest.json- ==> Fetching libngtcp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/blobs/sha256:382644b013aaa31d42ee620515259cd8588f5e27ca7707febd4370959fb02bed- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ef2fcdce2dcd0a4807756ee70d999671f8f7da7de159b604a3451eb151b8957b--libngtcp2--1.17.0.arm64_sequoia.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:47f6323a3b3ac0d2026ac75948e54b940bce1cc2ed3b809818bada0fca0b402b- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f7ee35133059e75186cc572e74fdeda776fa2727c0f78a61a5f083dc010f8e58--libuv--1.51.0.arm64_sequoia.bottle.1.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/manifests/4.1.0- ==> Fetching simdjson- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/blobs/sha256:9437eae75ec4a4c288876b96c55a2090493bf4d5f40e51ef148bf511ff0a8bd8- ==> 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:3afa0c228ce704810d09d40ce7d1265777df8b9034a7bfc18f0f4c19094710a8- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/15b0d2ed6379862cf580597218213a2e00a2ea2650c34e28c99dffde7289b592--readline--8.3.1.arm64_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:ac752e123cff9ffd69bfd3477fb151b8df8363c94b9f6a14ba1a6443b62964e2- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/7d18b5fda6d28796f941900b576fe88d530908541b33f94271b61f72136a5ed2--sqlite--3.50.4.arm64_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:3bbe2380eb184f540f5b23a9cd2f92ef21a4779b04ff6068b6c3a0b4e7865c7e- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/bdf3d0275d29c76c6451e960502ac718c215acec2ef199903b1dae3fa81536e2--uvwasi--0.0.23.arm64_sequoia.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:5bd143b7b784989e549637ea4e484af85ba481e640dde69bc35f3843ae25abc6- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8af6cbc3dc870dba18d9a1b3f311f2d43b56a020a1e565289122cfda703ab791--lz4--1.10.0.arm64_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:dcd7823f2624cbcd08f55c232097a79300c7d76ab5969004db1a4785c6c0cd87- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8f568766296bfa5c5404abb3a41380af721fb0128bae1a3495429085db009872--xz--5.8.1.arm64_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:55a4e0a4a92f5cf4885295214914de4aefad2389884085185e9ce87b4edae946- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b5da1f48e2d931e902a582bb1ce53f3cf8c5adc7a18ffafeb7a5a78d0fe82328--zstd--1.5.7.arm64_sequoia.bottle.1.tar.gz- ==> Fetching node- ==> Downloading https://ghcr.io/v2/homebrew/core/node/blobs/sha256:67ea6362b4e774b88b97c12798c0bff7b36cfc17636b0e15aec07ac8f97c681d- ==> 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`).- ==> 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.2.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/43040be3ccb15626fbea32e35b07134720b9790ad66caf27be03edac1dfbfeb2--brotli-1.2.0.bottle_manifest.json- ==> Pouring brotli--1.2.0.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/brotli/1.2.0: 33 files, 1.8MB- ==> 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.arm64_sequoia.bottle.1.tar.gz- 🍺 /opt/homebrew/Cellar/c-ares/1.34.5: 176 files, 1020.3KB- ==> 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.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/icu4c@77/77.1: 277 files, 81.2MB- ==> Installing node dependency: libnghttp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.68.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/16e7ebe81106c5b0b363cf16b9a25118a344811cd317e5042943682b17675a76--libnghttp2-1.68.0.bottle_manifest.json- ==> Pouring libnghttp2--1.68.0.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/libnghttp2/1.68.0: 14 files, 769.3KB- ==> 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.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/libnghttp3/1.12.0: 20 files, 587.7KB- ==> 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...- 🍺 /opt/homebrew/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.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/openssl@3/3.6.0: 7,609 files, 35.8MB- ==> Installing node dependency: libngtcp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/manifests/1.17.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f9ac96017064e1c9c23c32050e1fedb487cd3f6a744fc6c8bfd3a3ee8fa90605--libngtcp2-1.17.0.bottle_manifest.json- ==> Pouring libngtcp2--1.17.0.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/libngtcp2/1.17.0: 21 files, 1.3MB- ==> 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.arm64_sequoia.bottle.1.tar.gz- 🍺 /opt/homebrew/Cellar/libuv/1.51.0: 34 files, 1.2MB- ==> Installing node dependency: simdjson- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/manifests/4.1.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/5d81876c58597ac9fe754699bf13210c7a73b9b818cca584d36fcdcd3741e4e4--simdjson-4.1.0.bottle_manifest.json- ==> Pouring simdjson--4.1.0.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/simdjson/4.1.0: 17 files, 6.2MB- ==> 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.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/readline/8.3.1: 56 files, 2.6MB- ==> 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.arm64_sequoia.bottle.2.tar.gz- 🍺 /opt/homebrew/Cellar/sqlite/3.50.4: 13 files, 4.9MB- ==> 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.arm64_sequoia.bottle.1.tar.gz- 🍺 /opt/homebrew/Cellar/uvwasi/0.0.23: 15 files, 281.6KB- ==> 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.arm64_sequoia.bottle.1.tar.gz- 🍺 /opt/homebrew/Cellar/lz4/1.10.0: 24 files, 712KB- ==> 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.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/xz/5.8.1: 96 files, 2.5MB- ==> 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.arm64_sequoia.bottle.1.tar.gz- 🍺 /opt/homebrew/Cellar/zstd/1.5.7: 32 files, 2.2MB- ==> Installing node- ==> Pouring node--25.1.0.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/node/25.1.0: 2,269 files, 77.9MB- ==> Running `brew cleanup node`...- Removing: /Users/mac1000/Library/Caches/Homebrew/node_bottle_manifest--24.10.0-1... (23.6KB)- Removing: /Users/mac1000/Library/Caches/Homebrew/node--24.10.0... (19MB)- ==> Pouring pkgconf--2.5.1.arm64_sequoia.bottle.tar.gz- 🍺 /opt/homebrew/Cellar/pkgconf/2.5.1: 28 files, 518.7KB- ==> Running `brew cleanup pkgconf`...- ==> Caveats- Bash completion has been installed to:- /opt/homebrew/etc/bash_completion.d2025-10-31 07:52.48 ---> using "74f78a5dee2b23267be67b2385b67ada983e447845a8d210e87fe638e1cf9b50" 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 97 packages- install alcotest 1.9.1- install angstrom 0.16.1- install asn1-combinators 0.3.2- install astring 0.8.5- install backoff 0.1.1- install base v0.16.4- install base-bytes base- install base64 3.5.2- install bigstringaf 0.10.0- install bos 0.2.1- install ca-certs 1.0.1- install camlp-streams 5.0.1- install cmdliner 2.0.0- install cohttp 6.1.1- install cohttp-lwt 6.1.1- install cohttp-lwt-unix 6.1.1- install conduit 8.0.0- install conduit-lwt 8.0.0- install conduit-lwt-unix 8.0.0- install conf-gmp 5- install conf-gmp-powm-sec 4- install conf-npm 1- install conf-pkg-config 4- install containers 3.16- install cppo 1.8.0- install csexp 1.5.2- install digestif 1.3.0- install domain-local-await 1.0.1- install domain-name 0.5.0- install domain_shims 0.1.0- install dscheck 0.5.0- install dune 3.20.2- install dune-configurator 3.20.2- install duration 0.2.1- install either 1.0.0- install eqaf 0.10- install fmt 0.11.0- install fpath 0.7.3- install gen 1.1- install gmap 0.3.0- install http 6.1.1- install ipaddr 5.6.1- install ipaddr-sexp 5.6.1- install js_of_ocaml 6.2.0- install js_of_ocaml-compiler 6.2.0- install kdf 1.0.0- install logs 0.9.0- install lwt 5.9.2- install macaddr 5.6.1- install magic-mime 1.3.1- install mdx 2.5.1- install menhir 20250912- install menhirCST 20250912- install menhirLib 20250912- install menhirSdk 20250912- install mirage-crypto 2.0.2- install mirage-crypto-ec 2.0.2- install mirage-crypto-pk 2.0.2- install mirage-crypto-rng 2.0.2- install mtime 2.1.0- install multicore-bench 0.1.7- install multicore-magic 2.3.1- install multicore-magic-dscheck 2.3.1- install ocaml-compiler-libs v0.12.4- install ocaml-syntax-shims 1.0.0- install ocaml-version 4.0.3- install ocamlbuild 0.16.1- install ocamlfind 1.9.8- install ocplib-endian 1.2- install ohex 0.2.0- install oseq 0.5.1- install ppx_derivers 1.2.1- install ppx_sexp_conv v0.16.0- install ppxlib 0.35.0- install psq 0.2.1- install ptime 1.2.0- install qcheck-core 0.26- install qcheck-multicoretests-util 0.10- install qcheck-stm 0.10- install re 1.14.0- install result 1.5- install rresult 0.7.0- install sedlex 3.7- install seq base- install sexplib0 v0.16.0- install stdlib-shims 0.3.0- install stringext 1.6.0- install thread-local-storage 0.2- install thread-table 1.0.0- install topkg 1.1.0- install tsort 2.2.0- install uri 4.4.0- install uri-sexp 4.4.0- install uutf 1.0.4- install x509 1.0.6- install yojson 3.0.0- install zarith 1.14<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved asn1-combinators.0.3.2 (cached)-> retrieved angstrom.0.16.1 (cached)-> retrieved alcotest.1.9.1 (cached)-> retrieved backoff.0.1.1 (cached)-> retrieved astring.0.8.5 (cached)-> retrieved base64.3.5.2 (cached)-> retrieved bigstringaf.0.10.0 (cached)-> retrieved bos.0.2.1 (cached)-> retrieved ca-certs.1.0.1 (cached)-> retrieved camlp-streams.5.0.1 (cached)-> retrieved base.v0.16.4 (cached)-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (cached)-> retrieved conf-gmp.5 (cached)-> retrieved conf-gmp-powm-sec.4 (cached)-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)-> installed conf-pkg-config.4-> retrieved cmdliner.2.0.0 (cached)-> retrieved cppo.1.8.0 (cached)-> installed conf-gmp.5-> retrieved csexp.1.5.2 (cached)-> retrieved containers.3.16 (cached)-> installed conf-gmp-powm-sec.4-> retrieved domain-local-await.1.0.1 (cached)-> retrieved domain-name.0.5.0 (cached)-> installed conf-npm.1-> retrieved domain_shims.0.1.0 (cached)-> retrieved dscheck.0.5.0 (cached)-> retrieved duration.0.2.1 (cached)-> retrieved either.1.0.0 (cached)-> retrieved eqaf.0.10 (cached)-> retrieved fmt.0.11.0 (cached)-> retrieved fpath.0.7.3 (cached)-> retrieved gen.1.1 (cached)-> retrieved gmap.0.3.0 (cached)-> retrieved digestif.1.3.0 (cached)-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1 (cached)-> retrieved kdf.1.0.0 (cached)-> retrieved logs.0.9.0 (cached)-> retrieved lwt.5.9.2 (cached)-> retrieved magic-mime.1.3.1 (cached)-> retrieved mdx.2.5.1 (cached)-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)-> retrieved mtime.2.1.0 (cached)-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2 (cached)-> retrieved multicore-bench.0.1.7 (cached)-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0 (cached)-> retrieved ocaml-compiler-libs.v0.12.4 (cached)-> retrieved multicore-magic.2.3.1, multicore-magic-dscheck.2.3.1 (cached)-> retrieved ocaml-version.4.0.3 (cached)-> retrieved ocamlbuild.0.16.1 (cached)-> retrieved ocplib-endian.1.2 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved oseq.0.5.1 (cached)-> retrieved ohex.0.2.0 (cached)-> retrieved ppx_derivers.1.2.1 (cached)-> retrieved ppx_sexp_conv.v0.16.0 (cached)-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved psq.0.2.1 (cached)-> retrieved qcheck-core.0.26 (cached)-> retrieved ptime.1.2.0 (cached)-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (cached)-> retrieved re.1.14.0 (cached)-> retrieved result.1.5 (cached)-> retrieved rresult.0.7.0 (cached)-> retrieved seq.base (cached)-> retrieved sedlex.3.7 (cached)-> retrieved ppxlib.0.35.0 (cached)-> installed cmdliner.2.0.0-> installed seq.base-> retrieved stringext.1.6.0 (cached)-> retrieved stdlib-shims.0.3.0 (cached)-> retrieved sexplib0.v0.16.0 (cached)-> retrieved thread-local-storage.0.2 (cached)-> retrieved thread-table.1.0.0 (cached)-> retrieved tsort.2.2.0 (cached)-> retrieved topkg.1.1.0 (cached)-> retrieved uutf.1.0.4 (cached)-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)-> retrieved yojson.3.0.0 (cached)-> retrieved zarith.1.14 (cached)-> retrieved x509.1.0.6 (cached)-> installed ocamlfind.1.9.8-> installed base-bytes.base-> installed ocamlbuild.0.16.1-> installed zarith.1.14-> installed topkg.1.1.0-> installed rresult.0.7.0-> installed uutf.1.0.4-> installed mtime.2.1.0-> installed ptime.1.2.0-> installed fmt.0.11.0-> installed astring.0.8.5-> installed fpath.0.7.3-> installed dune.3.20.2-> installed camlp-streams.5.0.1-> installed domain-name.0.5.0-> installed base64.3.5.2-> installed csexp.1.5.2-> installed backoff.0.1.1-> installed eqaf.0.10-> installed either.1.0.0-> installed duration.0.2.1-> installed domain_shims.0.1.0-> installed cppo.1.8.0-> installed asn1-combinators.0.3.2-> installed gmap.0.3.0-> installed macaddr.5.6.1-> installed http.6.1.1-> installed gen.1.1-> installed menhirCST.20250912-> installed digestif.1.3.0-> installed ipaddr.5.6.1-> installed magic-mime.1.3.1-> installed multicore-magic.2.3.1-> installed menhirLib.20250912-> installed menhirSdk.20250912-> installed dune-configurator.3.20.2-> installed ohex.0.2.0-> installed ocaml-syntax-shims.1.0.0-> installed ocplib-endian.1.2-> installed ocaml-compiler-libs.v0.12.4-> installed oseq.0.5.1-> installed ocaml-version.4.0.3-> installed ppx_derivers.1.2.1-> installed bigstringaf.0.10.0-> installed psq.0.2.1-> installed mirage-crypto.2.0.2-> installed angstrom.0.16.1-> installed result.1.5-> installed kdf.1.0.0-> installed stdlib-shims.0.3.0-> installed re.1.14.0-> installed sexplib0.v0.16.0-> installed stringext.1.6.0-> installed thread-local-storage.0.2-> installed containers.3.16-> installed thread-table.1.0.0-> installed qcheck-core.0.26-> installed alcotest.1.9.1-> installed tsort.2.2.0-> installed domain-local-await.1.0.1-> installed dscheck.0.5.0-> installed lwt.5.9.2-> installed multicore-magic-dscheck.2.3.1-> installed qcheck-multicoretests-util.0.10-> installed qcheck-stm.0.10-> installed yojson.3.0.0-> installed uri.4.4.0-> installed multicore-bench.0.1.7-> installed base.v0.16.4-> installed menhir.20250912-> installed ppxlib.0.35.0-> installed sedlex.3.7-> installed ppx_sexp_conv.v0.16.0-> installed ipaddr-sexp.5.6.1-> installed uri-sexp.4.4.0-> installed js_of_ocaml-compiler.6.2.0-> installed logs.0.9.0-> installed mirage-crypto-rng.2.0.2-> installed conduit.8.0.0-> installed mirage-crypto-pk.2.0.2-> installed cohttp.6.1.1-> installed conduit-lwt.8.0.0-> installed mdx.2.5.1-> installed cohttp-lwt.6.1.1-> installed bos.0.2.1-> installed mirage-crypto-ec.2.0.2-> installed x509.1.0.6-> installed ca-certs.1.0.1-> installed conduit-lwt-unix.8.0.0-> installed cohttp-lwt-unix.6.1.1-> installed js_of_ocaml.6.2.0Done.# To update the current shell environment, run: eval $(opam env)2025-10-31 07:52.48 ---> using "8772de08622f2574ae41cd0881857908615d175c486d8e7c8f532632c7d78bb1" from cache/: (copy (src .) (dst ./src))2025-10-31 07:52.49 ---> saved as "b5c9530e31b55be873ba6ec8e752854b28490436ef6c1f8dce528b1b248ddf70"/: (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build"))File "lib/picos_aux.adaptive_backoff/dune", lines 5-12, characters 0-152:5 | (rule6 | (targets domain.ml)7 | (deps domain.ocaml4.ml)8 | (enabled_if9 | (< %{ocaml_version} 5.0.0))10 | (action11 | (progn12 | (copy domain.ocaml4.ml domain.ml))))Error: No rule found for lib/picos_aux.adaptive_backoff/domain.ocaml4.ml(cd _build/default/test && ./test_mpscq.exe)random seed: 3399164645997373274generated error fail pass / total time test name[ ] 0 0 0 0 / 32 0.0s Mpscq sequential [✓] 32 0 0 32 / 32 0.0s Mpscq sequential================================================================================success (ran 1 tests)random seed: 2570095288444120208generated error fail pass / total time test name[ ] 0 0 0 0 / 64 0.0s Mpscq sequential [✓] 64 0 0 64 / 64 0.0s Mpscq sequential================================================================================success (ran 1 tests)random seed: 4214038915184455238generated error fail pass / total time test name[ ] 0 0 0 0 / 128 0.0s Mpscq sequential [✓] 128 0 0 128 / 128 0.0s Mpscq sequential================================================================================success (ran 1 tests)random seed: 1011394280693388774generated error fail pass / total time test name[ ] 0 0 0 0 / 256 0.0s Mpscq sequential [✓] 256 0 0 256 / 256 0.0s Mpscq sequential================================================================================success (ran 1 tests)random seed: 3074133577789217789generated error fail pass / total time test name[ ] 0 0 0 0 / 512 0.0s Mpscq sequential [✓] 512 0 0 512 / 512 0.0s Mpscq sequential================================================================================success (ran 1 tests)random seed: 20111452476953899generated error fail pass / total time test name[ ] 0 0 0 0 / 32 0.0s Mpscq sequential [✓] 32 0 0 32 / 32 0.0s Mpscq sequential================================================================================success (ran 1 tests)(cd _build/default/test && ./test_finally.exe)Testing `Picos_finally'.This run has ID `P8Y7JKZ1'.[OK] move 0 is lazy.[OK] borrow 0 returns resource.Full test results in `~/src/_build/default/test/_build/_tests/Picos_finally'.Test Successful in 0.001s. 2 tests run.(cd _build/default/test && ./test_picos.exe)Testing `Picos'.This run has ID `0EU4PX5F'.[OK] Trigger 0 basics.[OK] Computation 0 basics.[OK] Computation 1 tx.[OK] Computation 2 signals in order.[OK] Fiber.FLS 0 basics.[OK] Cancel 0[OK] Cancel after 0Full test results in `~/src/_build/default/test/_build/_tests/Picos'.Test Successful in 0.264s. 7 tests run.2025-10-31 07:52.54: Cancelling: Auto-cancelling job because it is no longer needed(cd _build/default/test && ./test_io.exe)Testing `Picos_io'.This run has ID `R82Y31DE'.[OK] Unix 0 openfile and read.[OK] Unix 1 sleepf.[OK] Unix 2 select empty timeout.[OK] Unix 3 select empty ∞.[OK] Unix 4 select.[OK] Unix 5 system.Full test results in `~/src/_build/default/test/_build/_tests/Picos_io'.Test Successful in 0.598s. 6 tests run.Job cancelled