2025-08-20 17:09.26: New job: test ocaml/odoc https://github.com/ocaml/odoc.git#refs/heads/master (6d7371a91d801acbe658cb1c766c3b23f218563a) (freebsd-x86_64:freebsd-14.2-4.14_opam-2.4) Base: freebsd-14.2-ocaml-4.14 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml/odoc.git" -b "master" && cd "odoc" && git reset --hard 6d7371a9 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM freebsd-14.2-ocaml-4.14 # freebsd-14.2-4.14_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam ./ RUN opam pin add -yn sherlodoc.dev './' && \ opam pin add -yn odoc.dev './' && \ opam pin add -yn odoc-parser.dev './' && \ opam pin add -yn odoc-md.dev './' && \ opam pin add -yn odoc-driver.dev './' && \ opam pin add -yn odoc-bench.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="alcotest.1.9.0 astring.0.8.5 b0.0.0.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.8 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.20.0 dune-configurator.3.20.0 fieldslib.v0.16.0 fmt.0.11.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-toplevel.6.2.0 jst-config.v0.16.0 logs.0.9.0 lwt.5.9.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.6 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.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.13.2 result.1.5 rresult.0.7.0 sedlex.3.6 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.1.0 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=sherlodoc,odoc,odoc-parser,odoc-md,odoc-bench @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-08-20 17:09.26: Using cache hint "ocaml/odoc-freebsd-14.2-ocaml-4.14-freebsd-14.2-4.14_opam-2.4-1714488ff2f80a28da3bf85a7f758407" 2025-08-20 17:09.26: Using OBuilder spec: ((from freebsd-14.2-ocaml-4.14) (comment freebsd-14.2-4.14_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam) (dst ./)) (run (network host) (shell "opam pin add -yn sherlodoc.dev './' && \ \nopam pin add -yn odoc.dev './' && \ \nopam pin add -yn odoc-parser.dev './' && \ \nopam pin add -yn odoc-md.dev './' && \ \nopam pin add -yn odoc-driver.dev './' && \ \nopam pin add -yn odoc-bench.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "alcotest.1.9.0 astring.0.8.5 b0.0.0.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.8 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.20.0 dune-configurator.3.20.0 fieldslib.v0.16.0 fmt.0.11.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-toplevel.6.2.0 jst-config.v0.16.0 logs.0.9.0 lwt.5.9.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.6 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.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.13.2 result.1.5 rresult.0.7.0 sedlex.3.6 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.1.0 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build --only-packages=sherlodoc,odoc,odoc-parser,odoc-md,odoc-bench @install @check @runtest && rm -rf _build")) ) 2025-08-20 17:09.26: Waiting for resource in pool OCluster 2025-08-21 06:26.11: Waiting for worker… 2025-08-21 16:20.02: Got resource from pool OCluster Building on rosemary All commits already cached Updating files: 100% (2141/2141), done. HEAD is now at 6d7371a91 Bump actions/checkout from 4 to 5 (from freebsd-14.2-ocaml-4.14) 2025-08-21 16:21.13 ---> using "e232d73c9161ea3ff94ff4ae2b5a6983da9a9ca98d5185b2db1dbadeae5228e2" from cache /: (comment freebsd-14.2-4.14_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam")) 2025-08-21 16:21.14 ---> using "ab3b72ff1bef5200ab51bf41b5ce466d603a607c082bc77b8cb9a89bd0ee8e2b" from cache /src: (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 /home/opam/.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:///home/opam/opam-repository 2025-08-21 16:21.14 ---> using "4f5272944a297469599fadae70be6af0a741315c350ad35dc552c1741ce274b4" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) FreeBSD 14.2-RELEASE-p1 The OCaml toplevel, version 4.14.2 2.4.1 2025-08-21 16:21.15 ---> using "07a4e313abba0673771074c9860cdd9543e4761d68d2fb7c6d7221bc739a7e75" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-08-21 16:21.16 ---> using "3a9f22eefbfbdecb5fa973f708084041cdbe652271a081208757b5e926d582b0" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD f1d3c77350..0978bfceb7 master -> origin/master f9d23e5cb1 Merge pull request #28357 from maiste/release-dune-3.20.0 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///home/opam/opam-repository Everything as up-to-date as possible The following packages are not being upgraded because the new versions conflict with other installed packages: - ocaml.5.3.0 - ocaml-config.3 However, 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. 2025-08-21 16:21.17 ---> using "bda57289868fbcd1e338d9e84c681ce36dfce019962d653e32487e0832f26358" from cache /src: (copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam) (dst ./)) 2025-08-21 16:21.17 ---> using "9f14d608b3e1ad52ee0c6ad52ba7b696b7c651f097e54948d624a1dbac14e055" from cache /src: (run (network host) (shell "opam pin add -yn sherlodoc.dev './' && \ \nopam pin add -yn odoc.dev './' && \ \nopam pin add -yn odoc-parser.dev './' && \ \nopam pin add -yn odoc-md.dev './' && \ \nopam pin add -yn odoc-driver.dev './' && \ \nopam pin add -yn odoc-bench.dev './'")) [sherlodoc.dev] synchronised (file:///src) sherlodoc is now pinned to file:///src (version dev) [odoc.dev] synchronised (file:///src) odoc is now pinned to file:///src (version dev) [odoc-parser.dev] synchronised (file:///src) odoc-parser is now pinned to file:///src (version dev) [odoc-md.dev] synchronised (file:///src) odoc-md is now pinned to file:///src (version dev) [odoc-driver.dev] synchronised (file:///src) odoc-driver is now pinned to file:///src (version dev) [NOTE] Package odoc-bench does not exist in opam repositories registered in the current switch. [odoc-bench.dev] synchronised (file:///src) odoc-bench is now pinned to file:///src (version dev) 2025-08-21 16:21.18 ---> using "717ffab3431557c528b0264c866f064f08001a9e2697c870d5c9b53561c363fc" from cache /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-08-21 16:21.19 ---> using "e7b54c778550b5bb1d81bf777689aa9f0cbafb10c10c24f474b37c592bf6df0b" from cache /src: (env DEPS "alcotest.1.9.0 astring.0.8.5 b0.0.0.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.8 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.20.0 dune-configurator.3.20.0 fieldslib.v0.16.0 fmt.0.11.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-toplevel.6.2.0 jst-config.v0.16.0 logs.0.9.0 lwt.5.9.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.6 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.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.13.2 result.1.5 rresult.0.7.0 sedlex.3.6 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.1.0 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS")) [WARNING] Unknown update command for bsd, skipping system update <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [odoc-md.dev] synchronised (file:///src) [odoc-bench.dev] synchronised (file:///src) [odoc.dev] synchronised (file:///src) [odoc-parser.dev] synchronised (file:///src) [sherlodoc.dev] synchronised (file:///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: jq <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/local/bin/sudo "pkg" "install" "-y" "jq" - Updating FreeBSD repository catalogue... - [rosemary] Fetching data.pkg: .. - ...... - .. done - Processing entries: . - . - .. - .. - .. - .. done - FreeBSD repository update completed. 35660 packages processed. - All repositories are up to date. - New version of pkg detected; it needs to be installed first. - The following 1 package(s) will be affected (of 0 checked): - - Installed packages to be UPGRADED: - pkg: 2.2.1 -> 2.2.2 - - Number of packages to be upgraded: 1 - - 12 MiB to be downloaded. - [rosemary] [1/1] Fetching pkg-2.2.2.pkg: - ... - ... - .... done - Checking integrity... done (0 conflicting) - [rosemary] [1/1] Upgrading pkg from 2.2.1 to 2.2.2... - [rosemary] [1/1] Extracting pkg-2.2.2: .......... done - Updating FreeBSD repository catalogue... - FreeBSD repository is up to date. - All repositories are up to date. - The following 2 package(s) will be affected (of 0 checked): - - New packages to be INSTALLED: - jq: 1.8.0 - oniguruma: 6.9.10 - - Number of packages to be installed: 2 - - The process will require 2 MiB more space. - 581 KiB to be downloaded. - [rosemary] [1/2] Fetching jq-1.8.0.pkg: .......... done - [rosemary] [2/2] Fetching oniguruma-6.9.10.pkg: ...... - .... done - Checking integrity... done (0 conflicting) - [rosemary] [1/2] Installing oniguruma-6.9.10... - [rosemary] [1/2] Extracting oniguruma-6.9.10: .......... done - [rosemary] [2/2] Installing jq-1.8.0... - [rosemary] [2/2] Extracting jq-1.8.0: .......... done - ===== - Message from oniguruma-6.9.10: - - -- - ===> NOTICE: - - This port is deprecated; you may wish to reconsider installing it: - - Project archived upstream. - - It is scheduled to be removed on or after 2026-12-01. 2025-08-21 16:21.19 ---> using "0fa5cb57852d61a3f638542529ab4af52233b9796be01f1090cbd07a092a5698" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (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 109 packages ∗ alcotest 1.9.0 ∗ astring 0.8.5 ∗ b0 0.0.5 ∗ base v0.16.4 ∗ base-bytes base ∗ base64 3.5.1 ∗ base_bigstring v0.16.0 ∗ base_quickcheck v0.16.0 ∗ bigstringaf 0.10.0 ∗ bin_prot v0.16.0 ∗ bisect_ppx 2.8.3 ∗ bos 0.2.1 ∗ brr 0.0.8 ∗ camlp-streams 5.0.1 ∗ checkseum 0.5.2 ∗ cmarkit 0.3.0 ∗ cmdliner 1.3.0 ∗ conf-jq 1 ∗ core v0.16.2 ∗ core_kernel v0.16.0 ∗ cppo 1.8.0 ∗ crunch 4.0.0 ∗ csexp 1.5.2 ∗ decompress 1.5.3 ∗ dune 3.20.0 ∗ dune-configurator 3.20.0 ∗ fieldslib v0.16.0 ∗ fmt 0.11.0 ∗ fpath 0.7.3 ∗ gen 1.1 ∗ int_repr v0.16.0 ∗ jane-street-headers v0.16.0 ∗ js_of_ocaml 6.2.0 ∗ js_of_ocaml-compiler 6.2.0 ∗ js_of_ocaml-toplevel 6.2.0 ∗ jst-config v0.16.0 ∗ logs 0.9.0 ∗ lwt 5.9.1 ∗ mdx 2.5.0 ∗ menhir 20240715 ∗ menhirCST 20240715 ∗ menhirLib 20240715 ∗ menhirSdk 20240715 ∗ num 1.6 ∗ ocaml-compiler-libs v0.12.4 ∗ ocaml-syntax-shims 1.0.0 ∗ ocaml-version 4.0.1 ∗ ocamlbuild 0.16.1 ∗ ocamlfind 1.9.8 ∗ ocplib-endian 1.2 ∗ odig 0.0.9 ∗ odoc dev (pinned) [required by odig] ∗ odoc-parser dev (pinned) [required by odoc] ∗ optint 0.3.0 ∗ parsexp v0.16.0 ∗ ppx_assert v0.16.0 ∗ ppx_base v0.16.0 ∗ ppx_bench v0.16.0 ∗ ppx_bin_prot v0.16.0 ∗ ppx_blob 0.9.0 ∗ ppx_cold v0.16.0 ∗ ppx_compare v0.16.0 ∗ ppx_custom_printf v0.16.0 ∗ ppx_derivers 1.2.1 ∗ ppx_disable_unused_warnings v0.16.0 ∗ ppx_enumerate v0.16.0 ∗ ppx_expect v0.16.1 ∗ ppx_fields_conv v0.16.0 ∗ ppx_fixed_literal v0.16.0 ∗ ppx_globalize v0.16.0 ∗ ppx_hash v0.16.0 ∗ ppx_here v0.16.0 ∗ ppx_ignore_instrumentation v0.16.0 ∗ ppx_inline_test v0.16.1 ∗ ppx_jane v0.16.0 ∗ ppx_let v0.16.0 ∗ ppx_log v0.16.0 ∗ ppx_module_timer v0.16.0 ∗ ppx_optcomp v0.16.0 ∗ ppx_optional v0.16.0 ∗ ppx_pipebang v0.16.0 ∗ ppx_sexp_conv v0.16.0 ∗ ppx_sexp_message v0.16.0 ∗ ppx_sexp_value v0.16.0 ∗ ppx_stable v0.16.0 ∗ ppx_stable_witness v0.16.0 ∗ ppx_string v0.16.0 ∗ ppx_tydi v0.16.0 ∗ ppx_typerep_conv v0.16.0 ∗ ppx_variants_conv v0.16.0 ∗ ppxlib 0.35.0 ∗ ptime 1.2.0 ∗ re 1.13.2 ∗ result 1.5 ∗ rresult 0.7.0 ∗ sedlex 3.6 ∗ seq base ∗ sexplib v0.16.0 ∗ sexplib0 v0.16.0 ∗ splittable_random v0.16.0 ∗ stdio v0.16.0 ∗ stdlib-shims 0.3.0 ∗ time_now v0.16.0 ∗ topkg 1.1.0 ∗ typerep v0.16.0 ∗ tyxml 4.6.0 ∗ uutf 1.0.4 ∗ variantslib v0.16.0 ∗ yojson 3.0.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> ⬇ retrieved b0.0.0.5 (cached) ⬇ retrieved astring.0.8.5 (cached) ⬇ retrieved alcotest.1.9.0 (cached) ⬇ retrieved base64.3.5.1 (cached) ⬇ retrieved base_bigstring.v0.16.0 (cached) ⬇ retrieved base.v0.16.4 (cached) ⬇ retrieved bigstringaf.0.10.0 (cached) ⬇ retrieved base_quickcheck.v0.16.0 (cached) ⬇ retrieved bin_prot.v0.16.0 (cached) ⬇ retrieved bos.0.2.1 (cached) ⬇ retrieved bisect_ppx.2.8.3 (cached) ⬇ retrieved camlp-streams.5.0.1 (cached) ⬇ retrieved checkseum.0.5.2 (cached) ⬇ retrieved cmarkit.0.3.0 (cached) ⬇ retrieved cmdliner.1.3.0 (cached) ∗ installed conf-jq.1 ⬇ retrieved brr.0.0.8 (https://erratique.ch/software/brr/releases/brr-0.0.8.tbz) ⬇ retrieved core.v0.16.2 (cached) ⬇ retrieved cppo.1.8.0 (cached) ⬇ retrieved crunch.4.0.0 (cached) ⬇ retrieved csexp.1.5.2 (cached) ⬇ retrieved core_kernel.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/core_kernel-v0.16.0.tar.gz) ⬇ retrieved decompress.1.5.3 (cached) ⬇ retrieved fieldslib.v0.16.0 (cached) ⬇ retrieved fmt.0.11.0 (cached) ⬇ retrieved fpath.0.7.3 (cached) ⬇ retrieved gen.1.1 (cached) ⬇ retrieved int_repr.v0.16.0 (cached) ⬇ retrieved jane-street-headers.v0.16.0 (cached) ⬇ retrieved jst-config.v0.16.0 (cached) ⬇ retrieved logs.0.9.0 (cached) ∗ installed cmdliner.1.3.0 ⬇ retrieved lwt.5.9.1 (cached) ⬇ retrieved mdx.2.5.0 (cached) ⬇ retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached) ⬇ retrieved num.1.6 (cached) ⬇ retrieved ocaml-compiler-libs.v0.12.4 (cached) ⬇ retrieved ocaml-syntax-shims.1.0.0 (cached) ⬇ retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-toplevel.6.2.0 (cached) ⬇ retrieved ocaml-version.4.0.1 (cached) ∗ installed num.1.6 ⬇ retrieved ocamlfind.1.9.8 (cached) ⬇ retrieved ocplib-endian.1.2 (cached) ⬇ retrieved ocamlbuild.0.16.1 (cached) ⬇ retrieved optint.0.3.0 (cached) ⬇ retrieved odig.0.0.9 (cached) ⬇ retrieved parsexp.v0.16.0 (cached) ⬇ retrieved ppx_assert.v0.16.0 (cached) ⬇ retrieved ppx_base.v0.16.0 (cached) ⬇ retrieved dune.3.20.0, dune-configurator.3.20.0 (cached) ⬇ retrieved ppx_blob.0.9.0 (cached) ⬇ retrieved ppx_bench.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_bench-v0.16.0.tar.gz) ⬇ retrieved ppx_cold.v0.16.0 (cached) ⬇ retrieved ppx_compare.v0.16.0 (cached) ⬇ retrieved ppx_custom_printf.v0.16.0 (cached) ⬇ retrieved ppx_derivers.1.2.1 (cached) ∗ installed ocamlbuild.0.16.1 ⬇ retrieved ppx_disable_unused_warnings.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_disable_unused_warnings-v0.16.0.tar.gz) ⬇ retrieved ppx_bin_prot.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_bin_prot-v0.16.0.tar.gz) ⬇ retrieved ppx_enumerate.v0.16.0 (cached) ⬇ retrieved ppx_fields_conv.v0.16.0 (cached) ⬇ retrieved ppx_expect.v0.16.1 (cached) ⬇ retrieved ppx_fixed_literal.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_fixed_literal-v0.16.0.tar.gz) ⬇ retrieved ppx_globalize.v0.16.0 (cached) ⬇ retrieved ppx_here.v0.16.0 (cached) ⬇ retrieved ppx_hash.v0.16.0 (cached) ⬇ retrieved ppx_ignore_instrumentation.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_ignore_instrumentation-v0.16.0.tar.gz) ⬇ retrieved ppx_inline_test.v0.16.1 (cached) ⬇ retrieved ppx_jane.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_jane-v0.16.0.tar.gz) ⬇ retrieved ppx_log.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_log-v0.16.0.tar.gz) ⬇ retrieved ppx_module_timer.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_module_timer-v0.16.0.tar.gz) ⬇ retrieved ppx_let.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_let-v0.16.0.tar.gz) ⬇ retrieved ppx_optcomp.v0.16.0 (cached) ⬇ retrieved ppx_optional.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_optional-v0.16.0.tar.gz) ⬇ retrieved ppx_pipebang.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_pipebang-v0.16.0.tar.gz) ⬇ retrieved ppx_sexp_conv.v0.16.0 (cached) ⬇ retrieved ppx_sexp_message.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_message-v0.16.0.tar.gz) ⬇ retrieved ppx_stable.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_stable-v0.16.0.tar.gz) ⬇ retrieved ppx_sexp_value.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_value-v0.16.0.tar.gz) ⬇ retrieved ppx_string.v0.16.0 (cached) ∗ installed ocamlfind.1.9.8 ∗ installed base-bytes.base ⬇ retrieved ppx_stable_witness.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_stable_witness-v0.16.0.tar.gz) ⬇ retrieved ppx_typerep_conv.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_typerep_conv-v0.16.0.tar.gz) ⬇ retrieved ppx_tydi.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_tydi-v0.16.0.tar.gz) ⬇ retrieved ptime.1.2.0 (cached) ⬇ retrieved ppx_variants_conv.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_variants_conv-v0.16.0.tar.gz) ⬇ retrieved result.1.5 (cached) ⬇ retrieved rresult.0.7.0 (cached) ⬇ retrieved re.1.13.2 (cached) ⬇ retrieved seq.base (cached) ∗ installed seq.base ⬇ retrieved sedlex.3.6 (cached) ⬇ retrieved sexplib.v0.16.0 (cached) ⬇ retrieved sexplib0.v0.16.0 (cached) ⬇ retrieved ppxlib.0.35.0 (cached) ⬇ retrieved splittable_random.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/splittable_random-v0.16.0.tar.gz) ⬇ retrieved stdlib-shims.0.3.0 (cached) ⬇ retrieved stdio.v0.16.0 (cached) ⬇ retrieved time_now.v0.16.0 (cached) ⬇ retrieved topkg.1.1.0 (cached) ⬇ retrieved uutf.1.0.4 (cached) ⬇ retrieved typerep.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/typerep-v0.16.0.tar.gz) ⬇ retrieved tyxml.4.6.0 (cached) ⬇ retrieved variantslib.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/variantslib-v0.16.0.tar.gz) ⬇ retrieved yojson.3.0.0 (cached) ∗ installed topkg.1.1.0 ∗ installed astring.0.8.5 ∗ installed rresult.0.7.0 ∗ installed uutf.1.0.4 ∗ installed ptime.1.2.0 ∗ installed fmt.0.11.0 ∗ installed fpath.0.7.3 ∗ installed cmarkit.0.3.0 ∗ installed b0.0.0.5 ∗ installed dune.3.20.0 ∗ installed stdlib-shims.0.3.0 ∗ installed sexplib0.v0.16.0 ∗ installed result.1.5 ∗ installed ppx_derivers.1.2.1 ∗ installed optint.0.3.0 ∗ installed ocaml-version.4.0.1 ∗ installed ocaml-syntax-shims.1.0.0 ∗ installed ocaml-compiler-libs.v0.12.4 ∗ installed yojson.3.0.0 ∗ installed re.1.13.2 ∗ installed parsexp.v0.16.0 ∗ installed menhirSdk.20240715 ∗ installed menhirLib.20240715 ∗ installed menhirCST.20240715 ∗ installed tyxml.4.6.0 ∗ installed sexplib.v0.16.0 ∗ installed alcotest.1.9.0 ∗ installed jane-street-headers.v0.16.0 ∗ installed gen.1.1 ∗ installed csexp.1.5.2 [ERROR] The compilation of menhir.20240715 failed at "dune build -p menhir -j 39". [ERROR] The compilation of ppxlib.0.35.0 failed at "dune build -p ppxlib -j 39 @install". ∗ installed crunch.4.0.0 ∗ installed cppo.1.8.0 ∗ installed camlp-streams.5.0.1 ∗ installed base64.3.5.1 ∗ installed odoc-parser.dev ∗ installed odoc.dev ∗ installed ocplib-endian.1.2 ∗ installed dune-configurator.3.20.0 ∗ installed odig.0.0.9 ∗ installed checkseum.0.5.2 ∗ installed bigstringaf.0.10.0 ∗ installed decompress.1.5.3 ∗ installed lwt.5.9.1 ∗ installed base.v0.16.4 2025-08-21 17:20.02: Cancelling: Timeout (60.0 minutes) Job cancelled 2025-08-21 17:20.28: Timeout (60.0 minutes)