2025-08-29 09:18.20: New job: test mefyl/timmy https://github.com/mefyl/timmy.git#refs/heads/master (82c54114b3bf18d7570c82e69735690156209095) (macos-x86_64:macos-homebrew-5.3_opam-2.4)Base: macos-homebrew-ocaml-5.3Opam project buildTo reproduce locally:git clone --recursive "https://github.com/mefyl/timmy.git" -b "master" && cd "timmy" && git reset --hard 82c54114cat > Dockerfile <<'END-OF-DOCKERFILE'FROM macos-homebrew-ocaml-5.3# macos-homebrew-5.3_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 53c7f25306cd512b69b4c845f4f1e0d210c49129 || git fetch origin master) && git reset -q --hard 53c7f25306cd512b69b4c845f4f1e0d210c49129 && git log --no-decorate -n1 --oneline && opam update -uRUN mkdir -p 'opam/'COPY --chown=1000:1000 timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam ./src/./COPY --chown=1000:1000 opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-unix-ios.opam opam/timmy-unix-android.opam opam/timmy-timezones-windows.opam opam/timmy-timezones-macos.opam opam/timmy-timezones-ios.opam opam/timmy-timezones-android.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-lwt-ios.opam opam/timmy-lwt-android.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/timmy-jsoo-ios.opam opam/timmy-jsoo-android.opam opam/timmy-ios.opam opam/timmy-android.opam ./src/opam/RUN opam pin add -yn timmy.dev './src/./' && \opam pin add -yn timmy-unix.dev './src/./' && \opam pin add -yn timmy-timezones.dev './src/./' && \opam pin add -yn timmy-lwt.dev './src/./' && \opam pin add -yn timmy-jsoo.dev './src/./' && \opam pin add -yn timmy-windows.dev './src/opam/' && \opam pin add -yn timmy-unix-windows.dev './src/opam/' && \opam pin add -yn timmy-unix-macos.dev './src/opam/' && \opam pin add -yn timmy-unix-ios.dev './src/opam/' && \opam pin add -yn timmy-unix-android.dev './src/opam/' && \opam pin add -yn timmy-timezones-windows.dev './src/opam/' && \opam pin add -yn timmy-timezones-macos.dev './src/opam/' && \opam pin add -yn timmy-timezones-ios.dev './src/opam/' && \opam pin add -yn timmy-timezones-android.dev './src/opam/' && \opam pin add -yn timmy-macos.dev './src/opam/' && \opam pin add -yn timmy-lwt-windows.dev './src/opam/' && \opam pin add -yn timmy-lwt-macos.dev './src/opam/' && \opam pin add -yn timmy-lwt-ios.dev './src/opam/' && \opam pin add -yn timmy-lwt-android.dev './src/opam/' && \opam pin add -yn timmy-jsoo-windows.dev './src/opam/' && \opam pin add -yn timmy-jsoo-macos.dev './src/opam/' && \opam pin add -yn timmy-jsoo-ios.dev './src/opam/' && \opam pin add -yn timmy-jsoo-android.dev './src/opam/' && \opam pin add -yn timmy-ios.dev './src/opam/' && \opam pin add -yn timmy-android.dev './src/opam/'RUN echo '(lang dune 3.0)' > './src/./dune-project' && \echo '(lang dune 3.0)' > './src/opam/dune-project'ENV DEPS="alcotest.1.9.0 alcotest-lwt.1.9.0 angstrom.0.16.1 astring.0.8.5 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 bigstringaf.0.10.0 cmdliner.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.1 dune-configurator.3.20.1 ezjsonm.1.3.0 fmt.0.11.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 logs.0.9.0 lwt.5.9.2 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 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 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_here.v0.17.0 ppxlib.0.36.0 ptime.1.2.0 re.1.13.2 result.1.5 sedlex.3.6 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.0 uutf.1.0.4 yojson.3.0.0"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.4 --depext-only -y timmy.dev timmy-unix.dev timmy-timezones.dev timmy-lwt.dev timmy-jsoo.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-08-29 09:18.20: Using cache hint "mefyl/timmy-macos-homebrew-ocaml-5.3-macos-homebrew-5.3_opam-2.4-33eb92b11fae3bfd832e57dd509c19cd"2025-08-29 09:18.20: 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 53c7f25306cd512b69b4c845f4f1e0d210c49129 || git fetch origin master) && git reset -q --hard 53c7f25306cd512b69b4c845f4f1e0d210c49129 && git log --no-decorate -n1 --oneline && opam update -u"))(run (shell "mkdir -p 'opam/'"))(copy (src timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam)(dst ./src/./))(copy (src opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-unix-ios.opam opam/timmy-unix-android.opam opam/timmy-timezones-windows.opam opam/timmy-timezones-macos.opam opam/timmy-timezones-ios.opam opam/timmy-timezones-android.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-lwt-ios.opam opam/timmy-lwt-android.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/timmy-jsoo-ios.opam opam/timmy-jsoo-android.opam opam/timmy-ios.opam opam/timmy-android.opam)(dst ./src/opam/))(run (network host)(shell "opam pin add -yn timmy.dev './src/./' && \\nopam pin add -yn timmy-unix.dev './src/./' && \\nopam pin add -yn timmy-timezones.dev './src/./' && \\nopam pin add -yn timmy-lwt.dev './src/./' && \\nopam pin add -yn timmy-jsoo.dev './src/./' && \\nopam pin add -yn timmy-windows.dev './src/opam/' && \\nopam pin add -yn timmy-unix-windows.dev './src/opam/' && \\nopam pin add -yn timmy-unix-macos.dev './src/opam/' && \\nopam pin add -yn timmy-unix-ios.dev './src/opam/' && \\nopam pin add -yn timmy-unix-android.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-windows.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-macos.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-ios.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-android.dev './src/opam/' && \\nopam pin add -yn timmy-macos.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-windows.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-macos.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-ios.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-android.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-windows.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-macos.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-ios.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-android.dev './src/opam/' && \\nopam pin add -yn timmy-ios.dev './src/opam/' && \\nopam pin add -yn timmy-android.dev './src/opam/'"))(run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project' && \\necho '(lang dune 3.0)' > './src/opam/dune-project'"))(env DEPS "alcotest.1.9.0 alcotest-lwt.1.9.0 angstrom.0.16.1 astring.0.8.5 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 bigstringaf.0.10.0 cmdliner.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.1 dune-configurator.3.20.1 ezjsonm.1.3.0 fmt.0.11.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 logs.0.9.0 lwt.5.9.2 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 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 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_here.v0.17.0 ppxlib.0.36.0 ptime.1.2.0 re.1.13.2 result.1.5 sedlex.3.6 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.0 uutf.1.0.4 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 timmy.dev timmy-unix.dev timmy-timezones.dev timmy-lwt.dev timmy-jsoo.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-08-29 09:18.20: Waiting for resource in pool OCluster2025-08-29 09:18.20: Waiting for worker…2025-08-29 09:18.20: Got resource from pool OClusterBuilding on i7-worker-04HEAD is now at 3c1f49f Merge branch 'fix/windows-null-timestamp' into 'master'HEAD is now at 82c5411 Merge branch 'feature/indianapolis' into 'master'(from macos-homebrew-ocaml-5.3)2025-08-29 09:18.23 ---> 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-08-29 09:18.23 ---> 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 --globalFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] no changes from git+file:///Users/mac1000/opam-repository2025-08-29 09:18.23 ---> using "05bef02621f4f152ba73fa5008f45408f9224fb6a3f95400ffe628ff48189e9f" from cache/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Darwin 24.5.0The OCaml toplevel, version 5.3.02.4.12025-08-29 09:18.24 ---> 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 53c7f25306cd512b69b4c845f4f1e0d210c49129 || git fetch origin master) && git reset -q --hard 53c7f25306cd512b69b4c845f4f1e0d210c49129 && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEADf1d3c77350..5c7ac19272 master -> origin/master53c7f25306 Merge pull request #28384 from raphael-proust/opam-publish-lwt.5.9.2<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///Users/mac1000/opam-repositoryAlready up-to-date.Nothing to do.# To update the current shell environment, run: eval $(opam env)2025-08-29 09:18.24 ---> using "95795838220f429d5a9bb45331d2efb2007039804e1d5d90e4673fe930dab861" from cache/: (run (shell "mkdir -p 'opam/'"))2025-08-29 09:18.25 ---> using "9bc6d45cf62082285f7795c2f2ea4630677e44595df64d9b41d9fb79767c186a" from cache/: (copy (src timmy.opam timmy-unix.opam timmy-timezones.opam timmy-lwt.opam timmy-jsoo.opam)(dst ./src/./))2025-08-29 09:18.25 ---> using "5015c4de85a1a4df3d8fe6e633b487ea81dedb9d3d7ad0a369db7101e2d1b37f" from cache/: (copy (src opam/timmy-windows.opam opam/timmy-unix-windows.opam opam/timmy-unix-macos.opam opam/timmy-unix-ios.opam opam/timmy-unix-android.opam opam/timmy-timezones-windows.opam opam/timmy-timezones-macos.opam opam/timmy-timezones-ios.opam opam/timmy-timezones-android.opam opam/timmy-macos.opam opam/timmy-lwt-windows.opam opam/timmy-lwt-macos.opam opam/timmy-lwt-ios.opam opam/timmy-lwt-android.opam opam/timmy-jsoo-windows.opam opam/timmy-jsoo-macos.opam opam/timmy-jsoo-ios.opam opam/timmy-jsoo-android.opam opam/timmy-ios.opam opam/timmy-android.opam)(dst ./src/opam/))2025-08-29 09:18.25 ---> using "766ced3d68b3f55f41d1776d6bba3fa6e2141bcc31e7fe1bf155fa13523419aa" from cache/: (run (network host)(shell "opam pin add -yn timmy.dev './src/./' && \\nopam pin add -yn timmy-unix.dev './src/./' && \\nopam pin add -yn timmy-timezones.dev './src/./' && \\nopam pin add -yn timmy-lwt.dev './src/./' && \\nopam pin add -yn timmy-jsoo.dev './src/./' && \\nopam pin add -yn timmy-windows.dev './src/opam/' && \\nopam pin add -yn timmy-unix-windows.dev './src/opam/' && \\nopam pin add -yn timmy-unix-macos.dev './src/opam/' && \\nopam pin add -yn timmy-unix-ios.dev './src/opam/' && \\nopam pin add -yn timmy-unix-android.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-windows.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-macos.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-ios.dev './src/opam/' && \\nopam pin add -yn timmy-timezones-android.dev './src/opam/' && \\nopam pin add -yn timmy-macos.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-windows.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-macos.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-ios.dev './src/opam/' && \\nopam pin add -yn timmy-lwt-android.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-windows.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-macos.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-ios.dev './src/opam/' && \\nopam pin add -yn timmy-jsoo-android.dev './src/opam/' && \\nopam pin add -yn timmy-ios.dev './src/opam/' && \\nopam pin add -yn timmy-android.dev './src/opam/'"))[timmy.dev] synchronised (file:///Users/mac1000/src)timmy is now pinned to file:///Users/mac1000/src (version dev)[timmy-unix.dev] synchronised (file:///Users/mac1000/src)timmy-unix is now pinned to file:///Users/mac1000/src (version dev)[NOTE] Package timmy-timezones does not exist in opam repositories registered in the current switch.[timmy-timezones.dev] synchronised (file:///Users/mac1000/src)timmy-timezones is now pinned to file:///Users/mac1000/src (version dev)[timmy-lwt.dev] synchronised (file:///Users/mac1000/src)timmy-lwt is now pinned to file:///Users/mac1000/src (version dev)[timmy-jsoo.dev] synchronised (file:///Users/mac1000/src)timmy-jsoo is now pinned to file:///Users/mac1000/src (version dev)[NOTE] Package timmy-windows does not exist in opam repositories registered in the current switch.[timmy-windows.dev] synchronised (file:///Users/mac1000/src/opam)timmy-windows is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-unix-windows does not exist in opam repositories registered in the current switch.[timmy-unix-windows.dev] synchronised (file:///Users/mac1000/src/opam)timmy-unix-windows is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-unix-macos does not exist in opam repositories registered in the current switch.[timmy-unix-macos.dev] synchronised (file:///Users/mac1000/src/opam)timmy-unix-macos is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-unix-ios does not exist in opam repositories registered in the current switch.[timmy-unix-ios.dev] synchronised (file:///Users/mac1000/src/opam)timmy-unix-ios is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-unix-android does not exist in opam repositories registered in the current switch.[timmy-unix-android.dev] synchronised (file:///Users/mac1000/src/opam)timmy-unix-android is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-timezones-windows does not exist in opam repositories registered in the current switch.[timmy-timezones-windows.dev] synchronised (file:///Users/mac1000/src/opam)timmy-timezones-windows is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-timezones-macos does not exist in opam repositories registered in the current switch.[timmy-timezones-macos.dev] synchronised (file:///Users/mac1000/src/opam)timmy-timezones-macos is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-timezones-ios does not exist in opam repositories registered in the current switch.[timmy-timezones-ios.dev] synchronised (file:///Users/mac1000/src/opam)timmy-timezones-ios is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-timezones-android does not exist in opam repositories registered in the current switch.[timmy-timezones-android.dev] synchronised (file:///Users/mac1000/src/opam)timmy-timezones-android is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-macos does not exist in opam repositories registered in the current switch.[timmy-macos.dev] synchronised (file:///Users/mac1000/src/opam)timmy-macos is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-lwt-windows does not exist in opam repositories registered in the current switch.[timmy-lwt-windows.dev] synchronised (file:///Users/mac1000/src/opam)timmy-lwt-windows is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-lwt-macos does not exist in opam repositories registered in the current switch.[timmy-lwt-macos.dev] synchronised (file:///Users/mac1000/src/opam)timmy-lwt-macos is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-lwt-ios does not exist in opam repositories registered in the current switch.[timmy-lwt-ios.dev] synchronised (file:///Users/mac1000/src/opam)timmy-lwt-ios is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-lwt-android does not exist in opam repositories registered in the current switch.[timmy-lwt-android.dev] synchronised (file:///Users/mac1000/src/opam)timmy-lwt-android is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-jsoo-windows does not exist in opam repositories registered in the current switch.[timmy-jsoo-windows.dev] synchronised (file:///Users/mac1000/src/opam)timmy-jsoo-windows is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-jsoo-macos does not exist in opam repositories registered in the current switch.[timmy-jsoo-macos.dev] synchronised (file:///Users/mac1000/src/opam)timmy-jsoo-macos is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-jsoo-ios does not exist in opam repositories registered in the current switch.[timmy-jsoo-ios.dev] synchronised (file:///Users/mac1000/src/opam)timmy-jsoo-ios is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-jsoo-android does not exist in opam repositories registered in the current switch.[timmy-jsoo-android.dev] synchronised (file:///Users/mac1000/src/opam)timmy-jsoo-android is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-ios does not exist in opam repositories registered in the current switch.[timmy-ios.dev] synchronised (file:///Users/mac1000/src/opam)timmy-ios is now pinned to file:///Users/mac1000/src/opam (version dev)[NOTE] Package timmy-android does not exist in opam repositories registered in the current switch.[timmy-android.dev] synchronised (file:///Users/mac1000/src/opam)timmy-android is now pinned to file:///Users/mac1000/src/opam (version dev)2025-08-29 09:18.26 ---> using "e5b03f17cd31221eb556af1eab4120ad471bba0dbdd16301c92f1b1c7d984465" from cache/: (run (network host)(shell "echo '(lang dune 3.0)' > './src/./dune-project' && \\necho '(lang dune 3.0)' > './src/opam/dune-project'"))2025-08-29 09:18.26 ---> using "94c0e285c509b82b0cdd82d2bfbd578bd7a00d90a2b90d35a247d7bfa06c882d" from cache/: (env DEPS "alcotest.1.9.0 alcotest-lwt.1.9.0 angstrom.0.16.1 astring.0.8.5 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 bigstringaf.0.10.0 cmdliner.1.3.0 conf-npm.1 conf-tzdata.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.20.1 dune-configurator.3.20.1 ezjsonm.1.3.0 fmt.0.11.0 gen.1.1 hex.1.5.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 logs.0.9.0 lwt.5.9.2 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 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 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_here.v0.17.0 ppxlib.0.36.0 ptime.1.2.0 re.1.13.2 result.1.5 sedlex.3.6 seq.base sexplib0.v0.17.0 stdlib-shims.0.3.0 timedesc.3.1.0 timedesc-tzdb.3.1.0 timedesc-tzlocal.3.1.0 topkg.1.1.0 uutf.1.0.4 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 timmy.dev timmy-unix.dev timmy-timezones.dev timmy-lwt.dev timmy-jsoo.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 ><><><><><><><><><><><><><><><><><><><><><><>[timmy-lwt.dev] synchronised (file:///Users/mac1000/src)[timmy-jsoo.dev] synchronised (file:///Users/mac1000/src)[timmy.dev] synchronised (file:///Users/mac1000/src)[timmy-timezones.dev] synchronised (file:///Users/mac1000/src)[timmy-unix.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.6.0-2- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e5290efc7954b86c96af4f0a37e852b94e79632c19caed632b56bc5f831e57e5--node-24.6.0-2.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.66.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/be9e0fef84716f95c06b3d1b3574fca38069df3aae334c7818b5591d6a24df5b--libnghttp2-1.66.0.bottle_manifest.json- ==> Fetching libnghttp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/blobs/sha256:ad8bf90461b2644c68a52eac9f1bee68878a646d8f66cd4440e9896b8bb9df3d- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/aaed6abe0330dffa9bb80072b934c2ce5bf7087f1b3c50c14e8a6044267064b0--libnghttp2--1.66.0.sonoma.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp3/manifests/1.11.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3efff4f68e2c19db2315e48ca4b115b707b8aaea4c1f6c1576c8df2bb796cb61--libnghttp3-1.11.0.bottle_manifest.json- ==> Fetching libnghttp3- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp3/blobs/sha256:0a683e0b2ef8a5a3096e1749af7e0ea4adad5c30d318d95cdc8baa5fb073fa5c- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/51bb246671ed501da6949082f047548ad872c3749902604c8dec3da5c7072949--libnghttp3--1.11.0.sonoma.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-08-12-2- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/446bcc9fbe916b3769ad3367c5fff981dfdf345e29ffc493f87e48e904d30608--ca-certificates-2025-08-12-2.bottle_manifest.json- ==> Fetching ca-certificates- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:e74a63e172f75fe700f74875b91217668065af5dd8f6f624315fa9e7f890be40- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/062aeb37a7c720b504d425b74bbd2ab58ba4e5300acd87137a51131502fd6693--ca-certificates--2025-08-12.all.bottle.2.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.5.2- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e6659abe178bdf49b65451e77f6165a3e07274432f445342092e5ad2a927b23c--openssl@3-3.5.2.bottle_manifest.json- ==> Fetching openssl@3- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:13d2f6fc2b05e14af0351797e8605bd8aee8888272d8205632f6c981be7e2518- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e4f3cdeb33edbd86de6308e4185377a20db27ac9205eb4f55dd5d22c7f685c72--openssl@3--3.5.2.sequoia.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/manifests/1.15.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e6badd9ed69e39e7c6170a8fa003e59de4feeada8235e9fa3035f1acbff31baf--libngtcp2-1.15.0.bottle_manifest.json- ==> Fetching libngtcp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/blobs/sha256:f3f4f082eff17134ecf34e3213d7e618f4cdf54106f5f9012fb3eef7a7ff2d9b- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/974106ff296749a081b0cee877ed6dad07bb439f528191caa049f7e2d0b994df--libngtcp2--1.15.0.sonoma.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/manifests/1.51.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/25bd9f2f86d047011dc8ca247bea2e4e3e5a150e29648418d48dfca4c8c136ea--libuv-1.51.0.bottle_manifest.json- ==> Fetching libuv- ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/blobs/sha256:fb199706c025af4c6160825de25f9220c8d571499c5dba71c4b93a3874ea7a03- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d53fecfc1f0449b8a29d78c7364f8effa7f77965da02e57b732ad70621f29112--libuv--1.51.0.sonoma.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/manifests/3.13.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/02c41c3dcd1d6d8e7fa71de0dbc30f47556872481178358c68a85bf79f14457d--simdjson-3.13.0.bottle_manifest.json- ==> Fetching simdjson- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/blobs/sha256:2d2a463a26509e2b0fb17195ac08f6d64b1f3fd05d518360ae971d79d0fdf69d- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6fdf2fc6c1b3419f5fc7e2aef2a2cca7506e719ced29e7a2f2c465496c9a8c1c--simdjson--3.13.0.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- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f0760e6010149d3ea5bf9e64ddada251d25038daf612eb1c55fb18a9c6d6d53a--sqlite-3.50.4.bottle_manifest.json- ==> Fetching sqlite- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:157c87855aa5b6a4def7128ffdbf66db6b24aedbd09ca161611fa55b05af7166- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b5d37d4de104b59492814c08abf5d19a01ba91edf1ede213cfd09587f9ab36f7--sqlite--3.50.4.sequoia.bottle.tar.gz- ==> Downloading https://ghcr.io/v2/homebrew/core/uvwasi/manifests/0.0.21- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a80b65d36adc763bbdea467d6c047f9eeb054d311726ac54b945a5299d107ecd--uvwasi-0.0.21.bottle_manifest.json- ==> Fetching uvwasi- ==> Downloading https://ghcr.io/v2/homebrew/core/uvwasi/blobs/sha256:075cf1c7a4ded621c47d59adaee755993f7aeb5bc282b42dcffcf7478fdb66bd- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b3970339a24e6b6bb79cc651b7839739f2d5f5eb0da5f8e618da1ec1cb128146--uvwasi--0.0.21.sonoma.bottle.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:9836698d5c4cf0471078b5658173519b32bc7c02d6fd8ee03cb04116d74a3f82- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/12d9ae6242d963d87aa302e7f44faa4ec1d4957a0db1b5c5940c48bf35b8ebcf--node--24.6.0.sonoma.bottle.2.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, 938.9KB- ==> 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.66.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/be9e0fef84716f95c06b3d1b3574fca38069df3aae334c7818b5591d6a24df5b--libnghttp2-1.66.0.bottle_manifest.json- ==> Pouring libnghttp2--1.66.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libnghttp2/1.66.0: 14 files, 805.2KB- ==> Installing node dependency: libnghttp3- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp3/manifests/1.11.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3efff4f68e2c19db2315e48ca4b115b707b8aaea4c1f6c1576c8df2bb796cb61--libnghttp3-1.11.0.bottle_manifest.json- ==> Pouring libnghttp3--1.11.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libnghttp3/1.11.0: 20 files, 543.6KB- ==> Installing node dependency: ca-certificates- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-08-12-2- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/446bcc9fbe916b3769ad3367c5fff981dfdf345e29ffc493f87e48e904d30608--ca-certificates-2025-08-12-2.bottle_manifest.json- ==> Pouring ca-certificates--2025-08-12.all.bottle.2.tar.gz- ==> Regenerating CA certificate bundle from keychain, this may take a while...- 🍺 /usr/local/Cellar/ca-certificates/2025-08-12: 4 files, 232.4KB- ==> Installing node dependency: openssl@3- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.5.2- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e6659abe178bdf49b65451e77f6165a3e07274432f445342092e5ad2a927b23c--openssl@3-3.5.2.bottle_manifest.json- ==> Pouring openssl@3--3.5.2.sequoia.bottle.tar.gz- 🍺 /usr/local/Cellar/openssl@3/3.5.2: 7,563 files, 35.7MB- ==> Installing node dependency: libngtcp2- ==> Downloading https://ghcr.io/v2/homebrew/core/libngtcp2/manifests/1.15.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e6badd9ed69e39e7c6170a8fa003e59de4feeada8235e9fa3035f1acbff31baf--libngtcp2-1.15.0.bottle_manifest.json- ==> Pouring libngtcp2--1.15.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libngtcp2/1.15.0: 21 files, 1.2MB- ==> Installing node dependency: libuv- ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/manifests/1.51.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/25bd9f2f86d047011dc8ca247bea2e4e3e5a150e29648418d48dfca4c8c136ea--libuv-1.51.0.bottle_manifest.json- ==> Pouring libuv--1.51.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/libuv/1.51.0: 20 files, 1.1MB- ==> Installing node dependency: simdjson- ==> Downloading https://ghcr.io/v2/homebrew/core/simdjson/manifests/3.13.0- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/02c41c3dcd1d6d8e7fa71de0dbc30f47556872481178358c68a85bf79f14457d--simdjson-3.13.0.bottle_manifest.json- ==> Pouring simdjson--3.13.0.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/simdjson/3.13.0: 17 files, 5.4MB- ==> 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- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f0760e6010149d3ea5bf9e64ddada251d25038daf612eb1c55fb18a9c6d6d53a--sqlite-3.50.4.bottle_manifest.json- ==> Pouring sqlite--3.50.4.sequoia.bottle.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.21- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a80b65d36adc763bbdea467d6c047f9eeb054d311726ac54b945a5299d107ecd--uvwasi-0.0.21.bottle_manifest.json- ==> Pouring uvwasi--0.0.21.sonoma.bottle.tar.gz- 🍺 /usr/local/Cellar/uvwasi/0.0.21: 15 files, 254.5KB- ==> 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.6.0.sonoma.bottle.2.tar.gz- 🍺 /usr/local/Cellar/node/24.6.0: 2,467 files, 90.8MB- ==> 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`).- ==> No outdated dependents to upgrade!- ==> Caveats- Bash completion has been installed to:- /usr/local/etc/bash_completion.d2025-08-29 09:18.26 ---> using "3593f4c80247eda220db38e8c7e9f59818491df429009520216be7f354bd3a71" 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 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 52 packages- install alcotest 1.9.0- install alcotest-lwt 1.9.0- install angstrom 0.16.1- install astring 0.8.5- install base v0.17.3- install base-bytes base- install bigstringaf 0.10.0- install cmdliner 1.3.0- install conf-npm 1- install conf-tzdata 1- install cppo 1.8.0- install csexp 1.5.2- install cstruct 6.2.0- install dune 3.20.1- install dune-configurator 3.20.1- install ezjsonm 1.3.0- install fmt 0.11.0- install gen 1.1- install hex 1.5.0- install js_of_ocaml 6.2.0- install js_of_ocaml-compiler 6.2.0- install js_of_ocaml-ppx 6.2.0- install jsonm 1.0.2- install logs 0.9.0- install lwt 5.9.2- install menhir 20240715- install menhirCST 20240715- install menhirLib 20240715- install menhirSdk 20240715- 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 ppx_derivers 1.2.1- install ppx_deriving 6.1.1- install ppx_here v0.17.0- install ppxlib 0.36.0- install ptime 1.2.0- install re 1.13.2- install result 1.5- install sedlex 3.6- install seq base- install sexplib0 v0.17.0- install stdlib-shims 0.3.0- install timedesc 3.1.0- install timedesc-tzdb 3.1.0- install timedesc-tzlocal 3.1.0- install topkg 1.1.0- install uutf 1.0.4- install yojson 3.0.0<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved astring.0.8.5 (cached)-> retrieved angstrom.0.16.1 (cached)-> retrieved alcotest.1.9.0, alcotest-lwt.1.9.0 (cached)-> retrieved bigstringaf.0.10.0 (cached)-> retrieved base.v0.17.3 (cached)-> installed conf-tzdata.1-> retrieved cppo.1.8.0 (cached)-> retrieved csexp.1.5.2 (cached)-> retrieved cmdliner.1.3.0 (cached)-> retrieved ezjsonm.1.3.0 (cached)-> retrieved cstruct.6.2.0 (cached)-> retrieved fmt.0.11.0 (cached)-> retrieved gen.1.1 (cached)-> retrieved hex.1.5.0 (cached)-> retrieved jsonm.1.0.2 (cached)-> installed conf-npm.1-> retrieved logs.0.9.0 (cached)-> retrieved lwt.5.9.2 (cached)-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)-> retrieved ocaml-compiler-libs.v0.17.0 (cached)-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)-> retrieved ocamlbuild.0.16.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ocplib-endian.1.2 (cached)-> retrieved ppx_derivers.1.2.1 (cached)-> retrieved ppx_deriving.6.1.1 (cached)-> retrieved ppx_here.v0.17.0 (cached)-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-ppx.6.2.0 (cached)-> retrieved ppxlib.0.36.0 (cached)-> retrieved ptime.1.2.0 (cached)-> retrieved result.1.5 (cached)-> retrieved re.1.13.2 (cached)-> retrieved seq.base (cached)-> retrieved sedlex.3.6 (cached)-> retrieved sexplib0.v0.17.0 (cached)-> retrieved stdlib-shims.0.3.0 (cached)-> retrieved dune.3.20.1, dune-configurator.3.20.1 (cached)-> retrieved uutf.1.0.4 (cached)-> installed cmdliner.1.3.0-> installed ocamlbuild.0.16.1-> installed seq.base-> retrieved yojson.3.0.0 (cached)-> retrieved topkg.1.1.0 (cached)-> retrieved timedesc.3.1.0, timedesc-tzdb.3.1.0, timedesc-tzlocal.3.1.0 (cached)-> installed ocamlfind.1.9.8-> installed base-bytes.base-> installed topkg.1.1.0-> installed uutf.1.0.4-> installed fmt.0.11.0-> installed ptime.1.2.0-> installed astring.0.8.5-> installed jsonm.1.0.2-> installed dune.3.20.1-> installed csexp.1.5.2-> installed menhirCST.20240715-> installed re.1.13.2-> installed ppx_derivers.1.2.1-> installed ocaml_intrinsics_kernel.v0.17.1-> installed ocaml-syntax-shims.1.0.0-> installed ocaml-compiler-libs.v0.17.0-> installed menhirSdk.20240715-> installed stdlib-shims.0.3.0-> installed result.1.5-> installed menhirLib.20240715-> installed gen.1.1-> installed cstruct.6.2.0-> installed cppo.1.8.0-> installed timedesc-tzdb.3.1.0-> installed timedesc-tzlocal.3.1.0-> installed sexplib0.v0.17.0-> installed hex.1.5.0-> installed ocplib-endian.1.2-> installed dune-configurator.3.20.1-> installed ezjsonm.1.3.0-> installed yojson.3.0.0-> installed alcotest.1.9.0-> installed bigstringaf.0.10.0-> installed angstrom.0.16.1-> installed timedesc.3.1.0-> installed lwt.5.9.2-> installed base.v0.17.3-> installed ppxlib.0.36.0-> installed ppx_here.v0.17.0-> installed menhir.20240715-> installed ppx_deriving.6.1.1-> installed sedlex.3.6-> installed js_of_ocaml-compiler.6.2.0-> installed logs.0.9.0-> installed alcotest-lwt.1.9.0-> installed js_of_ocaml.6.2.0-> installed js_of_ocaml-ppx.6.2.0Done.# To update the current shell environment, run: eval $(opam env)2025-08-29 09:18.27 ---> using "4f25f3f88fbd60e69730f9bacd2fbf802404ce592c38ab1dc976a6bba5a6ecd3" from cache/: (copy (src .) (dst ./src))2025-08-29 09:18.30 ---> saved as "2cec0550ba87164fb6b01072cd54b22db28fd3ac24a2ff1f75025644b7491130"/: (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build"))File "dune.lock/lock.dune", line 1, characters 0-0:Error: The lock dir is not sync with your dune-projectHint: run dune pkg lock"/usr/bin/env" "bash" "-c" "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 12025-08-29 09:18.36: Job failed: Failed: Build failed