Organisationsocamlodocf71822 ()(lower-bound)

(lower-bound)

Logs

Show full logs
2025-10-16 17:34.31: New job: test ocaml/odoc https://github.com/ocaml/odoc.git#refs/heads/master (f71822c4fabc1b90c0878d06eb98926cd3d32488) (linux-x86_64:(lower-bound))
Base: ocaml/opam:debian-13-ocaml-4.14@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/ocaml/odoc.git" -b "master" && cd "odoc" && git reset --hard f71822c4
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353
# debian-13-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 3f352039b78762f6593f0e404e4b067d48691828 || git fetch origin master) && git reset -q --hard 3f352039b78762f6593f0e404e4b067d48691828 && 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.0.1 astring.0.8.5 b0.0.0.5 base.v0.16.0 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 bigarray-compat.1.0.0 bigstringaf.0.9.1 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.1.4 brr.0.0.7 camlp-streams.5.0.1 checkseum.0.3.1 cmarkit.0.3.0 cmdliner.1.3.0 conf-bash.1 conf-jq.1 conf-pkg-config.1.0 conf-which.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.6.1 crunch.3.2.0 csexp.1.5.1 decompress.1.5.3 dune.3.18.2 dune-configurator.3.13.1 fieldslib.v0.16.0 fmt.0.8.8 fpath.0.7.3 gen.0.2.2 int_repr.v0.16.0 jane-street-headers.v0.16.0 jbuilder.1.0+beta20.1 js_of_ocaml.5.6.0 js_of_ocaml-compiler.5.6.0 js_of_ocaml-toplevel.5.6.0 jst-config.v0.16.0 logs.0.7.0 lwt.5.7.0 mdx.2.3.1 menhir.20230608 menhirLib.20230608 menhirSdk.20230608 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 ocaml-version.3.5.0 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocplib-endian.1.0 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.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.28.0 ptime.0.8.5 re.1.8.0 result.1.5 rresult.0.6.0 sedlex.2.6 seq.0.3 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 tyxml.4.6.0 uchar.0.0.2 uuidm.0.9.7 uutf.1.0.3 variantslib.v0.16.0 yojson.2.1.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-10-16 17:34.31: Using cache hint "ocaml/odoc-ocaml/opam:debian-13-ocaml-4.14@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353-debian-13-4.14_opam-2.4-e91c65090338152d27718a8b83f5d193"
2025-10-16 17:34.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353)
 (comment debian-13-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 3f352039b78762f6593f0e404e4b067d48691828 || git fetch origin master) && git reset -q --hard 3f352039b78762f6593f0e404e4b067d48691828 && 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.0.1 astring.0.8.5 b0.0.0.5 base.v0.16.0 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 bigarray-compat.1.0.0 bigstringaf.0.9.1 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.1.4 brr.0.0.7 camlp-streams.5.0.1 checkseum.0.3.1 cmarkit.0.3.0 cmdliner.1.3.0 conf-bash.1 conf-jq.1 conf-pkg-config.1.0 conf-which.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.6.1 crunch.3.2.0 csexp.1.5.1 decompress.1.5.3 dune.3.18.2 dune-configurator.3.13.1 fieldslib.v0.16.0 fmt.0.8.8 fpath.0.7.3 gen.0.2.2 int_repr.v0.16.0 jane-street-headers.v0.16.0 jbuilder.1.0+beta20.1 js_of_ocaml.5.6.0 js_of_ocaml-compiler.5.6.0 js_of_ocaml-toplevel.5.6.0 jst-config.v0.16.0 logs.0.7.0 lwt.5.7.0 mdx.2.3.1 menhir.20230608 menhirLib.20230608 menhirSdk.20230608 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 ocaml-version.3.5.0 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocplib-endian.1.0 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.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.28.0 ptime.0.8.5 re.1.8.0 result.1.5 rresult.0.6.0 sedlex.2.6 seq.0.3 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 tyxml.4.6.0 uchar.0.0.2 uuidm.0.9.7 uutf.1.0.3 variantslib.v0.16.0 yojson.2.1.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-10-16 17:34.31: Waiting for resource in pool OCluster
2025-10-16 17:34.31: Waiting for worker…
2025-10-16 17:34.31: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at f71822c4f Add changelog entry

(from ocaml/opam:debian-13-ocaml-4.14@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353' locally
docker.io/ocaml/opam@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353: Pulling from ocaml/opam
Digest: sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353
Status: Downloaded newer image for ocaml/opam@sha256:98309c1e2473597c2dc9d3b5a7210fdb30819763cf2e4b3868de1513deee6353
2025-10-16 17:34.33 ---> using "ae5a35edb2df2fe59cb4e5cafe5ca62fb7d5b04088064e015fa744b1be849aae" from cache

/: (comment debian-13-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-10-16 17:34.33 ---> saved as "c709841406782d6ce39e710beb594eeb96196224c9fd4a7a15a32a5de91b4f12"

/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-10-16 17:34.51 ---> saved as "4db9c823b3333c708dd5eb5ecfeabad7d76c6397e3f7220965831fb792c960cc"

/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-84-generic
The OCaml toplevel, version 4.14.2
2.4.1
2025-10-16 17:34.51 ---> saved as "073fa9dcb716ac78a23e1ef269723b3002d2f61f1cdc56c519d0be5cd2ab2f31"

/src: (workdir /src)

/src: (run (shell "sudo chown opam /src"))
2025-10-16 17:34.52 ---> saved as "88f0ef42fc0352811aa4593507a82ab5f3e2e266d4af9769949fa0bbed8a3c6e"

/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e 3f352039b78762f6593f0e404e4b067d48691828 || git fetch origin master) && git reset -q --hard 3f352039b78762f6593f0e404e4b067d48691828 && git log --no-decorate -n1 --oneline && opam update -u"))
3f352039b7 Merge pull request #28654 from hannesm/js-of-ocaml-cmdliner-with-test

<><> 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-10-16 17:35.05 ---> saved as "52f869888c55b441b26185310573451595a45bf483def95db86065d302f3006a"

/src: (copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam)
            (dst ./))
2025-10-16 17:35.05 ---> saved as "2fdc315a58cc205c820b1159f3a0d774199ebb354a6efbf3a51c6aa1b668f302"

/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-10-16 17:35.12 ---> saved as "1922b227e14c25f5259c390bfea70fe41b127b9ea7015268178cabf2a665b5fa"

/src: (run (network host)
           (shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-10-16 17:35.12 ---> saved as "78ec203e57dddb0a475e72f3a4f04db1acfc5702f7ddf8fac613e68922d46597"

/src: (env DEPS "alcotest.1.0.1 astring.0.8.5 b0.0.0.5 base.v0.16.0 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 bigarray-compat.1.0.0 bigstringaf.0.9.1 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.1.4 brr.0.0.7 camlp-streams.5.0.1 checkseum.0.3.1 cmarkit.0.3.0 cmdliner.1.3.0 conf-bash.1 conf-jq.1 conf-pkg-config.1.0 conf-which.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.6.1 crunch.3.2.0 csexp.1.5.1 decompress.1.5.3 dune.3.18.2 dune-configurator.3.13.1 fieldslib.v0.16.0 fmt.0.8.8 fpath.0.7.3 gen.0.2.2 int_repr.v0.16.0 jane-street-headers.v0.16.0 jbuilder.1.0+beta20.1 js_of_ocaml.5.6.0 js_of_ocaml-compiler.5.6.0 js_of_ocaml-toplevel.5.6.0 jst-config.v0.16.0 logs.0.7.0 lwt.5.7.0 mdx.2.3.1 menhir.20230608 menhirLib.20230608 menhirSdk.20230608 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 ocaml-version.3.5.0 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocplib-endian.1.0 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.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.28.0 ptime.0.8.5 re.1.8.0 result.1.5 rresult.0.6.0 sedlex.2.6 seq.0.3 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 tyxml.4.6.0 uchar.0.0.2 uuidm.0.9.7 uutf.1.0.3 variantslib.v0.16.0 yojson.2.1.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"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [53.8 kB]
- Fetched 145 kB in 0s (1899 kB/s)
- Reading package lists...
2025-10-16 17:35.13: Cancelling: Auto-cancelling job because it is no longer needed

<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
Job cancelled