2025-07-31 07:28.05: New job: test mbarbin/print-table https://github.com/mbarbin/print-table.git#refs/heads/main (6aab08416eca9905e5bc16aa5437c7d7486463e9) (linux-x86_64:(lower-bound))
Base: ocaml/opam:debian-12-ocaml-4.14@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/mbarbin/print-table.git" -b "main" && cd "print-table" && git reset --hard 6aab0841
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc
# debian-12-4.14_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.4 /usr/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 b8021439f8c57ba6435bc2263f6596671f4f4466 || git fetch origin master) && git reset -q --hard b8021439f8c57ba6435bc2263f6596671f4f4466 && 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.0 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 conf-bash.1 core.v0.16.0 dune.3.17.2 dune-configurator.2.5.1 dune-private-libs.2.5.1 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 int_repr.v0.16.0 jane-street-headers.v0.16.0 jbuilder.1.0+beta20.1 jst-config.v0.16.0 num.1.5 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 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.0 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.0 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.0 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.33.0 printbox.0.12 printbox-md.0.12 printbox-text.0.12 re.1.8.0 seq.0.3 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.1.0 time_now.v0.16.0 topkg.1.0.8 typerep.v0.16.0 uucp.14.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-07-31 07:28.05: Using cache hint "mbarbin/print-table-ocaml/opam:debian-12-ocaml-4.14@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc-debian-12-4.14_opam-2.4-8f4807a116a237f5c7c3b9797ac01dd6"
2025-07-31 07:28.05: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc)
(comment debian-12-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/bin/opam-2.4 /usr/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 b8021439f8c57ba6435bc2263f6596671f4f4466 || git fetch origin master) && git reset -q --hard b8021439f8c57ba6435bc2263f6596671f4f4466 && 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.0 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 conf-bash.1 core.v0.16.0 dune.3.17.2 dune-configurator.2.5.1 dune-private-libs.2.5.1 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 int_repr.v0.16.0 jane-street-headers.v0.16.0 jbuilder.1.0+beta20.1 jst-config.v0.16.0 num.1.5 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 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.0 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.0 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.0 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.33.0 printbox.0.12 printbox-md.0.12 printbox-text.0.12 re.1.8.0 seq.0.3 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.1.0 time_now.v0.16.0 topkg.1.0.8 typerep.v0.16.0 uucp.14.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-07-31 07:28.05: Waiting for resource in pool OCluster
2025-07-31 11:45.01: Waiting for worker…
2025-07-31 11:47.06: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 6aab084 Remove invalid badge
(from ocaml/opam:debian-12-ocaml-4.14@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc' locally
docker.io/ocaml/opam@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc: Pulling from ocaml/opam
2b437dab448b: Already exists
a2c99602167c: Pulling fs layer
66deb4cf7a3c: Pulling fs layer
48e936736765: Pulling fs layer
04833b9bb797: Pulling fs layer
48e936736765: Waiting
04833b9bb797: Waiting
66deb4cf7a3c: Verifying Checksum
66deb4cf7a3c: Download complete
48e936736765: Verifying Checksum
48e936736765: Download complete
04833b9bb797: Verifying Checksum
04833b9bb797: Download complete
a2c99602167c: Verifying Checksum
a2c99602167c: Download complete
a2c99602167c: Pull complete
66deb4cf7a3c: Pull complete
48e936736765: Pull complete
04833b9bb797: Pull complete
Digest: sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc
Status: Downloaded newer image for ocaml/opam@sha256:288fd5f9a1ea6e902f595976d15ac1ec018ec29d1eef2e63f78b0f6297933ecc
2025-07-31 11:47.06 ---> using "142100138a91f890d28d70e008b081a84bdd607cd5d8f8de3ee28b415bda950d" from cache
/: (comment debian-12-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/bin/opam-2.4 /usr/bin/opam"))
2025-07-31 11:47.06 ---> using "e7ef1ab5d72bc3878cd9cd9c8c92e02e8756dc4553455ce08375017d7fa98b99" from cache
/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from 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.0 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 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-07-31 11:47.06 ---> using "a00eaa7d6e20b2842d2d0a756d83e11cfa01c393bbdfe1614e5e7ef66cc31d7f" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-60-generic
The OCaml toplevel, version 4.14.2
2.4.1
2025-07-31 11:47.06 ---> using "5647ab45ba026b994ed399c0ca07168f94cbd24594308c3674ee719bb6818277" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-07-31 11:47.06 ---> using "7c203636209f7eeac807dc77915feba49206ddb0c0d8c07e107dda3fc65cf32c" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e b8021439f8c57ba6435bc2263f6596671f4f4466 || git fetch origin master) && git reset -q --hard b8021439f8c57ba6435bc2263f6596671f4f4466 && git log --no-decorate -n1 --oneline && opam update -u"))
b8021439f8 Merge pull request #28261 from kit-ty-kate/deploy-fix-25819
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository
Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
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.
# To update the current shell environment, run: eval $(opam env)
2025-07-31 11:47.06 ---> using "bb8b00bb3b1a844b3a3653491cf74782175301b7e5d491116b6dee5ef2efcb46" from cache
/src: (copy (src print-table.opam print-table-tests.opam print-table-dev.opam)
(dst ./))
2025-07-31 11:47.06 ---> saved as "1f9b42125f27a23dd2f773b5124ccb39d7ab1486932d774dee7773bfb2f9b6c7"
/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-07-31 11:47.10 ---> saved as "bd58f9806d2216dba58f4ed83b91016489c2ba1c0529e4010b0cd102f9836188"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-07-31 11:47.10 ---> saved as "eb4fe8b508a2b2fedc7f4b3c89c6396d2ee26c7e4ee2c2194e4d3af031462788"
/src: (env DEPS "base.v0.16.0 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 conf-bash.1 core.v0.16.0 dune.3.17.2 dune-configurator.2.5.1 dune-private-libs.2.5.1 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 int_repr.v0.16.0 jane-street-headers.v0.16.0 jbuilder.1.0+beta20.1 jst-config.v0.16.0 num.1.5 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 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.0 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.0 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.0 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.33.0 printbox.0.12 printbox-md.0.12 printbox-text.0.12 re.1.8.0 seq.0.3 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.1.0 time_now.v0.16.0 topkg.1.0.8 typerep.v0.16.0 uucp.14.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"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [19.6 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 402 kB in 0s (1351 kB/s)
- Reading package lists...
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[print-table.dev] synchronised (file:///src)
[print-table-tests.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-07-31 11:47.18 ---> saved as "7a59dd0d43a1802211a15c38531e342ad7c5fe82509fc3d535a14953b787958b"
/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 72 packages
- install base v0.16.0
- install base_bigstring v0.16.0
- install base_quickcheck v0.16.0
- install bin_prot v0.16.0
- install conf-bash 1
- install core v0.16.0
- install dune 3.17.2
- install dune-configurator 2.5.1
- install dune-private-libs 2.5.1
- install expect_test_helpers_core v0.16.0
- install fieldslib v0.16.0
- install int_repr v0.16.0
- install jane-street-headers v0.16.0
- install jbuilder 1.0+beta20.1 (deprecated)
- install jst-config v0.16.0
- install num 1.5
- install ocaml-compiler-libs v0.11.0
- install ocamlbuild 0.14.0
- install ocamlfind 1.9.1
- install parsexp v0.16.0
- install ppx_assert v0.16.0
- install ppx_base v0.16.0
- install ppx_bench v0.16.0
- install ppx_bin_prot v0.16.0
- install ppx_cold v0.16.0
- install ppx_compare v0.16.0
- install ppx_custom_printf v0.16.0
- install ppx_derivers 1.0
- install ppx_disable_unused_warnings v0.16.0
- install ppx_enumerate v0.16.0
- install ppx_expect v0.16.0
- install ppx_fields_conv v0.16.0
- install ppx_fixed_literal v0.16.0
- install ppx_globalize v0.16.0
- install ppx_hash v0.16.0
- install ppx_here v0.16.0
- install ppx_ignore_instrumentation v0.16.0
- install ppx_inline_test v0.16.0
- install ppx_jane v0.16.0
- install ppx_let v0.16.0
- install ppx_log v0.16.0
- install ppx_module_timer v0.16.0
- install ppx_optcomp v0.16.0
- install ppx_optional v0.16.0
- install ppx_pipebang v0.16.0
- install ppx_sexp_conv v0.16.0
- install ppx_sexp_message v0.16.0
- install ppx_sexp_value v0.16.0
- install ppx_stable v0.16.0
- install ppx_stable_witness v0.16.0
- install ppx_string v0.16.0
- install ppx_tydi v0.16.0
- install ppx_typerep_conv v0.16.0
- install ppx_variants_conv v0.16.0
- install ppxlib 0.33.0
- install printbox 0.12
- install printbox-md 0.12
- install printbox-text 0.12
- install re 1.8.0
- install seq 0.3
- install sexp_pretty v0.16.0
- install sexplib v0.16.0
- install sexplib0 v0.16.0
- install splittable_random v0.16.0
- install stdio v0.16.0
- install stdlib-shims 0.1.0
- install time_now v0.16.0
- install topkg 1.0.8
- install typerep v0.16.0
- install uucp 14.0.0
- install uutf 1.0.4
- install variantslib v0.16.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.0 (cached)
-> retrieved base_bigstring.v0.16.0 (cached)
-> retrieved base_quickcheck.v0.16.0 (cached)
-> retrieved bin_prot.v0.16.0 (cached)
-> retrieved core.v0.16.0 (cached)
-> installed conf-bash.1
-> retrieved expect_test_helpers_core.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 jbuilder.1.0+beta20.1 (cached)
-> retrieved dune-configurator.2.5.1, dune-private-libs.2.5.1 (cached)
-> retrieved dune.3.17.2 (cached)
-> retrieved jst-config.v0.16.0 (cached)
-> retrieved num.1.5 (cached)
-> retrieved ocaml-compiler-libs.v0.11.0 (cached)
-> retrieved ocamlbuild.0.14.0 (cached)
-> retrieved ocamlfind.1.9.1 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_assert.v0.16.0 (cached)
-> retrieved ppx_base.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.0 (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.0 (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.0 (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_conv.v0.16.0 (cached)
-> retrieved ppx_sexp_message.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 re.1.8.0 (cached)
-> retrieved seq.0.3 (cached)
-> retrieved sexp_pretty.v0.16.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved splittable_random.v0.16.0 (cached)
-> retrieved ppxlib.0.33.0 (cached)
-> retrieved printbox.0.12, printbox-md.0.12, printbox-text.0.12 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved stdlib-shims.0.1.0 (cached)
-> retrieved time_now.v0.16.0 (cached)
-> retrieved typerep.v0.16.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved variantslib.v0.16.0 (cached)
-> retrieved uucp.14.0.0 (cached)
-> installed num.1.5
-> installed ocamlfind.1.9.1
-> installed ocamlbuild.0.14.0
-> installed jbuilder.1.0+beta20.1
-> installed ppx_derivers.1.0
-> installed ocaml-compiler-libs.v0.11.0
-> installed topkg.1.0.8
-> installed uutf.1.0.4
-> installed dune.3.17.2
-> installed jane-street-headers.v0.16.0
-> installed seq.0.3
-> installed printbox.0.12
-> installed stdlib-shims.0.1.0
-> installed sexplib0.v0.16.0
-> installed re.1.8.0
-> installed parsexp.v0.16.0
-> installed dune-private-libs.2.5.1
-> installed sexplib.v0.16.0
-> installed dune-configurator.2.5.1
-> installed base.v0.16.0
-> installed fieldslib.v0.16.0
-> installed variantslib.v0.16.0
-> installed stdio.v0.16.0
-> installed typerep.v0.16.0
-> installed uucp.14.0.0
-> installed printbox-text.0.12
-> installed printbox-md.0.12
-> installed ppxlib.0.33.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_tydi.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_disable_unused_warnings.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.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_stable.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_fields_conv.v0.16.0
-> installed ppx_ignore_instrumentation.v0.16.0
-> installed ppx_pipebang.v0.16.0
-> installed ppx_fixed_literal.v0.16.0
-> installed ppx_optional.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_let.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_sexp_value.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_sexp_message.v0.16.0
-> installed ppx_custom_printf.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_log.v0.16.0
-> installed jst-config.v0.16.0
-> installed sexp_pretty.v0.16.0
-> installed ppx_string.v0.16.0
-> installed bin_prot.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_bin_prot.v0.16.0
-> installed ppx_module_timer.v0.16.0
-> installed ppx_inline_test.v0.16.0
-> installed ppx_bench.v0.16.0
-> installed ppx_expect.v0.16.0
-> 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.0
-> installed expect_test_helpers_core.v0.16.0
Done.
<><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-07-31 11:48.33 ---> saved as "5be17097a4b93877e93b596982637aa5006bd11226ec2dcfe7569043834dfc13"
/src: (copy (src .) (dst /src))
2025-07-31 11:48.33 ---> saved as "c258257b3da22e62699c5886532b007bb7fbea88e2f84b0384a7adc08b4e79c4"
/src: (run (shell "opam exec -- dune build --only-packages=print-table,print-table-tests @install @check @runtest && rm -rf _build"))
2025-07-31 11:48.35 ---> saved as "eabc3c5c2985d87b96445a12eaf9690c613cedfa899b1d10e6f730fefc2fe8f6"
Job succeeded
2025-07-31 11:48.35: Job succeeded