Organisationsmbarbinprint-tablef5a3af ()debian-13-4.14_riscv64_opam-2.4

debian-13-4.14_riscv64_opam-2.4

Logs

Show full logs
2025-11-21 08:53.04: New job: test mbarbin/print-table https://github.com/mbarbin/print-table.git#refs/heads/main (f5a3af34c99495daf4f4c7464396cc5a170373fa) (linux-riscv64:debian-13-4.14_riscv64_opam-2.4)
Base: ocaml/opam:debian-13-ocaml-4.14@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/mbarbin/print-table.git" -b "main" && cd "print-table" && git reset --hard f5a3af34
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf
# debian-13-4.14_riscv64_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 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-11-21 08:53.04: Using cache hint "mbarbin/print-table-ocaml/opam:debian-13-ocaml-4.14@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf-debian-13-4.14_riscv64_opam-2.4-e6fe115d1cf5ccaf62329b79252e85b0"
2025-11-21 08:53.04: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf)
 (comment debian-13-4.14_riscv64_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 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-11-21 08:53.04: Waiting for resource in pool OCluster
2025-11-21 08:53.42: Waiting for worker…
2025-11-21 09:24.22: Got resource from pool OCluster
Building on riscv-bm-01.sw.ci.dev
All commits already cached
HEAD is now at f5a3af3 Merge pull request #4 from mbarbin/rm-unused-sexp-deps

(from ocaml/opam:debian-13-ocaml-4.14@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf' locally
docker.io/ocaml/opam@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf: Pulling from ocaml/opam
de6b66e2abcf: Already exists
f69676b5bf8f: Pulling fs layer
bd99c0c73b96: Pulling fs layer
f210851d5991: Pulling fs layer
594b880773c5: Pulling fs layer
88a6edaecebc: Pulling fs layer
8c35beb4616c: Pulling fs layer
e8a4d2e94f85: Pulling fs layer
d0f326f9e9ec: Pulling fs layer
956d5e78253b: Pulling fs layer
7954f716a115: Pulling fs layer
581e2c81493a: Pulling fs layer
5529fc0e1c40: Pulling fs layer
79db350ffd3e: Pulling fs layer
cc43366a44e4: Pulling fs layer
63496b557f2e: Pulling fs layer
357540a23278: Pulling fs layer
9c33f166bcc4: Pulling fs layer
88a6edaecebc: Waiting
fe47bb149eab: Pulling fs layer
8c35beb4616c: Waiting
8e454fb1c5ba: Pulling fs layer
e8a4d2e94f85: Waiting
e65b908a43b4: Pulling fs layer
d0f326f9e9ec: Waiting
4f4fb700ef54: Pulling fs layer
956d5e78253b: Waiting
ef05e6691b99: Pulling fs layer
bc5b14d5098c: Pulling fs layer
594b880773c5: Waiting
7f3be6720340: Pulling fs layer
7954f716a115: Waiting
6a2fceda0a19: Pulling fs layer
581e2c81493a: Waiting
92ebb3103569: Pulling fs layer
097a5f6d220f: Pulling fs layer
5529fc0e1c40: Waiting
a2f2cdd57c97: Pulling fs layer
79db350ffd3e: Waiting
4b459e121afa: Pulling fs layer
cc43366a44e4: Waiting
63496b557f2e: Waiting
feea11194646: Pulling fs layer
357540a23278: Waiting
20fc9743e971: Pulling fs layer
9c33f166bcc4: Waiting
ae11f1720a91: Pulling fs layer
fe47bb149eab: Waiting
6436fc53390a: Pulling fs layer
8e454fb1c5ba: Waiting
1f45d3f5393a: Pulling fs layer
e65b908a43b4: Waiting
8259f056cd2d: Pulling fs layer
4f4fb700ef54: Waiting
38957e560f26: Pulling fs layer
ef05e6691b99: Waiting
5afd09ced062: Pulling fs layer
bc5b14d5098c: Waiting
2b07726c09d1: Pulling fs layer
a5b0a9ef817f: Pulling fs layer
7f3be6720340: Waiting
6a2fceda0a19: Waiting
92ebb3103569: Waiting
097a5f6d220f: Waiting
4c49558dbf06: Pulling fs layer
a2f2cdd57c97: Waiting
ff7cea3f4ac5: Pulling fs layer
83ed2be0386b: Pulling fs layer
feea11194646: Waiting
b110f90dc31d: Pulling fs layer
20fc9743e971: Waiting
ae11f1720a91: Waiting
6436fc53390a: Waiting
5afd09ced062: Waiting
1f45d3f5393a: Waiting
2b07726c09d1: Waiting
8259f056cd2d: Waiting
a5b0a9ef817f: Waiting
38957e560f26: Waiting
4c49558dbf06: Waiting
83ed2be0386b: Waiting
b110f90dc31d: Waiting
4b459e121afa: Waiting
f69676b5bf8f: Verifying Checksum
f69676b5bf8f: Download complete
bd99c0c73b96: Verifying Checksum
bd99c0c73b96: Download complete
f69676b5bf8f: Pull complete
bd99c0c73b96: Pull complete
594b880773c5: Verifying Checksum
594b880773c5: Download complete
f210851d5991: Download complete
8c35beb4616c: Verifying Checksum
8c35beb4616c: Download complete
e8a4d2e94f85: Verifying Checksum
e8a4d2e94f85: Download complete
f210851d5991: Pull complete
594b880773c5: Pull complete
d0f326f9e9ec: Verifying Checksum
d0f326f9e9ec: Download complete
956d5e78253b: Verifying Checksum
956d5e78253b: Download complete
7954f716a115: Verifying Checksum
7954f716a115: Download complete
581e2c81493a: Verifying Checksum
581e2c81493a: Download complete
79db350ffd3e: Verifying Checksum
79db350ffd3e: Download complete
cc43366a44e4: Verifying Checksum
cc43366a44e4: Download complete
5529fc0e1c40: Verifying Checksum
5529fc0e1c40: Download complete
63496b557f2e: Verifying Checksum
63496b557f2e: Download complete
357540a23278: Verifying Checksum
357540a23278: Download complete
fe47bb149eab: Download complete
8e454fb1c5ba: Verifying Checksum
8e454fb1c5ba: Download complete
e65b908a43b4: Verifying Checksum
e65b908a43b4: Download complete
9c33f166bcc4: Verifying Checksum
9c33f166bcc4: Download complete
4f4fb700ef54: Download complete
ef05e6691b99: Verifying Checksum
ef05e6691b99: Download complete
bc5b14d5098c: Verifying Checksum
bc5b14d5098c: Download complete
7f3be6720340: Verifying Checksum
7f3be6720340: Download complete
6a2fceda0a19: Verifying Checksum
6a2fceda0a19: Download complete
097a5f6d220f: Verifying Checksum
097a5f6d220f: Download complete
92ebb3103569: Download complete
4b459e121afa: Verifying Checksum
4b459e121afa: Download complete
a2f2cdd57c97: Verifying Checksum
a2f2cdd57c97: Download complete
feea11194646: Verifying Checksum
feea11194646: Download complete
20fc9743e971: Verifying Checksum
20fc9743e971: Download complete
ae11f1720a91: Verifying Checksum
ae11f1720a91: Download complete
88a6edaecebc: Verifying Checksum
88a6edaecebc: Download complete
6436fc53390a: Verifying Checksum
6436fc53390a: Download complete
8259f056cd2d: Verifying Checksum
8259f056cd2d: Download complete
5afd09ced062: Download complete
2b07726c09d1: Verifying Checksum
2b07726c09d1: Download complete
a5b0a9ef817f: Verifying Checksum
a5b0a9ef817f: Download complete
38957e560f26: Verifying Checksum
38957e560f26: Download complete
ff7cea3f4ac5: Verifying Checksum
ff7cea3f4ac5: Download complete
83ed2be0386b: Verifying Checksum
83ed2be0386b: Download complete
b110f90dc31d: Verifying Checksum
b110f90dc31d: Download complete
1f45d3f5393a: Verifying Checksum
1f45d3f5393a: Download complete
4c49558dbf06: Verifying Checksum
4c49558dbf06: Download complete
88a6edaecebc: Pull complete
8c35beb4616c: Pull complete
e8a4d2e94f85: Pull complete
d0f326f9e9ec: Pull complete
956d5e78253b: Pull complete
7954f716a115: Pull complete
581e2c81493a: Pull complete
5529fc0e1c40: Pull complete
79db350ffd3e: Pull complete
cc43366a44e4: Pull complete
63496b557f2e: Pull complete
357540a23278: Pull complete
9c33f166bcc4: Pull complete
fe47bb149eab: Pull complete
8e454fb1c5ba: Pull complete
e65b908a43b4: Pull complete
4f4fb700ef54: Pull complete
ef05e6691b99: Pull complete
bc5b14d5098c: Pull complete
7f3be6720340: Pull complete
6a2fceda0a19: Pull complete
92ebb3103569: Pull complete
097a5f6d220f: Pull complete
a2f2cdd57c97: Pull complete
4b459e121afa: Pull complete
feea11194646: Pull complete
20fc9743e971: Pull complete
ae11f1720a91: Pull complete
6436fc53390a: Pull complete
1f45d3f5393a: Pull complete
8259f056cd2d: Pull complete
38957e560f26: Pull complete
5afd09ced062: Pull complete
2b07726c09d1: Pull complete
a5b0a9ef817f: Pull complete
4c49558dbf06: Pull complete
ff7cea3f4ac5: Pull complete
83ed2be0386b: Pull complete
b110f90dc31d: Pull complete
Digest: sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf
Status: Downloaded newer image for ocaml/opam@sha256:cda000de9eec4a5cd6ab249d75a73bfb5e392c1745c5121432c7418ad5cf8adf
2025-11-21 09:34.56 ---> saved as "d92264e4bdf2426bd0a75a28e8d5f200891b44df8f32fb9f00ff584244f2cacb"

/: (comment debian-13-4.14_riscv64_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-11-21 09:34.56 ---> saved as "70cfd89a534ac32b8a03cf7388e0fdb61301f41aaa19dcb6b61dd3f55663ba27"

/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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-21 09:36.48 ---> saved as "f74819040769082e49a9fea58a1427a0a67d742a64946c725f49c09310b0db0e"

/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.10.113-scw1
The OCaml toplevel, version 4.14.2
2.4.1
2025-11-21 09:36.49 ---> saved as "7434d0a37580c0b39246a6cf4a080a75f3e363f86d91ab3095645c56a45f9c6c"

/src: (workdir /src)

/src: (run (shell "sudo chown opam /src"))
2025-11-21 09:36.50 ---> saved as "a30671c3bcc6f8fdaa41418ca2da6a16da8c27e6903e7bfab47cdbafd215b563"

/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"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   21f97b2e6d..ee3428377a  master     -> origin/master
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 (run with --verbose to show unavailable upgrades).
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.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 09:38.24 ---> saved as "bb2f11ee616e68ee3da8c8e91665cef966e5813407898fbc2f43cc7e74465d39"

/src: (copy (src print-table.opam print-table-tests.opam print-table-dev.opam)
            (dst ./))
2025-11-21 09:38.24 ---> saved as "81db0e2173582a203a1bf0001367da14516458ede37e429679d50eb2bddc3d6a"

/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-11-21 09:38.45 ---> saved as "d482240016183c0234d50b343646697086c10fefc2da1ca3af43010120dc710c"

/src: (run (network host)
           (shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-11-21 09:38.45 ---> saved as "0c181b86503357ac1f2886b67949eb725b810f6042f87ed6cf200da7fb8b7cdf"

/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"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main riscv64 Packages [9379 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main riscv64 Packages [67.4 kB]
- Fetched 9678 kB in 5s (1953 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-11-21 09:39.35 ---> saved as "303b77beb3d5d0e170e8d87eeafca0f25b6ccdc80204bb297dd35661c4c1e943"

/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
  - install base                        v0.16.4
  - install base_bigstring              v0.16.0
  - install base_quickcheck             v0.16.0
  - install bin_prot                    v0.16.0
  - install core                        v0.16.2
  - install csexp                       1.5.2
  - install dune                        3.20.2
  - install dune-configurator           3.20.2
  - 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 jst-config                  v0.16.0
  - install num                         1.6
  - install ocaml-compiler-libs         v0.12.4
  - install ocamlbuild                  0.16.1
  - install ocamlfind                   1.9.8
  - 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.2.1
  - install ppx_disable_unused_warnings v0.16.0
  - install ppx_enumerate               v0.16.0
  - install ppx_expect                  v0.16.2
  - 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.1
  - 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.35.0
  - install printbox                    0.12
  - install printbox-md                 0.12
  - install printbox-text               0.12
  - install re                          1.14.0
  - 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.3.0
  - install time_now                    v0.16.0
  - install topkg                       1.1.1
  - install typerep                     v0.16.0
  - install uucp                        17.0.0
  - install uutf                        1.0.4
  - install variantslib                 v0.16.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (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.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> 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 jst-config.v0.16.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (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.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 dune.3.20.2, dune-configurator.3.20.2  (cached)
-> installed num.1.6
-> 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.14.0  (cached)
-> retrieved sexp_pretty.v0.16.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved printbox.0.12, printbox-md.0.12, printbox-text.0.12  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved splittable_random.v0.16.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.16.0  (cached)
-> retrieved typerep.v0.16.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlbuild.0.16.1
-> retrieved topkg.1.1.1  (cached)
-> retrieved variantslib.v0.16.0  (cached)
-> 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 csexp.1.5.2
-> installed ppx_derivers.1.2.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed printbox.0.12
-> installed dune-configurator.3.20.2
-> installed sexplib0.v0.16.0
-> installed re.1.14.0
-> installed stdlib-shims.0.3.0
-> installed parsexp.v0.16.0
-> installed base.v0.16.4
-> installed sexplib.v0.16.0
-> installed fieldslib.v0.16.0
-> installed stdio.v0.16.0
-> installed typerep.v0.16.0
-> installed variantslib.v0.16.0
-> installed uucp.17.0.0
-> installed printbox-text.0.12
-> installed printbox-md.0.12
-> installed ppxlib.0.35.0
-> installed ppx_cold.v0.16.0
-> installed ppx_disable_unused_warnings.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_fields_conv.v0.16.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_fixed_literal.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_ignore_instrumentation.v0.16.0
-> installed ppx_optional.v0.16.0
-> installed ppx_pipebang.v0.16.0
-> installed ppx_let.v0.16.0
-> installed ppx_stable_witness.v0.16.0
-> installed ppx_stable.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_tydi.v0.16.0
-> installed ppx_typerep_conv.v0.16.0
-> installed ppx_variants_conv.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_custom_printf.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_sexp_message.v0.16.0
-> installed jst-config.v0.16.0
-> installed bin_prot.v0.16.0
-> installed ppx_log.v0.16.0
-> installed ppx_sexp_value.v0.16.0
-> installed sexp_pretty.v0.16.0
-> installed ppx_string.v0.16.0
-> installed ppx_bin_prot.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_module_timer.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_bench.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.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 10:00.43 ---> saved as "c1131424f495fae1978eb1ec6a8ab7fbdce762a7a2a21778a66e48d5489a9704"

/src: (copy (src .) (dst /src))
2025-11-21 10:00.44 ---> saved as "06265a05c28b0c0c01fea3b574d3c979f2e924f67e01195b58567c71df183f7f"

/src: (run (shell "opam exec -- dune build --only-packages=print-table,print-table-tests @install @check @runtest && rm -rf _build"))
2025-11-21 10:01.08 ---> saved as "abed3fd1c1420bca1959dca1d2e9037e91aca5da35f30f40d6bc3d18f32993ff"
Job succeeded
2025-11-21 10:01.08: Job succeeded