2025-05-08 16:05.23: New job: test ocaml/odoc https://github.com/ocaml/odoc.git#refs/pull/1341/head (f8b767a1cc4b17c83b0db6d160b03a4d467ce1e8) (freebsd-x86_64:freebsd-14.2-4.14_opam-2.3)
Base: freebsd-14.2-ocaml-4.14
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/ocaml/odoc.git" && cd "odoc" && git fetch origin "refs/pull/1341/head" && git reset --hard f8b767a1
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-14.2-ocaml-4.14
# freebsd-14.2-4.14_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.3 /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 35eb2f107a989a2d623b0bbe170696398fcb9b1e || git fetch origin master) && git reset -q --hard 35eb2f107a989a2d623b0bbe170696398fcb9b1e && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam ./
RUN opam pin add -yn sherlodoc.dev './' && \
opam pin add -yn odoc.dev './' && \
opam pin add -yn odoc-parser.dev './' && \
opam pin add -yn odoc-md.dev './' && \
opam pin add -yn odoc-driver.dev './' && \
opam pin add -yn odoc-bench.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.0 astring.0.8.5 b0.0.0.5 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.7 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-bash.1 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.18.2 dune-configurator.3.18.2 fieldslib.v0.16.0 fmt.0.10.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 js_of_ocaml-toplevel.6.0.1 jst-config.v0.16.0 logs.0.8.0 lwt.5.9.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.5-1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.4 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.0.8 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.2.2.2"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --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-05-08 16:05.23: Using cache hint "ocaml/odoc-freebsd-14.2-ocaml-4.14-freebsd-14.2-4.14_opam-2.3-87359cd2e1834f87fba3c3e44c6d1aa1"
2025-05-08 16:05.23: Using OBuilder spec:
((from freebsd-14.2-ocaml-4.14)
(comment freebsd-14.2-4.14_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/local/bin/opam-2.3 /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 35eb2f107a989a2d623b0bbe170696398fcb9b1e || git fetch origin master) && git reset -q --hard 35eb2f107a989a2d623b0bbe170696398fcb9b1e && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam)
(dst ./))
(run (network host)
(shell "opam pin add -yn sherlodoc.dev './' && \
\nopam pin add -yn odoc.dev './' && \
\nopam pin add -yn odoc-parser.dev './' && \
\nopam pin add -yn odoc-md.dev './' && \
\nopam pin add -yn odoc-driver.dev './' && \
\nopam pin add -yn odoc-bench.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.0 astring.0.8.5 b0.0.0.5 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.7 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-bash.1 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.18.2 dune-configurator.3.18.2 fieldslib.v0.16.0 fmt.0.10.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 js_of_ocaml-toplevel.6.0.1 jst-config.v0.16.0 logs.0.8.0 lwt.5.9.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.5-1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.4 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.0.8 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.2.2.2")
(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.3 --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-05-08 16:05.23: Waiting for resource in pool OCluster
2025-05-08 16:05.23: Waiting for workerβ¦
2025-05-08 16:05.23: Got resource from pool OCluster
Building on summer
Updating files: 100% (1728/1728), done.
HEAD is now at 8925c5457 Install cmarkit on 4.14
HEAD is now at f8b767a1c remove 'tree' from cram
(from freebsd-14.2-ocaml-4.14)
2025-05-08 15:57.39 ---> using "e232d73c9161ea3ff94ff4ae2b5a6983da9a9ca98d5185b2db1dbadeae5228e2" from cache
/: (comment freebsd-14.2-4.14_opam-2.3)
/: (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.3 /usr/local/bin/opam"))
2025-05-08 15:57.40 ---> using "5aedfaeff2bc60ce09298f87624d557fac4c416addb6915ab987317e95fa6323" 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-05-08 15:57.40 ---> using "33d10a393b3f49c5577becd825d2bcab91e98bdde15eb554bf0dba345ccb7809" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.2-RELEASE-p1
The OCaml toplevel, version 4.14.2
2.3.0
2025-05-08 15:57.40 ---> using "318cf18a0512582a14a586ceb7ba02273510347df5896f5e5d533054ff3c99cc" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-05-08 15:57.43 ---> using "6fc646c578a950069629f2a24c45eb1d012bef32c9d3cba5f25029d6618e05d7" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 35eb2f107a989a2d623b0bbe170696398fcb9b1e || git fetch origin master) && git reset -q --hard 35eb2f107a989a2d623b0bbe170696398fcb9b1e && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
48e47466f5..35eb2f107a master -> origin/master
35eb2f107a Merge pull request #27838 from maiste/release-dune-3.18.2
<><> 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).
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, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
2025-05-08 15:57.43 ---> using "33bd31d465814134d9845fbc6b4c2487eecfa11473c64d6dd6ded13b157eee71" from cache
/src: (copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam)
(dst ./))
2025-05-08 15:57.43 ---> using "071c5dc9b227d1980598b4683542968835c804e8c0f4a1850a20b5233450f699" from cache
/src: (run (network host)
(shell "opam pin add -yn sherlodoc.dev './' && \
\nopam pin add -yn odoc.dev './' && \
\nopam pin add -yn odoc-parser.dev './' && \
\nopam pin add -yn odoc-md.dev './' && \
\nopam pin add -yn odoc-driver.dev './' && \
\nopam pin add -yn odoc-bench.dev './'"))
[sherlodoc.dev] synchronised (file:///src)
sherlodoc is now pinned to file:///src (version dev)
[odoc.dev] synchronised (file:///src)
[WARNING] Failed checks on odoc package definition from source at file:///src:
error 29: Package dependencies or conflicts mention package variables: "ocaml:version"
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)
Package odoc-bench does not exist, create as a NEW package? [y/n] y
[odoc-bench.dev] synchronised (file:///src)
[WARNING] Failed checks on odoc-bench package definition from source at file:///src:
warning 47: Synopsis should start with a capital and not end with a dot
odoc-bench is now pinned to file:///src (version dev)
2025-05-08 15:57.43 ---> using "d62242be1cceb55d1dc89ac3ecb0e9b06c3ecf32746e3eabf949430af57b7b1f" from cache
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-05-08 15:57.44 ---> using "3cffa26266ab7d9e9d6b029476e10669d086c46aeddd7ae016961106e2254acb" from cache
/src: (env DEPS "alcotest.1.9.0 astring.0.8.5 b0.0.0.5 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.7 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-bash.1 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.18.2 dune-configurator.3.18.2 fieldslib.v0.16.0 fmt.0.10.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 js_of_ocaml-toplevel.6.0.1 jst-config.v0.16.0 logs.0.8.0 lwt.5.9.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 num.1.5-1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.4 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.0.8 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.2.2.2")
/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.3 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS"))
[WARNING] Unknown update command for bsd, skipping system update
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[odoc.dev] synchronised (file:///src)
[odoc-md.dev] synchronised (file:///src)
[odoc-bench.dev] synchronised (file:///src)
[odoc-parser.dev] synchronised (file:///src)
[sherlodoc.dev] synchronised (file:///src)
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following system packages will first need to be installed:
jq
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
+ /usr/local/bin/sudo "pkg" "install" "-y" "jq"
- Updating FreeBSD repository catalogue...
- [summer] Fetching data.pkg: .........
- . done
- Processing entries: .
- ..
- ..
- ..
- ..
- . done
- FreeBSD repository update completed. 35953 packages processed.
- All repositories are up to date.
- New version of pkg detected; it needs to be installed first.
- The following 1 package(s) will be affected (of 0 checked):
-
- Installed packages to be UPGRADED:
- pkg: 1.21.3 -> 2.1.2
-
- Number of packages to be upgraded: 1
-
- 12 MiB to be downloaded.
- [summer] [1/1] Fetching pkg-2.1.2.pkg:
- ..
- ...
- ....
- . done
- Checking integrity... done (0 conflicting)
- [summer] [1/1] Upgrading pkg from 1.21.3 to 2.1.2...
- [summer] [1/1] Extracting pkg-2.1.2: .....
- ..... done
- Updating FreeBSD repository catalogue...
- FreeBSD repository is up to date.
- All repositories are up to date.
- The following 2 package(s) will be affected (of 0 checked):
-
- New packages to be INSTALLED:
- jq: 1.7.1
- oniguruma: 6.9.10
-
- Number of packages to be installed: 2
-
- The process will require 3 MiB more space.
- 608 KiB to be downloaded.
- [summer] [1/2] Fetching jq-1.7.1.pkg: .......... done
- [summer] [2/2] Fetching oniguruma-6.9.10.pkg: .......... done
- Checking integrity... done (0 conflicting)
- [summer] [1/2] Installing oniguruma-6.9.10...
- [summer] [1/2] Extracting oniguruma-6.9.10: ....
- ...... done
- [summer] [2/2] Installing jq-1.7.1...
- [summer] [2/2] Extracting jq-1.7.1: .......... done
2025-05-08 15:57.44 ---> using "09e6819a95414e9d3cfd9ebc48b91b3627283fe1742040a7b0336767f530ae6d" 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 110 packages
β alcotest 1.9.0
β astring 0.8.5
β b0 0.0.5
β base v0.16.3
β base-bytes base
β base64 3.5.1
β base_bigstring v0.16.0
β base_quickcheck v0.16.0
β bigstringaf 0.10.0
β bin_prot v0.16.0
β bisect_ppx 2.8.3
β bos 0.2.1
β brr 0.0.7
β camlp-streams 5.0.1
β checkseum 0.5.2
β cmarkit 0.3.0
β cmdliner 1.3.0
β conf-bash 1
β conf-jq 1
β core v0.16.2
β core_kernel v0.16.0
β cppo 1.8.0
β crunch 4.0.0
β csexp 1.5.2
β decompress 1.5.3
β dune 3.18.2
β dune-configurator 3.18.2
β fieldslib v0.16.0
β fmt 0.10.0
β fpath 0.7.3
β gen 1.1
β int_repr v0.16.0
β jane-street-headers v0.16.0
β js_of_ocaml 6.0.1
β js_of_ocaml-compiler 6.0.1
β js_of_ocaml-toplevel 6.0.1
β jst-config v0.16.0
β logs 0.8.0
β lwt 5.9.1
β mdx 2.5.0
β menhir 20240715
β menhirCST 20240715
β menhirLib 20240715
β menhirSdk 20240715
β num 1.5-1
β ocaml-compiler-libs v0.12.4
β ocaml-syntax-shims 1.0.0
β ocaml-version 4.0.0
β ocamlbuild 0.16.1
β ocamlfind 1.9.8
β ocplib-endian 1.2
β odig 0.0.9
β odoc dev (pinned) [required by odig]
β odoc-parser dev (pinned) [required by odoc]
β optint 0.3.0
β parsexp v0.16.0
β ppx_assert v0.16.0
β ppx_base v0.16.0
β ppx_bench v0.16.0
β ppx_bin_prot v0.16.0
β ppx_blob 0.9.0
β ppx_cold v0.16.0
β ppx_compare v0.16.0
β ppx_custom_printf v0.16.0
β ppx_derivers 1.2.1
β ppx_disable_unused_warnings v0.16.0
β ppx_enumerate v0.16.0
β ppx_expect v0.16.1
β ppx_fields_conv v0.16.0
β ppx_fixed_literal v0.16.0
β ppx_globalize v0.16.0
β ppx_hash v0.16.0
β ppx_here v0.16.0
β ppx_ignore_instrumentation v0.16.0
β ppx_inline_test v0.16.1
β ppx_jane v0.16.0
β ppx_let v0.16.0
β ppx_log v0.16.0
β ppx_module_timer v0.16.0
β ppx_optcomp v0.16.0
β ppx_optional v0.16.0
β ppx_pipebang v0.16.0
β ppx_sexp_conv v0.16.0
β ppx_sexp_message v0.16.0
β ppx_sexp_value v0.16.0
β ppx_stable v0.16.0
β ppx_stable_witness v0.16.0
β ppx_string v0.16.0
β ppx_tydi v0.16.0
β ppx_typerep_conv v0.16.0
β ppx_variants_conv v0.16.0
β ppxlib 0.35.0
β ptime 1.2.0
β re 1.12.0
β result 1.5
β rresult 0.7.0
β sedlex 3.4
β seq base
β sexplib v0.16.0
β sexplib0 v0.16.0
β splittable_random v0.16.0
β stdio v0.16.0
β stdlib-shims 0.3.0
β time_now v0.16.0
β topkg 1.0.8
β typerep v0.16.0
β tyxml 4.6.0
β uutf 1.0.4
β variantslib v0.16.0
β yojson 2.2.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
β¬ retrieved astring.0.8.5 (cached)
β¬ retrieved b0.0.0.5 (cached)
β¬ retrieved base.v0.16.3 (cached)
β¬ retrieved base64.3.5.1 (cached)
β¬ retrieved base_bigstring.v0.16.0 (cached)
β¬ retrieved alcotest.1.9.0 (cached)
β¬ retrieved bigstringaf.0.10.0 (cached)
β¬ retrieved bin_prot.v0.16.0 (cached)
β¬ retrieved bisect_ppx.2.8.3 (cached)
β¬ retrieved bos.0.2.1 (cached)
β¬ retrieved base_quickcheck.v0.16.0 (cached)
β¬ retrieved camlp-streams.5.0.1 (cached)
β¬ retrieved brr.0.0.7 (cached)
β¬ retrieved cmarkit.0.3.0 (cached)
β installed conf-bash.1
β installed conf-jq.1
β¬ retrieved cmdliner.1.3.0 (cached)
β¬ retrieved checkseum.0.5.2 (cached)
β¬ retrieved core_kernel.v0.16.0 (cached)
β¬ retrieved cppo.1.8.0 (cached)
β¬ retrieved crunch.4.0.0 (cached)
β¬ retrieved csexp.1.5.2 (cached)
β¬ retrieved core.v0.16.2 (cached)
β¬ retrieved decompress.1.5.3 (cached)
β¬ retrieved fieldslib.v0.16.0 (cached)
β¬ retrieved fmt.0.10.0 (cached)
β¬ retrieved fpath.0.7.3 (cached)
β¬ retrieved gen.1.1 (cached)
β¬ retrieved int_repr.v0.16.0 (cached)
β¬ retrieved jane-street-headers.v0.16.0 (cached)
β¬ retrieved jst-config.v0.16.0 (cached)
β installed cmdliner.1.3.0
β¬ retrieved logs.0.8.0 (cached)
β¬ retrieved lwt.5.9.1 (cached)
β¬ retrieved mdx.2.5.0 (cached)
β¬ retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
β¬ retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1, js_of_ocaml-toplevel.6.0.1 (cached)
β¬ retrieved num.1.5-1 (cached)
β¬ retrieved ocaml-syntax-shims.1.0.0 (cached)
β¬ retrieved ocaml-version.4.0.0 (cached)
β¬ retrieved ocaml-compiler-libs.v0.12.4 (cached)
β¬ retrieved dune.3.18.2, dune-configurator.3.18.2 (cached)
β¬ retrieved ocplib-endian.1.2 (cached)
β¬ retrieved ocamlfind.1.9.8 (cached)
β¬ retrieved optint.0.3.0 (cached)
β¬ retrieved odig.0.0.9 (cached)
β¬ retrieved parsexp.v0.16.0 (cached)
β¬ retrieved ppx_assert.v0.16.0 (cached)
β¬ retrieved ocamlbuild.0.16.1 (cached)
β¬ retrieved ppx_bin_prot.v0.16.0 (cached)
β¬ retrieved ppx_bench.v0.16.0 (cached)
β¬ retrieved ppx_blob.0.9.0 (cached)
β¬ retrieved ppx_cold.v0.16.0 (cached)
β¬ retrieved ppx_base.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_compare.v0.16.0 (cached)
β installed num.1.5-1
β¬ retrieved ppx_fixed_literal.v0.16.0 (cached)
β¬ retrieved ppx_fields_conv.v0.16.0 (cached)
β¬ retrieved ppx_globalize.v0.16.0 (cached)
β¬ retrieved ppx_expect.v0.16.1 (cached)
β¬ retrieved ppx_here.v0.16.0 (cached)
β¬ retrieved ppx_ignore_instrumentation.v0.16.0 (cached)
β¬ retrieved ppx_hash.v0.16.0 (cached)
β¬ retrieved ppx_jane.v0.16.0 (cached)
β¬ retrieved ppx_inline_test.v0.16.1 (cached)
β¬ retrieved ppx_log.v0.16.0 (cached)
β¬ retrieved ppx_module_timer.v0.16.0 (cached)
β¬ retrieved ppx_let.v0.16.0 (cached)
β¬ retrieved ppx_optional.v0.16.0 (cached)
β¬ retrieved ppx_optcomp.v0.16.0 (cached)
β¬ retrieved ppx_pipebang.v0.16.0 (cached)
β¬ retrieved ppx_sexp_message.v0.16.0 (cached)
β¬ retrieved ppx_sexp_value.v0.16.0 (cached)
β¬ retrieved ppx_sexp_conv.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 ppx_stable.v0.16.0 (cached)
β¬ retrieved ptime.1.2.0 (cached)
β¬ retrieved result.1.5 (cached)
β¬ retrieved re.1.12.0 (cached)
β¬ retrieved rresult.0.7.0 (cached)
β¬ retrieved seq.base (cached)
β installed seq.base
β¬ retrieved sedlex.3.4 (cached)
β¬ retrieved sexplib.v0.16.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 ppxlib.0.35.0 (cached)
β¬ retrieved typerep.v0.16.0 (cached)
β¬ retrieved topkg.1.0.8 (cached)
β¬ retrieved uutf.1.0.4 (cached)
β¬ retrieved variantslib.v0.16.0 (cached)
β¬ retrieved tyxml.4.6.0 (cached)
β¬ retrieved yojson.2.2.2 (cached)
β installed ocamlfind.1.9.8
β installed base-bytes.base
β installed ocamlbuild.0.16.1
β installed topkg.1.0.8
β installed astring.0.8.5
β installed uutf.1.0.4
β installed rresult.0.7.0
β installed fmt.0.10.0
β installed fpath.0.7.3
β installed ptime.1.2.0
β installed cmarkit.0.3.0
β installed dune.3.18.2
β installed menhirLib.20240715
β installed menhirCST.20240715
β installed ppx_derivers.1.2.1
β installed optint.0.3.0
β installed result.1.5
β installed ocaml-version.4.0.0
β installed stdlib-shims.0.3.0
β installed sexplib0.v0.16.0
β installed re.1.12.0
β installed yojson.2.2.2
β installed ocaml-syntax-shims.1.0.0
β installed parsexp.v0.16.0
β installed tyxml.4.6.0
β installed ocaml-compiler-libs.v0.12.4
β installed alcotest.1.9.0
β installed sexplib.v0.16.0
β installed menhirSdk.20240715
β installed jane-street-headers.v0.16.0
β installed gen.1.1
β installed csexp.1.5.2
β installed menhir.20240715
β installed ppxlib.0.35.0
β installed crunch.4.0.0
β installed cppo.1.8.0
β installed camlp-streams.5.0.1
β installed base64.3.5.1
β installed b0.0.0.5
β installed odoc-parser.dev
β installed ocplib-endian.1.2
β installed ppx_pipebang.v0.16.0
β installed odoc.dev
β installed sedlex.3.4
2025-05-08 16:56.25: Cancelling: Auto-cancelling job because it is no longer needed
Job cancelled