2025-12-11 11:35.40: New job: test mbarbin/print-table https://github.com/mbarbin/print-table.git#refs/heads/main (c2262e84322b2c7c632c59410b05958c44cdd157) (freebsd-x86_64:freebsd-14.3-4.14_opam-2.4) Base: freebsd-14.3-ocaml-4.14 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/print-table.git" -b "main" && cd "print-table" && git reset --hard c2262e84 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM freebsd-14.3-ocaml-4.14 # freebsd-14.3-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 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 print-table.opam print-table-tests.opam print-table-dev.opam ./ RUN opam pin add -yn print-table.dev './' && \ opam pin add -yn print-table-tests.dev './' && \ opam pin add -yn print-table-dev.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="base.v0.16.4 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 core.v0.16.2 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 int_repr.v0.16.0 jane-street-headers.v0.16.0 jst-config.v0.16.0 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 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_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.2 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 printbox.0.12 printbox-md.0.12 printbox-text.0.12 re.1.14.0 sexp_pretty.v0.16.0 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.1 typerep.v0.16.0 uucp.17.0.0 uutf.1.0.4 variantslib.v0.16.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y print-table.dev print-table-tests.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=print-table,print-table-tests @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-12-11 11:35.40: Using cache hint "mbarbin/print-table-freebsd-14.3-ocaml-4.14-freebsd-14.3-4.14_opam-2.4-e6fe115d1cf5ccaf62329b79252e85b0" 2025-12-11 11:35.40: Using OBuilder spec: ((from freebsd-14.3-ocaml-4.14) (comment freebsd-14.3-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 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src print-table.opam print-table-tests.opam print-table-dev.opam) (dst ./)) (run (network host) (shell "opam pin add -yn print-table.dev './' && \ \nopam pin add -yn print-table-tests.dev './' && \ \nopam pin add -yn print-table-dev.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "base.v0.16.4 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 core.v0.16.2 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 int_repr.v0.16.0 jane-street-headers.v0.16.0 jst-config.v0.16.0 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 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_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.2 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 printbox.0.12 printbox-md.0.12 printbox-text.0.12 re.1.14.0 sexp_pretty.v0.16.0 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.1 typerep.v0.16.0 uucp.17.0.0 uutf.1.0.4 variantslib.v0.16.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 print-table.dev print-table-tests.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=print-table,print-table-tests @install @check @runtest && rm -rf _build")) ) 2025-12-11 11:35.40: Waiting for resource in pool OCluster 2025-12-11 11:35.40: Waiting for worker… 2025-12-11 11:35.40: Got resource from pool OCluster Building on rosemary HEAD is now at 28196fd Refactor directory structure HEAD is now at c2262e8 Merge pull request #6 from mbarbin/pkg-directory-structure (from freebsd-14.3-ocaml-4.14) 2025-12-11 11:32.31 ---> using "7e5247e9853d1c2fb95ef9ffdfdb895ef70516f48155f08a9b10db936cb8c6c6" from cache /: (comment freebsd-14.3-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-12-11 11:32.32 ---> using "f8f2ae50f983ba53790a433c81d8570b8becc44c74ab2707cf43746ed1b463d1" 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-12-11 11:32.32 ---> using "a95cd97103c96a777086d9508c45964fbffa4285a5c5e6703b704acabfb6945b" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) FreeBSD 14.3-RELEASE-p3 The OCaml toplevel, version 4.14.2 2.4.1 2025-12-11 11:32.32 ---> using "199d8be57ed603ac6837a6d6cc7e578c2f630e2b79e2520a8892deff98662ca8" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-12-11 11:32.32 ---> using "c9d8693a3c313f3750cea43d98891a3f5490d8d3ab8357236d5eb49fea038272" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u")) 1ec0eeb78d Merge pull request #28897 from dra27/ocamlfind-msys2-cygwin <><> 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.4.0 - ocaml-config.3 However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.4.0"), which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. 2025-12-11 11:32.33 ---> using "847471acdfe9df28f46508ad44676d8cc68e03822a223bf8285587f04977e663" from cache /src: (copy (src print-table.opam print-table-tests.opam print-table-dev.opam) (dst ./)) 2025-12-11 11:32.33 ---> using "c28d64539175ee1750e39d861294f79e6a33afd29ca2025a9ad3f2308b3c2063" from cache /src: (run (network host) (shell "opam pin add -yn print-table.dev './' && \ \nopam pin add -yn print-table-tests.dev './' && \ \nopam pin add -yn print-table-dev.dev './'")) [print-table.dev] synchronised (file:///src) print-table is now pinned to file:///src (version dev) [NOTE] Package print-table-tests does not exist in opam repositories registered in the current switch. [print-table-tests.dev] synchronised (file:///src) print-table-tests is now pinned to file:///src (version dev) [NOTE] Package print-table-dev does not exist in opam repositories registered in the current switch. [print-table-dev.dev] synchronised (file:///src) print-table-dev is now pinned to file:///src (version dev) 2025-12-11 11:32.33 ---> using "660df04779910f3ad2578c1a6a1cebf37e3bfa7a76fb63a9e4d9f132b4e16b54" from cache /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-12-11 11:32.33 ---> using "9f7103b45e7bf2ae66eb1e28519426a002b46b46e1fe95da6964805e6d84fd09" from cache /src: (env DEPS "base.v0.16.4 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 core.v0.16.2 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 int_repr.v0.16.0 jane-street-headers.v0.16.0 jst-config.v0.16.0 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 ocamlbuild.0.16.1 ocamlfind.1.9.8 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_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.2 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 printbox.0.12 printbox-md.0.12 printbox-text.0.12 re.1.14.0 sexp_pretty.v0.16.0 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.1 typerep.v0.16.0 uucp.17.0.0 uutf.1.0.4 variantslib.v0.16.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 print-table.dev print-table-tests.dev $DEPS")) [WARNING] Unknown update command for bsd, skipping system update <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [print-table-tests.dev] synchronised (file:///src) [print-table.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). 2025-12-11 11:32.33 ---> using "6f7743f367db119163ca05122ee0dc17930b3041b91a8843be8ba5f1f4c46367" 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 69 packages ∗ base v0.16.4 ∗ base_bigstring v0.16.0 ∗ base_quickcheck v0.16.0 ∗ bin_prot v0.16.0 ∗ core v0.16.2 ∗ csexp 1.5.2 ∗ dune 3.20.2 ∗ dune-configurator 3.20.2 ∗ expect_test_helpers_core v0.16.0 ∗ fieldslib v0.16.0 ∗ int_repr v0.16.0 ∗ jane-street-headers v0.16.0 ∗ jst-config v0.16.0 ∗ num 1.6 ∗ ocaml-compiler-libs v0.12.4 ∗ ocamlbuild 0.16.1 ∗ ocamlfind 1.9.8 ∗ 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_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.2 ∗ 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 ∗ printbox 0.12 ∗ printbox-md 0.12 ∗ printbox-text 0.12 ∗ re 1.14.0 ∗ sexp_pretty v0.16.0 ∗ 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.1 ∗ typerep v0.16.0 ∗ uucp 17.0.0 ∗ uutf 1.0.4 ∗ variantslib v0.16.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> ⬇ retrieved base_quickcheck.v0.16.0 (cached) ⬇ retrieved base_bigstring.v0.16.0 (cached) ⬇ retrieved base.v0.16.4 (cached) ⬇ retrieved core.v0.16.2 (cached) ⬇ retrieved csexp.1.5.2 (cached) ⬇ retrieved bin_prot.v0.16.0 (cached) ⬇ retrieved fieldslib.v0.16.0 (cached) ⬇ retrieved int_repr.v0.16.0 (cached) ⬇ retrieved jane-street-headers.v0.16.0 (cached) ⬇ retrieved jst-config.v0.16.0 (cached) ⬇ retrieved num.1.6 (cached) ⬇ retrieved ocaml-compiler-libs.v0.12.4 (cached) ⬇ retrieved expect_test_helpers_core.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/expect_test_helpers_core-v0.16.0.tar.gz) ⬇ retrieved ocamlfind.1.9.8 (cached) ⬇ retrieved parsexp.v0.16.0 (cached) ⬇ retrieved ocamlbuild.0.16.1 (cached) ⬇ retrieved ppx_base.v0.16.0 (cached) ⬇ retrieved ppx_assert.v0.16.0 (cached) ⬇ retrieved ppx_bench.v0.16.0 (cached) ⬇ retrieved ppx_bin_prot.v0.16.0 (cached) ⬇ 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) ⬇ retrieved ppx_disable_unused_warnings.v0.16.0 (cached) ⬇ retrieved ppx_enumerate.v0.16.0 (cached) ⬇ retrieved ppx_fields_conv.v0.16.0 (cached) ⬇ retrieved ppx_expect.v0.16.2 (cached) ⬇ retrieved ppx_fixed_literal.v0.16.0 (cached) ⬇ retrieved ppx_globalize.v0.16.0 (cached) ⬇ retrieved ppx_hash.v0.16.0 (cached) ⬇ retrieved ppx_here.v0.16.0 (cached) ⬇ retrieved ppx_ignore_instrumentation.v0.16.0 (cached) ⬇ retrieved ppx_inline_test.v0.16.1 (cached) ⬇ retrieved ppx_jane.v0.16.0 (cached) ⬇ retrieved ppx_let.v0.16.0 (cached) ⬇ retrieved ppx_log.v0.16.0 (cached) ⬇ retrieved ppx_module_timer.v0.16.0 (cached) ⬇ retrieved ppx_optcomp.v0.16.0 (cached) ⬇ retrieved ppx_optional.v0.16.0 (cached) ⬇ retrieved ppx_pipebang.v0.16.0 (cached) ⬇ retrieved ppx_sexp_message.v0.16.0 (cached) ⬇ retrieved ppx_sexp_conv.v0.16.0 (cached) ⬇ retrieved ppx_sexp_value.v0.16.0 (cached) ⬇ retrieved ppx_stable.v0.16.0 (cached) ⬇ retrieved ppx_stable_witness.v0.16.0 (cached) ⬇ retrieved ppx_string.v0.16.0 (cached) ⬇ retrieved ppx_tydi.v0.16.0 (cached) ⬇ retrieved ppx_typerep_conv.v0.16.0 (cached) ⬇ retrieved ppx_variants_conv.v0.16.0 (cached) ⬇ retrieved ppxlib.0.35.0 (cached) ⬇ retrieved re.1.14.0 (cached) ⬇ retrieved dune.3.20.2, dune-configurator.3.20.2 (cached) ⬇ retrieved sexplib.v0.16.0 (cached) ⬇ retrieved sexp_pretty.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexp_pretty-v0.16.0.tar.gz) ⬇ retrieved sexplib0.v0.16.0 (cached) ⬇ retrieved printbox.0.12, printbox-md.0.12, printbox-text.0.12 (https://github.com/c-cube/printbox/releases/download/v0.12/printbox-0.12.tbz) ⬇ retrieved stdio.v0.16.0 (cached) ⬇ retrieved splittable_random.v0.16.0 (cached) ⬇ retrieved stdlib-shims.0.3.0 (cached) ⬇ retrieved time_now.v0.16.0 (cached) ⬇ retrieved typerep.v0.16.0 (cached) ∗ installed ocamlbuild.0.16.1 ⬇ retrieved uutf.1.0.4 (cached) ⬇ retrieved topkg.1.1.1 (cached) ⬇ retrieved variantslib.v0.16.0 (cached) ∗ installed num.1.6 ⬇ retrieved uucp.17.0.0 (cached) ∗ installed ocamlfind.1.9.8 ∗ installed topkg.1.1.1 ∗ installed uutf.1.0.4 ∗ installed dune.3.20.2 ∗ installed jane-street-headers.v0.16.0 ∗ installed ppx_derivers.1.2.1 ∗ installed printbox.0.12 ∗ installed csexp.1.5.2 ∗ installed stdlib-shims.0.3.0 ∗ installed sexplib0.v0.16.0 ∗ installed re.1.14.0 ∗ installed ocaml-compiler-libs.v0.12.4 ∗ installed parsexp.v0.16.0 ∗ installed dune-configurator.3.20.2 ∗ installed sexplib.v0.16.0 ∗ installed base.v0.16.4 ∗ installed fieldslib.v0.16.0 ∗ installed variantslib.v0.16.0 ∗ installed stdio.v0.16.0 ∗ installed typerep.v0.16.0 ∗ installed ppxlib.0.35.0 ∗ installed ppx_globalize.v0.16.0 ∗ installed ppx_tydi.v0.16.0 ∗ installed ppx_disable_unused_warnings.v0.16.0 ∗ installed ppx_cold.v0.16.0 ∗ installed ppx_here.v0.16.0 ∗ installed ppx_pipebang.v0.16.0 ∗ installed ppx_enumerate.v0.16.0 ∗ installed ppx_ignore_instrumentation.v0.16.0 ∗ installed ppx_stable_witness.v0.16.0 ∗ installed ppx_typerep_conv.v0.16.0 ∗ installed ppx_variants_conv.v0.16.0 ∗ installed ppx_fixed_literal.v0.16.0 ∗ installed ppx_optional.v0.16.0 ∗ installed ppx_optcomp.v0.16.0 ∗ installed ppx_compare.v0.16.0 ∗ installed ppx_stable.v0.16.0 ∗ installed ppx_fields_conv.v0.16.0 ∗ installed ppx_let.v0.16.0 ∗ installed ppx_sexp_conv.v0.16.0 ∗ installed uucp.17.0.0 ∗ installed ppx_assert.v0.16.0 ∗ installed ppx_sexp_value.v0.16.0 ∗ installed ppx_hash.v0.16.0 ∗ installed ppx_sexp_message.v0.16.0 ∗ installed printbox-text.0.12 ∗ installed printbox-md.0.12 ∗ installed ppx_base.v0.16.0 ∗ installed ppx_custom_printf.v0.16.0 ∗ installed ppx_log.v0.16.0 ∗ installed jst-config.v0.16.0 ∗ installed ppx_string.v0.16.0 ∗ installed sexp_pretty.v0.16.0 ∗ installed time_now.v0.16.0 ∗ installed ppx_module_timer.v0.16.0 ∗ installed ppx_inline_test.v0.16.1 ∗ installed bin_prot.v0.16.0 ∗ installed ppx_bench.v0.16.0 ∗ installed ppx_bin_prot.v0.16.0 ∗ installed ppx_expect.v0.16.2 ∗ installed splittable_random.v0.16.0 ∗ installed base_quickcheck.v0.16.0 ∗ installed ppx_jane.v0.16.0 ∗ installed int_repr.v0.16.0 ∗ installed base_bigstring.v0.16.0 ∗ installed core.v0.16.2 ∗ installed expect_test_helpers_core.v0.16.0 Done. 2025-12-11 11:32.33 ---> using "445ed36430e39067e9fe5a531d23f4c0659d1fac05dfb7d652118d08a565efbb" from cache /src: (copy (src .) (dst /src)) 2025-12-11 11:32.34 ---> using "2f13f7edeb1d61617f2de0c921897528e90c36fc135bd6ab30421af552aa3d96" from cache /src: (run (shell "opam exec -- dune build --only-packages=print-table,print-table-tests @install @check @runtest && rm -rf _build")) 2025-12-11 11:32.34 ---> using "ad164c3ca3db3698d7843c01120d0729005101ba6061668f908b3b19a8ffc9d4" from cache Job succeeded 2025-12-11 11:35.43: Job succeeded