2025-03-09 18:11.47: New job: test robur-coop/builder-web https://github.com/robur-coop/builder-web.git#refs/heads/builder_web_design (1bbd08cabe2ae8265ebdebb5125c2f01b86d5788) (macos-x86_64:macos-homebrew-4.14_opam-2.3) Base: macos-homebrew-ocaml-4.14 Opam project build To reproduce locally: git clone --recursive "https://github.com/robur-coop/builder-web.git" -b "builder_web_design" && cd "builder-web" && git reset --hard 1bbd08ca cat > Dockerfile <<'END-OF-DOCKERFILE' FROM macos-homebrew-ocaml-4.14 # macos-homebrew-4.14_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" RUN ln -f ~/local/bin/opam-2.3 ~/local/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version RUN cd ~/opam-repository && (git cat-file -e 11f12fbcd0f578e0577e070def916ab87023c666 || git fetch origin master) && git reset -q --hard 11f12fbcd0f578e0577e070def916ab87023c666 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 builder-web.opam ./src/./ RUN opam pin add -yn builder-web.dev './src/./' RUN echo '(lang dune 3.0)' > './src/./dune-project' ENV DEPS="alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bheap.2.0.0 bigarray-compat.1.1.0 bigarray-overlap.0.2.1 bigstringaf.0.10.0 bos.0.2.1 builder.0.4.0 ca-certs.1.0.0 cachet.0.0.2 camlp-streams.5.0.1 caqti.2.1.2 caqti-driver-sqlite3.2.1.1 caqti-lwt.2.1.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-libev.4-12 conf-libssl.4 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.2.0 dns.10.0.0 domain-name.0.4.1 dream.1.0.0~alpha7 dream-encoding.0.3.0 dream-httpaf.1.0.0~alpha3 dream-pure.1.0.0~alpha2 dune.3.17.2 dune-configurator.3.17.2 dune-private-libs.3.17.2 dune-site.3.17.2 duration.0.2.1 dyn.3.17.2 eqaf.0.10 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fmt.0.9.0 fpath.0.7.3 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 h2.0.13.0 happy-eyeballs.2.0.0 happy-eyeballs-lwt.2.0.0 hmap.0.8.1 hpack.0.13.0 http-lwt-client.0.3.1 httpaf.0.7.1 httpun-types.0.2.0 ipaddr.5.6.0 jsonm.1.0.2 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 logs.0.7.0 lru.0.3.1 lwt.5.9.0 lwt-dllist.1.0.1 lwt_ppx.5.8.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 markup.1.0.3 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 metrics.0.4.1 metrics-influx.0.4.1 metrics-lwt.0.4.1 metrics-rusage.0.4.1 mirage-clock.4.2.0 mirage-crypto.1.2.0 mirage-crypto-ec.1.2.0 mirage-crypto-pk.1.2.0 mirage-crypto-rng.1.2.0 mirage-crypto-rng-lwt.1.2.0 mtime.2.1.0 multipart_form.0.6.0 multipart_form-lwt.0.6.0 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocamlgraph.2.1.0 ocplib-endian.1.2 ohex.0.2.0 opam-core.2.3.0 opam-file-format.2.1.6 opam-format.2.3.0 optint.0.3.0 ordering.3.17.2 pecu.0.7 pp.2.0.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_deriving_yojson.3.9.1 ppxlib.0.35.0 prettym.0.0.3 psq.0.2.1 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 seq.base sexplib0.v0.17.0 sha.1.15.4 solo5-elftool.0.4.0 sqlite3.5.3.1 ssl.0.7.0 stdlib-shims.0.3.0 stdune.3.17.2 stringext.1.6.0 swhid_core.0.1 tar.3.3.0 tar-unix.3.3.0 tls.2.0.0 tls-lwt.2.0.0 topkg.1.0.7 tyxml.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uuidm.0.9.9 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 zarith.1.14" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y builder-web.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . ./src RUN cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-03-09 18:11.47: Using cache hint "robur-coop/builder-web-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_opam-2.3-28bc975137944f953dd5107c9442353e" 2025-03-09 18:11.47: Using OBuilder spec: ((from macos-homebrew-ocaml-4.14) (comment macos-homebrew-4.14_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (run (shell "ln -f ~/local/bin/opam-2.3 ~/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 11f12fbcd0f578e0577e070def916ab87023c666 || git fetch origin master) && git reset -q --hard 11f12fbcd0f578e0577e070def916ab87023c666 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src builder-web.opam) (dst ./src/./)) (run (network host) (shell "opam pin add -yn builder-web.dev './src/./'")) (run (network host) (shell "echo '(lang dune 3.0)' > './src/./dune-project'")) (env DEPS "alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bheap.2.0.0 bigarray-compat.1.1.0 bigarray-overlap.0.2.1 bigstringaf.0.10.0 bos.0.2.1 builder.0.4.0 ca-certs.1.0.0 cachet.0.0.2 camlp-streams.5.0.1 caqti.2.1.2 caqti-driver-sqlite3.2.1.1 caqti-lwt.2.1.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-libev.4-12 conf-libssl.4 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.2.0 dns.10.0.0 domain-name.0.4.1 dream.1.0.0~alpha7 dream-encoding.0.3.0 dream-httpaf.1.0.0~alpha3 dream-pure.1.0.0~alpha2 dune.3.17.2 dune-configurator.3.17.2 dune-private-libs.3.17.2 dune-site.3.17.2 duration.0.2.1 dyn.3.17.2 eqaf.0.10 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fmt.0.9.0 fpath.0.7.3 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 h2.0.13.0 happy-eyeballs.2.0.0 happy-eyeballs-lwt.2.0.0 hmap.0.8.1 hpack.0.13.0 http-lwt-client.0.3.1 httpaf.0.7.1 httpun-types.0.2.0 ipaddr.5.6.0 jsonm.1.0.2 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 logs.0.7.0 lru.0.3.1 lwt.5.9.0 lwt-dllist.1.0.1 lwt_ppx.5.8.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 markup.1.0.3 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 metrics.0.4.1 metrics-influx.0.4.1 metrics-lwt.0.4.1 metrics-rusage.0.4.1 mirage-clock.4.2.0 mirage-crypto.1.2.0 mirage-crypto-ec.1.2.0 mirage-crypto-pk.1.2.0 mirage-crypto-rng.1.2.0 mirage-crypto-rng-lwt.1.2.0 mtime.2.1.0 multipart_form.0.6.0 multipart_form-lwt.0.6.0 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocamlgraph.2.1.0 ocplib-endian.1.2 ohex.0.2.0 opam-core.2.3.0 opam-file-format.2.1.6 opam-format.2.3.0 optint.0.3.0 ordering.3.17.2 pecu.0.7 pp.2.0.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_deriving_yojson.3.9.1 ppxlib.0.35.0 prettym.0.0.3 psq.0.2.1 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 seq.base sexplib0.v0.17.0 sha.1.15.4 solo5-elftool.0.4.0 sqlite3.5.3.1 ssl.0.7.0 stdlib-shims.0.3.0 stdune.3.17.2 stringext.1.6.0 swhid_core.0.1 tar.3.3.0 tar-unix.3.3.0 tls.2.0.0 tls-lwt.2.0.0 topkg.1.0.7 tyxml.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uuidm.0.9.9 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 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.3 --depext-only -y builder-web.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-03-09 18:11.47: Waiting for resource in pool OCluster 2025-03-09 18:11.48: Waiting for worker… 2025-03-09 19:09.26: Got resource from pool OCluster Building on i7-worker-04 All commits already cached HEAD is now at 1bbd08c remove unused css (from macos-homebrew-ocaml-4.14) 2025-03-09 19:09.27 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache /: (comment macos-homebrew-4.14_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam")) 2025-03-09 19:09.28 ---> using "d185bb362ab7a62e22c76fe28c4578fe7a4e17f7cc7bc09a3073972dfb5efd3b" from cache /: (run (shell "opam init --reinit -ni")) No configuration file found, using built-in defaults. Checking for available remotes: rsync and local, git. - you won't be able to use mercurial repositories unless you install the hg command on your system. - you won't be able to use darcs repositories unless you install the darcs command on your system. This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted. You may want to back it up before going further. Continue? [y/n] y [NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using: opam option jobs=1 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] no changes from git+file:///Users/mac1000/opam-repository 2025-03-09 19:09.28 ---> using "1a239dab0512a5f76e4948de67b26faca67b4de935df003aa7f81d4e2d68958d" from cache /: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Darwin 23.4.0 The OCaml toplevel, version 4.14.2 2.3.0 2025-03-09 19:09.28 ---> using "f52eecff7be584d99550d2f8c42b8f22f9135c2276c46c827a485f089226c5ac" 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 11f12fbcd0f578e0577e070def916ab87023c666 || git fetch origin master) && git reset -q --hard 11f12fbcd0f578e0577e070def916ab87023c666 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 67e940587b..11f12fbcd0 master -> origin/master 11f12fbcd0 Merge pull request #27585 from mmottl/release-sqlite3-5.3.1 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///Users/mac1000/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). The following packages are not being upgraded because the new versions conflict with other installed packages: - ocaml.5.4.0 - ocaml-config.3 However, you may "opam upgrade" these packages explicitly, 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-03-09 19:09.29 ---> using "38914b8833a755fbca8bf26da9c339c3cd088b030f98154522933f243c763bc9" from cache /: (copy (src builder-web.opam) (dst ./src/./)) 2025-03-09 19:09.30 ---> saved as "da936e268ea9b65fe8983b2596ef1746ccb4047b817fbfc1f2b4a60dd6a66e9d" /: (run (network host) (shell "opam pin add -yn builder-web.dev './src/./'")) [builder-web.dev] synchronised (file:///Users/mac1000/src) builder-web is now pinned to file:///Users/mac1000/src (version dev) 2025-03-09 19:09.39 ---> saved as "afe43beddb84ed644c08de7c32847b8037acf4d7dfb39fd34f59ffa291f32f99" /: (run (network host) (shell "echo '(lang dune 3.0)' > './src/./dune-project'")) 2025-03-09 19:09.41 ---> saved as "9da6c28396b77b5e44a27ae780ce5fd457e0bfd743959f5804a0869fa967dd57" /: (env DEPS "alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bheap.2.0.0 bigarray-compat.1.1.0 bigarray-overlap.0.2.1 bigstringaf.0.10.0 bos.0.2.1 builder.0.4.0 ca-certs.1.0.0 cachet.0.0.2 camlp-streams.5.0.1 caqti.2.1.2 caqti-driver-sqlite3.2.1.1 caqti-lwt.2.1.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-libev.4-12 conf-libssl.4 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.2.0 dns.10.0.0 domain-name.0.4.1 dream.1.0.0~alpha7 dream-encoding.0.3.0 dream-httpaf.1.0.0~alpha3 dream-pure.1.0.0~alpha2 dune.3.17.2 dune-configurator.3.17.2 dune-private-libs.3.17.2 dune-site.3.17.2 duration.0.2.1 dyn.3.17.2 eqaf.0.10 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fmt.0.9.0 fpath.0.7.3 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 h2.0.13.0 happy-eyeballs.2.0.0 happy-eyeballs-lwt.2.0.0 hmap.0.8.1 hpack.0.13.0 http-lwt-client.0.3.1 httpaf.0.7.1 httpun-types.0.2.0 ipaddr.5.6.0 jsonm.1.0.2 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 logs.0.7.0 lru.0.3.1 lwt.5.9.0 lwt-dllist.1.0.1 lwt_ppx.5.8.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 markup.1.0.3 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 metrics.0.4.1 metrics-influx.0.4.1 metrics-lwt.0.4.1 metrics-rusage.0.4.1 mirage-clock.4.2.0 mirage-crypto.1.2.0 mirage-crypto-ec.1.2.0 mirage-crypto-pk.1.2.0 mirage-crypto-rng.1.2.0 mirage-crypto-rng-lwt.1.2.0 mtime.2.1.0 multipart_form.0.6.0 multipart_form-lwt.0.6.0 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocamlgraph.2.1.0 ocplib-endian.1.2 ohex.0.2.0 opam-core.2.3.0 opam-file-format.2.1.6 opam-format.2.3.0 optint.0.3.0 ordering.3.17.2 pecu.0.7 pp.2.0.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_deriving_yojson.3.9.1 ppxlib.0.35.0 prettym.0.0.3 psq.0.2.1 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 seq.base sexplib0.v0.17.0 sha.1.15.4 solo5-elftool.0.4.0 sqlite3.5.3.1 ssl.0.7.0 stdlib-shims.0.3.0 stdune.3.17.2 stringext.1.6.0 swhid_core.0.1 tar.3.3.0 tar-unix.3.3.0 tls.2.0.0 tls-lwt.2.0.0 topkg.1.0.7 tyxml.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uuidm.0.9.9 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 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.3 --depext-only -y builder-web.dev $DEPS")) + /usr/local/bin/brew "update" - ==> Updating Homebrew... - Already up-to-date. <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [builder-web.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 libev openssl pkgconf sqlite <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/local/bin/brew "install" "gmp" "libev" "openssl" "pkgconf" "sqlite" - ==> 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 - ==> Fetching gmp - ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:e8410d92339535174e9f4a5eccc403301b70c7287f2f9a87f064a9aa2e21b54b - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8d39e3597db85ea2b4532e0057381937ab6ed92a64a1728c68e57bc6b3aeef95--gmp--6.3.0.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/libev/manifests/4.33 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/dcc77a4ef78cc646caf5e0675f4121c18ac6fbbb84ddb181eaab408546c41b66--libev-4.33.bottle_manifest.json - ==> Fetching libev - ==> Downloading https://ghcr.io/v2/homebrew/core/libev/blobs/sha256:5de04c4e03a70639639d5e4ced919aafdef07f9ea98cbde320b2e9dd81f9d5ce - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/01d328e7ed42ea70e8b855d283d1396acb653daad4e3270a7fd0c52f1ca69df2--libev--4.33.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.4.1 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a2bb8b71ebddb1fe8553581fcbc1ffc4ab36795c68b3cd47977cf83f1673a5b1--openssl@3-3.4.1.bottle_manifest.json - ==> Fetching dependencies for openssl@3: ca-certificates - ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-02-25 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6c1debb525d4dc6007afae4cd2b772105111632b22fc28506550f6dfe27c6d52--ca-certificates-2025-02-25.bottle_manifest.json - ==> Fetching ca-certificates - ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:8f46fb05f753f80f2bc398c0a24b10d680bd77d496e2b931de0b61998e37aebc - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/50c52ec06796c09a75e7a9484e6db3205765a935a486322e3795612fd23b405e--ca-certificates--2025-02-25.all.bottle.tar.gz - ==> Fetching openssl@3 - ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:36a85e5161befce49de6e03c5f710987bd5778a321151e011999e766249e6447 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/aa344417cbea89911f20a2d859f333f09b697b226b94f94a7754846085b7eb9b--openssl@3--3.4.1.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/manifests/2.4.3 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/fab16e95d8f8b37343099cee3d239d301193b2bca2db019c3db5708669e94417--pkgconf-2.4.3.bottle_manifest.json - ==> Fetching pkgconf - ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/blobs/sha256:9f5e12ea8ab25db6afc5c09543d6840d72f6556b894d167ac79007e8f187feb0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/579526238d04ef568632db944c33c6149c2e05766a0384acc59429a4bdf99eba--pkgconf--2.4.3.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/manifests/3.49.1 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ce3cf24bf33f0eff2d169e046ba5da3ec75ab9fe0439e7b7face44f42e033fcb--sqlite-3.49.1.bottle_manifest.json - ==> Fetching dependencies for sqlite: readline - ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.2.13 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/aa1afa38997a2866d91c81fdda8b36d436cd4ea7a82aed07d13c83c56eb3460e--readline-8.2.13.bottle_manifest.json - ==> Fetching readline - ==> Downloading https://ghcr.io/v2/homebrew/core/readline/blobs/sha256:0cf2cae0b9bb71bee1f9f9b3ab1e5dfc27b32f474db7f2d38b8b2dffd02da5ff - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/446fbf00927bacd971f43f42c3605e00929b283700936241ad8044fe469ccb25--readline--8.2.13.sonoma.bottle.tar.gz - ==> Fetching sqlite - ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:d6447132dbe25963619d8113df0c519b97c0781cf0dad090e21571a0c1799a44 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/67c9d908b97f208dabe1145fa2e8ead1ee875443e2eb561d7921d038d0e89aa2--sqlite--3.49.1.sonoma.bottle.tar.gz - ==> Pouring gmp--6.3.0.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/gmp/6.3.0: 22 files, 3.3MB - ==> Running `brew cleanup gmp`... - Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP. - Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). - ==> Pouring libev--4.33.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/libev/4.33: 13 files, 485KB - ==> Running `brew cleanup libev`... - ==> Installing dependencies for openssl@3: ca-certificates - ==> Installing openssl@3 dependency: ca-certificates - ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-02-25 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6c1debb525d4dc6007afae4cd2b772105111632b22fc28506550f6dfe27c6d52--ca-certificates-2025-02-25.bottle_manifest.json - ==> Pouring ca-certificates--2025-02-25.all.bottle.tar.gz - ==> Regenerating CA certificate bundle from keychain, this may take a while... - 🍺 /usr/local/Cellar/ca-certificates/2025-02-25: 4 files, 235.4KB - ==> Installing openssl@3 - ==> Pouring openssl@3--3.4.1.sonoma.bottle.tar.gz - ==> Caveats - A CA file has been bootstrapped using certificates from the system - keychain. To add additional certificates, place .pem files in - /usr/local/etc/openssl@3/certs - - and run - /usr/local/opt/openssl@3/bin/c_rehash - ==> Summary - 🍺 /usr/local/Cellar/openssl@3/3.4.1: 7,236 files, 33.6MB - ==> Running `brew cleanup openssl@3`... - ==> Pouring pkgconf--2.4.3.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/pkgconf/2.4.3: 27 files, 339.8KB - ==> Running `brew cleanup pkgconf`... - ==> Installing dependencies for sqlite: readline - ==> Installing sqlite dependency: readline - ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.2.13 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/aa1afa38997a2866d91c81fdda8b36d436cd4ea7a82aed07d13c83c56eb3460e--readline-8.2.13.bottle_manifest.json - ==> Pouring readline--8.2.13.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/readline/8.2.13: 51 files, 1.6MB - ==> Installing sqlite - ==> Pouring sqlite--3.49.1.sonoma.bottle.tar.gz - ==> Caveats - sqlite is keg-only, which means it was not symlinked into /usr/local, - because macOS already provides this software and installing another version in - parallel can cause all kinds of trouble. - - If you need to have sqlite first in your PATH, run: - echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.profile - - For compilers to find sqlite you may need to set: - export LDFLAGS="-L/usr/local/opt/sqlite/lib" - export CPPFLAGS="-I/usr/local/opt/sqlite/include" - - For pkg-config to find sqlite you may need to set: - export PKG_CONFIG_PATH="/usr/local/opt/sqlite/lib/pkgconfig" - ==> Summary - 🍺 /usr/local/Cellar/sqlite/3.49.1: 13 files, 4.6MB - ==> Running `brew cleanup sqlite`... - ==> Caveats - ==> openssl@3 - A CA file has been bootstrapped using certificates from the system - keychain. To add additional certificates, place .pem files in - /usr/local/etc/openssl@3/certs - - and run - /usr/local/opt/openssl@3/bin/c_rehash - ==> sqlite - sqlite is keg-only, which means it was not symlinked into /usr/local, - because macOS already provides this software and installing another version in - parallel can cause all kinds of trouble. - - If you need to have sqlite first in your PATH, run: - echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.profile - - For compilers to find sqlite you may need to set: - export LDFLAGS="-L/usr/local/opt/sqlite/lib" - export CPPFLAGS="-I/usr/local/opt/sqlite/include" - - For pkg-config to find sqlite you may need to set: - export PKG_CONFIG_PATH="/usr/local/opt/sqlite/lib/pkgconfig" 2025-03-09 19:10.45 ---> saved as "4c9277e19f73886a80fbb0168126c997bf47172b5eda12f51fe914f03e9fdd26" /: (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 141 packages - install alcotest 1.8.0 - install angstrom 0.16.1 - install asn1-combinators 0.3.2 - install astring 0.8.5 - install base-bytes base - install base64 3.5.1 - install bheap 2.0.0 - install bigarray-compat 1.1.0 - install bigarray-overlap 0.2.1 - install bigstringaf 0.10.0 - install bos 0.2.1 - install builder 0.4.0 - install ca-certs 1.0.0 - install cachet 0.0.2 - install camlp-streams 5.0.1 - install caqti 2.1.2 - install caqti-driver-sqlite3 2.1.1 - install caqti-lwt 2.1.1 - install checkseum 0.5.2 - install cmarkit 0.3.0 - install cmdliner 1.3.0 - install conf-gmp 4 - install conf-gmp-powm-sec 3 - install conf-libev 4-12 - install conf-libssl 4 - install conf-pkg-config 4 - install conf-sqlite3 1 - install cppo 1.8.0 - install csexp 1.5.2 - install cstruct 6.2.0 - install decompress 1.5.3 - install digestif 1.2.0 - install dns 10.0.0 - install domain-name 0.4.1 - install dream 1.0.0~alpha7 - install dream-encoding 0.3.0 - install dream-httpaf 1.0.0~alpha3 - install dream-pure 1.0.0~alpha2 - install dune 3.17.2 - install dune-configurator 3.17.2 - install dune-private-libs 3.17.2 - install dune-site 3.17.2 - install duration 0.2.1 - install dyn 3.17.2 - install eqaf 0.10 - install faraday 0.8.2 - install faraday-lwt 0.8.2 - install faraday-lwt-unix 0.8.2 - install fmt 0.9.0 - install fpath 0.7.3 - install gmap 0.3.0 - install graphql 0.14.0 - install graphql-lwt 0.14.0 - install graphql_parser 0.14.0 - install h2 0.13.0 - install happy-eyeballs 2.0.0 - install happy-eyeballs-lwt 2.0.0 - install hmap 0.8.1 - install hpack 0.13.0 - install http-lwt-client 0.3.1 - install httpaf 0.7.1 - install httpun-types 0.2.0 - install ipaddr 5.6.0 - install jsonm 1.0.2 - install kdf 1.0.0 - install ke 0.6 - install lambdasoup 1.1.1 - install logs 0.7.0 - install lru 0.3.1 - install lwt 5.9.0 - install lwt-dllist 1.0.1 - install lwt_ppx 5.8.1 - install lwt_ssl 1.2.0 - install macaddr 5.6.0 - install magic-mime 1.3.1 - install markup 1.0.3 - install menhir 20240715 - install menhirCST 20240715 - install menhirLib 20240715 - install menhirSdk 20240715 - install metrics 0.4.1 - install metrics-influx 0.4.1 - install metrics-lwt 0.4.1 - install metrics-rusage 0.4.1 - install mirage-clock 4.2.0 - install mirage-crypto 1.2.0 - install mirage-crypto-ec 1.2.0 - install mirage-crypto-pk 1.2.0 - install mirage-crypto-rng 1.2.0 - install mirage-crypto-rng-lwt 1.2.0 - install mtime 2.1.0 - install multipart_form 0.6.0 - install multipart_form-lwt 0.6.0 - install ocaml-compiler-libs v0.12.4 - install ocaml-syntax-shims 1.0.0 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ocamlgraph 2.1.0 - install ocplib-endian 1.2 - install ohex 0.2.0 - install opam-core 2.3.0 - install opam-file-format 2.1.6 - install opam-format 2.3.0 - install optint 0.3.0 - install ordering 3.17.2 - install pecu 0.7 - install pp 2.0.0 - install ppx_derivers 1.2.1 - install ppx_deriving 6.0.3 - install ppx_deriving_yojson 3.9.1 - install ppxlib 0.35.0 - install prettym 0.0.3 - install psq 0.2.1 - install ptime 1.2.0 - install re 1.12.0 - install result 1.5 - install rresult 0.7.0 - install seq base - install sexplib0 v0.17.0 - install sha 1.15.4 - install solo5-elftool 0.4.0 - install sqlite3 5.3.1 - install ssl 0.7.0 - install stdlib-shims 0.3.0 - install stdune 3.17.2 - install stringext 1.6.0 - install swhid_core 0.1 - install tar 3.3.0 - install tar-unix 3.3.0 - install tls 2.0.0 - install tls-lwt 2.0.0 - install topkg 1.0.7 - install tyxml 4.6.0 - install uchar 0.0.2 - install unstrctrd 0.4 - install uri 4.4.0 - install uuidm 0.9.9 - install uutf 1.0.3 - install x509 1.0.5 - install yojson 2.2.2 - install zarith 1.14 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved asn1-combinators.0.3.2 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved bheap.2.0.0 (cached) -> retrieved alcotest.1.8.0 (cached) -> retrieved bigarray-overlap.0.2.1 (cached) -> retrieved bigarray-compat.1.1.0 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved builder.0.4.0 (cached) -> retrieved ca-certs.1.0.0 (cached) -> retrieved cachet.0.0.2 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved checkseum.0.5.2 (cached) -> retrieved caqti.2.1.2 (cached) -> retrieved cmarkit.0.3.0 (cached) -> retrieved conf-gmp.4 (cached) -> retrieved conf-gmp-powm-sec.3 (cached) -> retrieved conf-libev.4-12 (cached) -> retrieved conf-libssl.4 (cached) -> retrieved cmdliner.1.3.0 (cached) -> installed conf-gmp.4 -> installed conf-pkg-config.4 -> retrieved csexp.1.5.2 (cached) -> retrieved cppo.1.8.0 (cached) -> installed conf-sqlite3.1 -> installed conf-gmp-powm-sec.3 -> retrieved decompress.1.5.3 (cached) -> retrieved cstruct.6.2.0 (cached) -> retrieved caqti-driver-sqlite3.2.1.1, caqti-lwt.2.1.1 (cached) -> retrieved dns.10.0.0 (cached) -> retrieved domain-name.0.4.1 (cached) -> installed conf-libssl.4 -> installed conf-libev.4-12 -> retrieved dream-encoding.0.3.0 (cached) -> retrieved dream.1.0.0~alpha7 (cached) -> retrieved dream-httpaf.1.0.0~alpha3 (cached) -> retrieved dream-pure.1.0.0~alpha2 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved duration.0.2.1 (cached) -> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2 (cached) -> retrieved eqaf.0.10 (cached) -> retrieved fmt.0.9.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved graphql.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0 (cached) -> retrieved h2.0.13.0, hpack.0.13.0 (cached) -> retrieved happy-eyeballs.2.0.0, happy-eyeballs-lwt.2.0.0 (cached) -> retrieved hmap.0.8.1 (cached) -> retrieved http-lwt-client.0.3.1 (cached) -> retrieved httpaf.0.7.1 (cached) -> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached) -> retrieved httpun-types.0.2.0 (cached) -> retrieved jsonm.1.0.2 (cached) -> retrieved kdf.1.0.0 (cached) -> retrieved ke.0.6 (cached) -> retrieved lambdasoup.1.1.1 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lru.0.3.1 (cached) -> retrieved lwt-dllist.1.0.1 (cached) -> retrieved lwt.5.9.0 (cached) -> retrieved lwt_ppx.5.8.1 (cached) -> retrieved lwt_ssl.1.2.0 (cached) -> retrieved magic-mime.1.3.1 (cached) -> retrieved markup.1.0.3 (cached) -> retrieved metrics.0.4.1, metrics-influx.0.4.1, metrics-lwt.0.4.1, metrics-rusage.0.4.1 (cached) -> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached) -> retrieved mirage-clock.4.2.0 (cached) -> retrieved dune.3.17.2, dune-configurator.3.17.2, dune-private-libs.3.17.2, dune-site.3.17.2, dyn.3.17.2, ordering.3.17.2, stdune.3.17.2 (cached) -> retrieved multipart_form.0.6.0, multipart_form-lwt.0.6.0 (cached) -> retrieved mtime.2.1.0 (cached) -> retrieved mirage-crypto.1.2.0, mirage-crypto-ec.1.2.0, mirage-crypto-pk.1.2.0, mirage-crypto-rng.1.2.0, mirage-crypto-rng-lwt.1.2.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ohex.0.2.0 (cached) -> retrieved ocamlgraph.2.1.0 (cached) -> installed cmdliner.1.3.0 -> retrieved optint.0.3.0 (cached) -> retrieved opam-file-format.2.1.6 (cached) -> retrieved pecu.0.7 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved opam-core.2.3.0, opam-format.2.3.0 (cached) -> retrieved ppx_deriving.6.0.3 (cached) -> retrieved ppx_deriving_yojson.3.9.1 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved prettym.0.0.3 (cached) -> retrieved psq.0.2.1 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved re.1.12.0 (cached) -> retrieved result.1.5 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved rresult.0.7.0 (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved sha.1.15.4 (cached) -> retrieved solo5-elftool.0.4.0 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved ssl.0.7.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved sqlite3.5.3.1 (cached) -> retrieved swhid_core.0.1 (cached) -> retrieved tar.3.3.0, tar-unix.3.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> retrieved tls.2.0.0, tls-lwt.2.0.0 (cached) -> retrieved tyxml.4.6.0 (cached) -> retrieved uchar.0.0.2 (cached) -> retrieved unstrctrd.0.4 (cached) -> retrieved uuidm.0.9.9 (cached) -> retrieved uri.4.4.0 (cached) -> retrieved uutf.1.0.3 (cached) -> retrieved topkg.1.0.7 (cached) -> retrieved x509.1.0.5 (cached) -> retrieved zarith.1.14 (cached) -> retrieved yojson.2.2.2 (cached) -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed ocamlbuild.0.16.1 -> installed uchar.0.0.2 -> installed zarith.1.14 -> installed topkg.1.0.7 -> installed hmap.0.8.1 -> installed rresult.0.7.0 -> installed uuidm.0.9.9 -> installed uutf.1.0.3 -> installed mtime.2.1.0 -> installed ptime.1.2.0 -> installed fmt.0.9.0 -> installed astring.0.8.5 -> installed jsonm.1.0.2 -> installed fpath.0.7.3 -> installed cmarkit.0.3.0 -> installed dune.3.17.2 -> installed bheap.2.0.0 -> installed csexp.1.5.2 -> installed camlp-streams.5.0.1 -> installed eqaf.0.10 -> installed duration.0.2.1 -> installed domain-name.0.4.1 -> installed cstruct.6.2.0 -> installed cppo.1.8.0 -> installed cachet.0.0.2 -> installed bigarray-overlap.0.2.1 -> installed bigarray-compat.1.1.0 -> installed base64.3.5.1 -> installed asn1-combinators.0.3.2 -> installed gmap.0.3.0 -> installed lwt-dllist.1.0.1 -> installed macaddr.5.6.0 -> installed ke.0.6 -> installed menhirCST.20240715 -> installed mirage-clock.4.2.0 -> installed metrics.0.4.1 -> installed menhirSdk.20240715 -> installed menhirLib.20240715 -> installed ohex.0.2.0 -> installed ocplib-endian.1.2 -> installed optint.0.3.0 -> installed opam-file-format.2.1.6 -> installed ocaml-syntax-shims.1.0.0 -> installed ipaddr.5.6.0 -> installed ocaml-compiler-libs.v0.12.4 -> installed markup.1.0.3 -> installed magic-mime.1.3.1 -> installed dune-configurator.3.17.2 -> installed digestif.1.2.0 -> installed pecu.0.7 -> installed ppx_derivers.1.2.1 -> installed pp.2.0.0 -> installed psq.0.2.1 -> installed result.1.5 -> installed ordering.3.17.2 -> installed lambdasoup.1.1.1 -> installed sqlite3.5.3.1 -> installed lru.0.3.1 -> installed solo5-elftool.0.4.0 -> installed mirage-crypto.1.2.0 -> installed checkseum.0.5.2 -> installed bigstringaf.0.10.0 -> installed sexplib0.v0.17.0 -> installed re.1.12.0 -> installed stdlib-shims.0.3.0 -> installed stringext.1.6.0 -> installed faraday.0.8.2 -> installed kdf.1.0.0 -> installed swhid_core.0.1 -> installed angstrom.0.16.1 -> installed dyn.3.17.2 -> installed prettym.0.0.3 -> installed httpun-types.0.2.0 -> installed httpaf.0.7.1 -> installed hpack.0.13.0 -> installed ocamlgraph.2.1.0 -> installed sha.1.15.4 -> installed alcotest.1.8.0 -> installed decompress.1.5.3 -> installed unstrctrd.0.4 -> installed ssl.0.7.0 -> installed lwt.5.9.0 -> installed h2.0.13.0 -> installed faraday-lwt.0.8.2 -> installed tar.3.3.0 -> installed lwt_ssl.1.2.0 -> installed metrics-influx.0.4.1 -> installed faraday-lwt-unix.0.8.2 -> installed logs.0.7.0 -> installed tar-unix.3.3.0 -> installed yojson.2.2.2 -> installed uri.4.4.0 -> installed metrics-lwt.0.4.1 -> installed happy-eyeballs.2.0.0 -> installed metrics-rusage.0.4.1 -> installed mirage-crypto-rng.1.2.0 -> installed tyxml.4.6.0 -> installed multipart_form.0.6.0 -> installed stdune.3.17.2 -> installed multipart_form-lwt.0.6.0 -> installed mirage-crypto-rng-lwt.1.2.0 -> installed mirage-crypto-pk.1.2.0 -> installed opam-core.2.3.0 -> installed dns.10.0.0 -> installed bos.0.2.1 -> installed menhir.20240715 -> installed happy-eyeballs-lwt.2.0.0 -> installed mirage-crypto-ec.1.2.0 -> installed graphql_parser.0.14.0 -> installed dune-private-libs.3.17.2 -> installed graphql.0.14.0 -> installed x509.1.0.5 -> installed graphql-lwt.0.14.0 -> installed ca-certs.1.0.0 -> installed dune-site.3.17.2 -> installed ppxlib.0.35.0 -> installed tls.2.0.0 -> installed opam-format.2.3.0 -> installed tls-lwt.2.0.0 -> installed lwt_ppx.5.8.1 -> installed http-lwt-client.0.3.1 -> installed caqti.2.1.2 -> installed ppx_deriving.6.0.3 -> installed caqti-driver-sqlite3.2.1.1 -> installed caqti-lwt.2.1.1 -> installed dream-pure.1.0.0~alpha2 -> installed builder.0.4.0 -> installed ppx_deriving_yojson.3.9.1 -> installed dream-httpaf.1.0.0~alpha3 -> installed dream.1.0.0~alpha7 -> installed dream-encoding.0.3.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-09 19:13.44 ---> saved as "f2916fdb467a4ac6a70b8fd49486f27734baf6ad45b5ffa7f76ca127cbc8c035" /: (copy (src .) (dst ./src)) 2025-03-09 19:13.46 ---> saved as "35c6f14724ba83a5b563eef255703316a47f7bd238e9281f52b80f642ad09e50" /: (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default && /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I lib/.builder_web.objs/byte -I /Users/mac1000/.opam/4.14.2/lib/angstrom -I /Users/mac1000/.opam/4.14.2/lib/asn1-combinators -I /Users/mac1000/.opam/4.14.2/lib/astring -I /Users/mac1000/.opam/4.14.2/lib/base64 -I /Users/mac1000/.opam/4.14.2/lib/base64/rfc2045 -I /Users/mac1000/.opam/4.14.2/lib/bigarray-overlap -I /Users/mac1000/.opam/4.14.2/lib/bigstringaf -I /Users/mac1000/.opam/4.14.2/lib/bos -I /Users/mac1000/.opam/4.14.2/lib/builder -I /Users/mac1000/.opam/4.14.2/lib/bytes -I /Users/mac1000/.opam/4.14.2/lib/cachet -I /Users/mac1000/.opam/4.14.2/lib/camlp-streams -I /Users/mac1000/.opam/4.14.2/lib/caqti -I /Users/mac1000/.opam/4.14.2/lib/caqti-driver-sqlite3 -I /Users/mac1000/.opam/4.14.2/lib/caqti-lwt -I /Users/mac1000/.opam/4.14.2/lib/caqti-lwt/unix -I /Users/mac1000/.opam/4.14.2/lib/caqti/platform -I /Users/mac1000/.opam/4.14.2/lib/caqti/platform/unix -I /Users/mac1000/.opam/4.14.2/lib/checkseum -I /Users/mac1000/.opam/4.14.2/lib/cmarkit -I /Users/mac1000/.opam/4.14.2/lib/cstruct -I /Users/mac1000/.opam/4.14.2/lib/decompress/de -I /Users/mac1000/.opam/4.14.2/lib/decompress/gz -I /Users/mac1000/.opam/4.14.2/lib/digestif -I /Users/mac1000/.opam/4.14.2/lib/domain-name -I /Users/mac1000/.opam/4.14.2/lib/dream -I /Users/mac1000/.opam/4.14.2/lib/dream-encoding -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-gluten -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-gluten-lwt -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-gluten-lwt-unix -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-h2 -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-h2-lwt -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-h2-lwt-unix -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-hpack -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-httpaf_ -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-httpaf_-lwt -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-httpaf_-lwt-unix -I /Users/mac1000/.opam/4.14.2/lib/dream-httpaf/dream-websocketaf -I /Users/mac1000/.opam/4.14.2/lib/dream-pure -I /Users/mac1000/.opam/4.14.2/lib/dream/certificate -I /Users/mac1000/.opam/4.14.2/lib/dream/cipher -I /Users/mac1000/.opam/4.14.2/lib/dream/graphiql -I /Users/mac1000/.opam/4.14.2/lib/dream/graphql -I /Users/mac1000/.opam/4.14.2/lib/dream/http -I /Users/mac1000/.opam/4.14.2/lib/dream/server -I /Users/mac1000/.opam/4.14.2/lib/dream/sql -I /Users/mac1000/.opam/4.14.2/lib/dream/unix -I /Users/mac1000/.opam/4.14.2/lib/duration -I /Users/mac1000/.opam/4.14.2/lib/eqaf -I /Users/mac1000/.opam/4.14.2/lib/faraday -I /Users/mac1000/.opam/4.14.2/lib/faraday-lwt -I /Users/mac1000/.opam/4.14.2/lib/faraday-lwt-unix -I /Users/mac1000/.opam/4.14.2/lib/fmt -I /Users/mac1000/.opam/4.14.2/lib/fpath -I /Users/mac1000/.opam/4.14.2/lib/graphql -I /Users/mac1000/.opam/4.14.2/lib/graphql-lwt -I /Users/mac1000/.opam/4.14.2/lib/graphql_parser -I /Users/mac1000/.opam/4.14.2/lib/hmap -I /Users/mac1000/.opam/4.14.2/lib/ipaddr -I /Users/mac1000/.opam/4.14.2/lib/jsonm -I /Users/mac1000/.opam/4.14.2/lib/kdf/pbkdf -I /Users/mac1000/.opam/4.14.2/lib/kdf/scrypt -I /Users/mac1000/.opam/4.14.2/lib/ke -I /Users/mac1000/.opam/4.14.2/lib/lambdasoup -I /Users/mac1000/.opam/4.14.2/lib/logs -I /Users/mac1000/.opam/4.14.2/lib/lwt -I /Users/mac1000/.opam/4.14.2/lib/lwt-dllist -I /Users/mac1000/.opam/4.14.2/lib/lwt/unix -I /Users/mac1000/.opam/4.14.2/lib/lwt_ssl -I /Users/mac1000/.opam/4.14.2/lib/macaddr -I /Users/mac1000/.opam/4.14.2/lib/magic-mime -I /Users/mac1000/.opam/4.14.2/lib/markup -I /Users/mac1000/.opam/4.14.2/lib/mirage-clock -I /Users/mac1000/.opam/4.14.2/lib/mirage-crypto -I /Users/mac1000/.opam/4.14.2/lib/mirage-crypto-rng -I /Users/mac1000/.opam/4.14.2/lib/mirage-crypto-rng-lwt -I /Users/mac1000/.opam/4.14.2/lib/mirage-crypto-rng/unix -I /Users/mac1000/.opam/4.14.2/lib/mtime -I /Users/mac1000/.opam/4.14.2/lib/mtime/clock -I /Users/mac1000/.opam/4.14.2/lib/multipart_form -I /Users/mac1000/.opam/4.14.2/lib/multipart_form-lwt -I /Users/mac1000/.opam/4.14.2/lib/ocaml/threads -I /Users/mac1000/.opam/4.14.2/lib/ocamlgraph -I /Users/mac1000/.opam/4.14.2/lib/ocplib-endian -I /Users/mac1000/.opam/4.14.2/lib/ocplib-endian/bigstring -I /Users/mac1000/.opam/4.14.2/lib/ohex -I /Users/mac1000/.opam/4.14.2/lib/opam-core -I /Users/mac1000/.opam/4.14.2/lib/opam-file-format -I /Users/mac1000/.opam/4.14.2/lib/opam-format -I /Users/mac1000/.opam/4.14.2/lib/optint -I /Users/mac1000/.opam/4.14.2/lib/pecu -I /Users/mac1000/.opam/4.14.2/lib/prettym -I /Users/mac1000/.opam/4.14.2/lib/psq -I /Users/mac1000/.opam/4.14.2/lib/ptime -I /Users/mac1000/.opam/4.14.2/lib/ptime/clock -I /Users/mac1000/.opam/4.14.2/lib/re -I /Users/mac1000/.opam/4.14.2/lib/rresult -I /Users/mac1000/.opam/4.14.2/lib/seq -I /Users/mac1000/.opam/4.14.2/lib/sha -I /Users/mac1000/.opam/4.14.2/lib/solo5-elftool -I /Users/mac1000/.opam/4.14.2/lib/sqlite3 -I /Users/mac1000/.opam/4.14.2/lib/ssl -I /Users/mac1000/.opam/4.14.2/lib/stdlib-shims -I /Users/mac1000/.opam/4.14.2/lib/stringext -I /Users/mac1000/.opam/4.14.2/lib/swhid_core -I /Users/mac1000/.opam/4.14.2/lib/tar -I /Users/mac1000/.opam/4.14.2/lib/tar-unix -I /Users/mac1000/.opam/4.14.2/lib/tar/gz -I /Users/mac1000/.opam/4.14.2/lib/tyxml -I /Users/mac1000/.opam/4.14.2/lib/tyxml/functor -I /Users/mac1000/.opam/4.14.2/lib/unstrctrd -I /Users/mac1000/.opam/4.14.2/lib/unstrctrd/parser -I /Users/mac1000/.opam/4.14.2/lib/uri -I /Users/mac1000/.opam/4.14.2/lib/uuidm -I /Users/mac1000/.opam/4.14.2/lib/uutf -I /Users/mac1000/.opam/4.14.2/lib/yojson -I auth/.builder_web_auth.objs/byte -I db/.builder_db.objs/byte -I opamdiff/.opamdiff.objs/byte -no-alias-deps -opaque -open Builder_web__ -o lib/.builder_web.objs/byte/builder_web__Dream_tar.cmo -c -impl lib/dream_tar.ml) File "lib/dream_tar.ml", line 46, characters 19-31: 46 | let ( let* ) = Tar.( let* ) in ^^^^^^^^^^^^ Error (alert deprecated): Tar.let* Use Tar.bind or Tar.Syntax.( let* ) (cd _build/default/test && ./test_builder_db.exe) Testing `Builder_db'. This run has ID `X6UF46X9'. [OK] user 0 One user. [OK] user 1 Get user. [OK] user 2 Remove user by name. [OK] user 3 Update user. [OK] user-auth 0 User auth success. [OK] user-auth 1 User auth fail. [OK] job 0 Add build. [OK] job 1 Get job id. [OK] job 2 Get job. [OK] job 3 Remove job. [OK] build 0 Get build. [OK] build 1 One build. [OK] build 2 Get latest build. [OK] build 3 Get build by hash. [OK] build 4 Get previous build. [OK] build 5 Get previous build when first. [OK] build-artifact 0 Get all by build. [OK] build-artifact 1 Get by build uuid. [OK] build-artifact 2 Artifact exists. [OK] build-artifact 3 Other artifact doesn't exists. [OK] build-artifact 4 Remove by build. [OK] vacuum 0 Get builds older than now. [OK] vacuum 1 Get older builds and keep a fixed... Full test results in `~/src/_build/default/test/_build/_tests/Builder_db'. Test Successful in 0.036s. 23 tests run. "/usr/bin/env" "bash" "-c" "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-03-09 19:13.54: Job failed: Failed: Build failed