2025-10-21 07:34.17: New job: test talex5/ocurrent https://github.com/talex5/ocurrent.git#refs/heads/master (9c115b457b37d4b4343554c80b30f3d7a6b2cd88) (freebsd-x86_64:freebsd-14.3-5.4_opam-2.4) Base: freebsd-14.3-ocaml-5.4 Opam project build To reproduce locally: git clone --recursive "https://github.com/talex5/ocurrent.git" -b "master" && cd "ocurrent" && git reset --hard 9c115b45 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM freebsd-14.3-ocaml-5.4 # freebsd-14.3-5.4_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e 761b6e063a8a48f7490847d5bd71fd89365d9b14 || git fetch origin master) && git reset -q --hard 761b6e063a8a48f7490847d5bd71fd89365d9b14 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 current_web.opam current_slack.opam current_github.opam current_git.opam current_docker.opam current.opam ./ RUN opam pin add -yn current_web.dev './' && \ opam pin add -yn current_slack.dev './' && \ opam pin add -yn current_github.dev './' && \ opam pin add -yn current_git.dev './' && \ opam pin add -yn current_docker.dev './' && \ opam pin add -yn current.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 asetmap.0.8.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 cf.0.5.0 cf-lwt.0.5.0 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libffi.2.0.0 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 ctypes.0.23.0 ctypes-foreign.0.23.0 digestif.1.3.0 dockerfile.8.3.3 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 fsevents.0.3.0 fsevents-lwt.0.3.0 gmap.0.3.0 http.6.1.1 integers.0.7.0 ipaddr.5.6.1 ipaddr-sexp.5.6.1 irmin-watcher.0.5.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_deriving_yojson.3.10.0 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.14.0 rresult.0.7.0 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 sqlite3.5.3.1 stdlib-shims.0.3.0 stringext.1.6.0 tls.2.0.3 topkg.1.1.0 tyxml.4.6.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y current_web.dev current_slack.dev current_github.dev current_git.dev current_docker.dev current.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-10-21 07:34.17: Using cache hint "talex5/ocurrent-freebsd-14.3-ocaml-5.4-freebsd-14.3-5.4_opam-2.4-bf85005aaaa5665c4b2478c050146127" 2025-10-21 07:34.17: Using OBuilder spec: ((from freebsd-14.3-ocaml-5.4) (comment freebsd-14.3-5.4_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 761b6e063a8a48f7490847d5bd71fd89365d9b14 || git fetch origin master) && git reset -q --hard 761b6e063a8a48f7490847d5bd71fd89365d9b14 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src current_web.opam current_slack.opam current_github.opam current_git.opam current_docker.opam current.opam) (dst ./)) (run (network host) (shell "opam pin add -yn current_web.dev './' && \ \nopam pin add -yn current_slack.dev './' && \ \nopam pin add -yn current_github.dev './' && \ \nopam pin add -yn current_git.dev './' && \ \nopam pin add -yn current_docker.dev './' && \ \nopam pin add -yn current.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 asetmap.0.8.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 cf.0.5.0 cf-lwt.0.5.0 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libffi.2.0.0 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 ctypes.0.23.0 ctypes-foreign.0.23.0 digestif.1.3.0 dockerfile.8.3.3 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 fsevents.0.3.0 fsevents-lwt.0.3.0 gmap.0.3.0 http.6.1.1 integers.0.7.0 ipaddr.5.6.1 ipaddr-sexp.5.6.1 irmin-watcher.0.5.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_deriving_yojson.3.10.0 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.14.0 rresult.0.7.0 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 sqlite3.5.3.1 stdlib-shims.0.3.0 stringext.1.6.0 tls.2.0.3 topkg.1.1.0 tyxml.4.6.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14") (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 current_web.dev current_slack.dev current_github.dev current_git.dev current_docker.dev current.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 @install @check @runtest && rm -rf _build")) ) 2025-10-21 07:34.17: Waiting for resource in pool OCluster 2025-10-21 07:34.17: Waiting for worker… 2025-10-21 07:43.15: Got resource from pool OCluster Building on rosemary All commits already cached HEAD is now at 9c115b4 Add Github.commit type (from freebsd-14.3-ocaml-5.4) 2025-10-21 07:41.55 ---> using "463e9b939b79b2568bf98b05cff00f85b3ec5717170cf88773a44ae3b08f11e7" from cache /: (comment freebsd-14.3-5.4_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam")) 2025-10-21 07:41.56 ---> using "3a594302e099be4d1fe17d31961c678e53238e61e9f64fbe865d05a177bbd49f" 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-10-21 07:41.56 ---> using "966aea62bfa80234ccffa3e603e9d2a2c27a29ab53d209038b434e38821f2fb7" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) FreeBSD 14.3-RELEASE-p3 The OCaml toplevel, version 5.4.0 2.4.1 2025-10-21 07:41.57 ---> using "901289cfc1072ebb5c56e6766d7e4b0939435c511aca0ca5e37a81de9f740bdb" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-10-21 07:41.57 ---> using "1dc6b19784012bf1d34b6ef08bc9997df686c93fa70b17674c490e435d82e9d9" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 761b6e063a8a48f7490847d5bd71fd89365d9b14 || git fetch origin master) && git reset -q --hard 761b6e063a8a48f7490847d5bd71fd89365d9b14 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 5bf570252b..dabf411e99 master -> origin/master 761b6e063a Merge pull request #28736 from mtelvers/opam-publish-dockerfile-cmd.8.3.3 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///home/opam/opam-repository Already up-to-date. Nothing to do. 2025-10-21 07:41.57 ---> using "ad6fb765d6cc4a5b099851abb094dda9ff689f839c4c4029e189f49c1e529a91" from cache /src: (copy (src current_web.opam current_slack.opam current_github.opam current_git.opam current_docker.opam current.opam) (dst ./)) 2025-10-21 07:41.58 ---> saved as "59ca1d3de716c4c15f0c9889e297f2a9b5851485cc92df720381ed805205d3c9" /src: (run (network host) (shell "opam pin add -yn current_web.dev './' && \ \nopam pin add -yn current_slack.dev './' && \ \nopam pin add -yn current_github.dev './' && \ \nopam pin add -yn current_git.dev './' && \ \nopam pin add -yn current_docker.dev './' && \ \nopam pin add -yn current.dev './'")) [current_web.dev] synchronised (file:///src) [WARNING] Failed checks on current_web package definition from source at file:///src: warning 68: Missing field 'license' current_web is now pinned to file:///src (version dev) [current_slack.dev] synchronised (file:///src) [WARNING] Failed checks on current_slack package definition from source at file:///src: warning 68: Missing field 'license' current_slack is now pinned to file:///src (version dev) [current_github.dev] synchronised (file:///src) [WARNING] Failed checks on current_github package definition from source at file:///src: warning 68: Missing field 'license' current_github is now pinned to file:///src (version dev) [current_git.dev] synchronised (file:///src) [WARNING] Failed checks on current_git package definition from source at file:///src: warning 68: Missing field 'license' current_git is now pinned to file:///src (version dev) [current_docker.dev] synchronised (file:///src) [WARNING] Failed checks on current_docker package definition from source at file:///src: warning 68: Missing field 'license' current_docker is now pinned to file:///src (version dev) [current.dev] synchronised (file:///src) [WARNING] Failed checks on current package definition from source at file:///src: warning 68: Missing field 'license' current is now pinned to file:///src (version dev) 2025-10-21 07:42.05 ---> saved as "943666fa92794c78dc46064a2bae10ff5cdddaaefdb61b658f0802c09a1f697e" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-10-21 07:42.06 ---> saved as "85a50d7d5f03f8abd868fadcf3a9e7cc123e2e346cb4b36b42dd4393b594b373" /src: (env DEPS "alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 asetmap.0.8.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 cf.0.5.0 cf-lwt.0.5.0 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libffi.2.0.0 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 ctypes.0.23.0 ctypes-foreign.0.23.0 digestif.1.3.0 dockerfile.8.3.3 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 fsevents.0.3.0 fsevents-lwt.0.3.0 gmap.0.3.0 http.6.1.1 integers.0.7.0 ipaddr.5.6.1 ipaddr-sexp.5.6.1 irmin-watcher.0.5.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_deriving_yojson.3.10.0 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.14.0 rresult.0.7.0 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 sqlite3.5.3.1 stdlib-shims.0.3.0 stringext.1.6.0 tls.2.0.3 topkg.1.1.0 tyxml.4.6.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14") /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 current_web.dev current_slack.dev current_github.dev current_git.dev current_docker.dev current.dev $DEPS")) [WARNING] Unknown update command for bsd, skipping system update <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [current_git.dev] synchronised (file:///src) [current_docker.dev] synchronised (file:///src) [current.dev] synchronised (file:///src) [current_slack.dev] synchronised (file:///src) [current_github.dev] synchronised (file:///src) [current_web.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 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.4.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0). [NOTE] Package ocaml is already installed (current version is 5.4.0). [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-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains 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: ca_root_nss gmp sqlite3 <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/local/bin/sudo "pkg" "install" "-y" "ca_root_nss" "gmp" "sqlite3" - Updating FreeBSD repository catalogue... - [rosemary] Fetching data.pkg: . - ... - ...... done - Processing entries: - .. - . - .. - . - . - .. - . done - FreeBSD repository update completed. 36594 packages processed. - Updating FreeBSD-kmods repository catalogue... - [rosemary] Fetching data.pkg: .. done - Processing entries: .......... done - FreeBSD-kmods repository update completed. 213 packages processed. - All repositories are up to date. - The following 4 package(s) will be affected (of 0 checked): - - New packages to be INSTALLED: - ca_root_nss: 3.115_3 [FreeBSD] - gmp: 6.3.0 [FreeBSD] - libedit: 3.1.20250104,1 [FreeBSD] - sqlite3: 3.50.2_1,1 [FreeBSD] - - Number of packages to be installed: 4 - - The process will require 8 MiB more space. - 2 MiB to be downloaded. - [rosemary] [1/4] Fetching libedit-3.1.20250104,1.pkg: .......... done - [rosemary] [2/4] Fetching sqlite3-3.50.2_1,1.pkg: .......... done - [rosemary] [3/4] Fetching gmp-6.3.0.pkg: .......... done - [rosemary] [4/4] Fetching ca_root_nss-3.115_3.pkg: .......... done - Checking integrity... done (0 conflicting) - [rosemary] [1/4] Installing ca_root_nss-3.115_3... - [rosemary] [1/4] Extracting ca_root_nss-3.115_3: ....... done - [rosemary] [2/4] Installing gmp-6.3.0... - [rosemary] [2/4] Extracting gmp-6.3.0: .......... done - [rosemary] [3/4] Installing libedit-3.1.20250104,1... - [rosemary] [3/4] Extracting libedit-3.1.20250104,1: .......... done - [rosemary] [4/4] Installing sqlite3-3.50.2_1,1... - [rosemary] [4/4] Extracting sqlite3-3.50.2_1,1: .......... done - ===== - Message from ca_root_nss-3.115_3: - - -- - FreeBSD does not, and can not warrant that the certification authorities - whose certificates are included in this package have in any way been - audited for trustworthiness or RFC 3647 compliance. - - Assessment and verification of trust is the complete responsibility of - the system administrator. - - This package installs symlinks to support root certificate discovery - for software that either uses other cryptographic libraries than - OpenSSL, or use OpenSSL but do not follow recommended practice. - - If you prefer to do this manually, replace the following symlinks with - either an empty file or your site-local certificate bundle. - - * /etc/ssl/cert.pem - * /usr/local/etc/ssl/cert.pem - * /usr/local/openssl/cert.pem 2025-10-21 07:43.27 ---> saved as "a37d9245923d2c262e594768259a29371bd40ff256a9d537bdba34ac83b7e959" /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 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.4.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0). [NOTE] Package ocaml is already installed (current version is 5.4.0). [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-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains 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 99 packages ∗ alcotest 1.9.1 ∗ alcotest-lwt 1.9.1 ∗ angstrom 0.16.1 ∗ asetmap 0.8.1 ∗ asn1-combinators 0.3.2 ∗ astring 0.8.5 ∗ base v0.17.3 ∗ base-bytes base ∗ base64 3.5.2 ∗ bigarray-compat 1.1.0 ∗ bigstringaf 0.10.0 ∗ bos 0.2.1 ∗ ca-certs 1.0.1 ∗ cf 0.5.0 ∗ cf-lwt 0.5.0 ∗ cmdliner 1.3.0 ∗ cohttp 6.1.1 ∗ cohttp-lwt 6.1.1 ∗ cohttp-lwt-unix 6.1.1 ∗ conduit 8.0.0 ∗ conduit-lwt 8.0.0 ∗ conduit-lwt-unix 8.0.0 ∗ conf-gmp 5 ∗ conf-gmp-powm-sec 4 ∗ conf-libffi 2.0.0 ∗ conf-pkg-config 4 ∗ conf-sqlite3 1 ∗ cppo 1.8.0 ∗ cpuid 0.1.2 ∗ csexp 1.5.2 ∗ cstruct 6.0.1 ∗ cstruct-lwt 6.0.1 ∗ ctypes 0.23.0 ∗ ctypes-foreign 0.23.0 ∗ digestif 1.3.0 ∗ dockerfile 8.3.3 ∗ domain-name 0.5.0 ∗ dune 3.20.2 ∗ dune-configurator 3.20.2 ∗ duration 0.2.1 ∗ eqaf 0.10 ∗ fmt 0.11.0 ∗ fpath 0.7.3 ∗ fsevents 0.3.0 ∗ fsevents-lwt 0.3.0 ∗ gmap 0.3.0 ∗ http 6.1.1 ∗ integers 0.7.0 ∗ ipaddr 5.6.1 ∗ ipaddr-sexp 5.6.1 ∗ irmin-watcher 0.5.0 ∗ kdf 1.0.0 ∗ logs 0.9.0 ∗ lwt 5.9.2 ∗ macaddr 5.6.1 ∗ magic-mime 1.3.1 ∗ mirage-crypto 2.0.2 ∗ mirage-crypto-ec 2.0.2 ∗ mirage-crypto-pk 2.0.2 ∗ mirage-crypto-rng 2.0.2 ∗ mirage-no-solo5 1 (deprecated) ∗ mirage-no-xen 1 (deprecated) ∗ nocrypto 0.5.4-2 ∗ num 1.6 ∗ ocaml-compiler-libs v0.17.0 ∗ ocaml-syntax-shims 1.0.0 ∗ ocaml_intrinsics_kernel v0.17.1 ∗ ocamlbuild 0.16.1 ∗ ocamlfind 1.9.8 ∗ ocb-stubblr 0.1.1-1 ∗ ocplib-endian 1.2 ∗ ohex 0.2.0 ∗ parsexp v0.17.0 ∗ ppx_derivers 1.2.1 ∗ ppx_deriving 6.1.1 ∗ ppx_deriving_yojson 3.10.0 ∗ ppx_sexp_conv v0.17.1 ∗ ppxlib 0.37.0 ∗ ppxlib_jane v0.17.4 ∗ prometheus 1.2 ∗ prometheus-app 1.2 ∗ ptime 1.2.0 ∗ re 1.14.0 ∗ rresult 0.7.0 ∗ seq base ∗ sexplib v0.17.0 ∗ sexplib0 v0.17.0 ∗ sqlite3 5.3.1 ∗ stdlib-shims 0.3.0 ∗ stringext 1.6.0 ∗ tls 2.0.3 ∗ topkg 1.1.0 ∗ tyxml 4.6.0 ∗ uri 4.4.0 ∗ uri-sexp 4.4.0 ∗ uutf 1.0.4 ∗ x509 1.0.6 ∗ yojson 3.0.0 ∗ zarith 1.14 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> ⬇ retrieved asetmap.0.8.1 (cached) ⬇ retrieved angstrom.0.16.1 (cached) ⬇ retrieved asn1-combinators.0.3.2 (cached) ⬇ retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (cached) ⬇ retrieved base.v0.17.3 (cached) ⬇ retrieved base64.3.5.2 (cached) ⬇ retrieved bigarray-compat.1.1.0 (cached) ⬇ retrieved astring.0.8.5 (cached) ⬇ retrieved bigstringaf.0.10.0 (cached) ⬇ retrieved ca-certs.1.0.1 (cached) ⬇ retrieved bos.0.2.1 (cached) ⬇ retrieved cmdliner.1.3.0 (cached) ⬇ retrieved cf.0.5.0, cf-lwt.0.5.0 (cached) ⬇ retrieved conf-gmp.5 (cached) ⬇ retrieved conf-gmp-powm-sec.4 (cached) ∗ installed conf-pkg-config.4 ∗ installed conf-gmp.5 ∗ installed conf-sqlite3.1 ∗ installed conf-gmp-powm-sec.4 ∗ installed conf-libffi.2.0.0 ⬇ retrieved cppo.1.8.0 (cached) ⬇ retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (https://github.com/mirage/ocaml-conduit/releases/download/v8.0.0/conduit-8.0.0.tbz) ⬇ retrieved csexp.1.5.2 (cached) ⬇ retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (https://github.com/mirage/ocaml-cohttp/releases/download/v6.1.1/cohttp-6.1.1.tbz) ⬇ retrieved cpuid.0.1.2 (https://github.com/pqwy/cpuid/releases/download/v0.1.2/cpuid-v0.1.2.tbz) ⬇ retrieved cstruct.6.0.1, cstruct-lwt.6.0.1 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.0.1/cstruct-v6.0.1.tbz) ⬇ retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached) ⬇ retrieved dockerfile.8.3.3 (cached) ⬇ retrieved domain-name.0.5.0 (cached) ⬇ retrieved duration.0.2.1 (cached) ⬇ retrieved eqaf.0.10 (cached) ⬇ retrieved fmt.0.11.0 (cached) ⬇ retrieved fpath.0.7.3 (cached) ⬇ retrieved fsevents.0.3.0, fsevents-lwt.0.3.0 (cached) ⬇ retrieved gmap.0.3.0 (cached) ⬇ retrieved integers.0.7.0 (cached) ⬇ retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1 (cached) ⬇ retrieved irmin-watcher.0.5.0 (cached) ⬇ retrieved kdf.1.0.0 (cached) ⬇ retrieved logs.0.9.0 (cached) ⬇ retrieved lwt.5.9.2 (cached) ⬇ retrieved digestif.1.3.0 (cached) ⬇ retrieved magic-mime.1.3.1 (cached) ∗ installed mirage-no-solo5.1 ∗ installed mirage-no-xen.1 ⬇ retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2 (cached) ⬇ retrieved num.1.6 (cached) ⬇ retrieved dune.3.20.2, dune-configurator.3.20.2 (cached) ⬇ retrieved ocaml-syntax-shims.1.0.0 (cached) ∗ installed num.1.6 ⬇ retrieved ocaml_intrinsics_kernel.v0.17.1 (cached) ⬇ retrieved ocaml-compiler-libs.v0.17.0 (cached) ⬇ retrieved ocamlbuild.0.16.1 (cached) ⬇ retrieved ocamlfind.1.9.8 (cached) ⬇ retrieved ocplib-endian.1.2 (cached) ⬇ retrieved ohex.0.2.0 (cached) ⬇ retrieved parsexp.v0.17.0 (cached) ⬇ retrieved ppx_derivers.1.2.1 (cached) ⬇ retrieved ppx_deriving.6.1.1 (cached) ∗ installed cmdliner.1.3.0 ⬇ retrieved ppx_deriving_yojson.3.10.0 (cached) ⬇ retrieved ppx_sexp_conv.v0.17.1 (cached) ⬇ retrieved ppxlib.0.37.0 (cached) ⬇ retrieved ppxlib_jane.v0.17.4 (cached) ⬇ retrieved prometheus.1.2, prometheus-app.1.2 (cached) ⬇ retrieved ptime.1.2.0 (cached) ⬇ retrieved re.1.14.0 (cached) ⬇ retrieved rresult.0.7.0 (cached) ⬇ retrieved seq.base (cached) ∗ installed seq.base ⬇ retrieved sexplib.v0.17.0 (cached) ⬇ retrieved sexplib0.v0.17.0 (cached) ⬇ retrieved sqlite3.5.3.1 (cached) ⬇ retrieved stdlib-shims.0.3.0 (cached) ⬇ retrieved stringext.1.6.0 (cached) ⬇ retrieved ocb-stubblr.0.1.1-1 (https://github.com/pqwy/ocb-stubblr/releases/download/v0.1.1/ocb-stubblr-0.1.1.tbz) ⬇ retrieved topkg.1.1.0 (cached) ⬇ retrieved tls.2.0.3 (cached) ⬇ retrieved tyxml.4.6.0 (cached) ⬇ retrieved uutf.1.0.4 (cached) ⬇ retrieved uri.4.4.0, uri-sexp.4.4.0 (cached) ⬇ retrieved x509.1.0.6 (cached) ⬇ retrieved zarith.1.14 (cached) ⬇ retrieved yojson.3.0.0 (cached) ⬇ retrieved nocrypto.0.5.4-2 (https://github.com/mirleft/ocaml-nocrypto/releases/download/v0.5.4/nocrypto-0.5.4.tbz) ∗ installed ocamlfind.1.9.8 ∗ installed base-bytes.base ∗ installed zarith.1.14 ∗ installed ocamlbuild.0.16.1 ∗ installed topkg.1.1.0 ∗ installed asetmap.0.8.1 ∗ installed rresult.0.7.0 ∗ installed uutf.1.0.4 ∗ installed ptime.1.2.0 ∗ installed fmt.0.11.0 ∗ installed astring.0.8.5 ∗ installed ocb-stubblr.0.1.1-1 ∗ installed fpath.0.7.3 ∗ installed dune.3.20.2 ∗ installed duration.0.2.1 ∗ installed base64.3.5.2 ∗ installed gmap.0.3.0 ∗ installed csexp.1.5.2 ∗ installed stringext.1.6.0 ∗ installed stdlib-shims.0.3.0 ∗ installed sexplib0.v0.17.0 ∗ installed ppx_derivers.1.2.1 ∗ installed ohex.0.2.0 ∗ installed re.1.14.0 ∗ installed yojson.3.0.0 ∗ installed ocaml_intrinsics_kernel.v0.17.1 ∗ installed ocaml-syntax-shims.1.0.0 ∗ installed ocaml-compiler-libs.v0.17.0 ∗ installed magic-mime.1.3.1 ∗ installed macaddr.5.6.1 ∗ installed integers.0.7.0 ∗ installed http.6.1.1 ∗ installed eqaf.0.10 ∗ installed domain-name.0.5.0 ∗ installed cpuid.0.1.2 ∗ installed cppo.1.8.0 ∗ installed bigarray-compat.1.1.0 ∗ installed asn1-combinators.0.3.2 ∗ installed ocplib-endian.1.2 ∗ installed ipaddr.5.6.1 ∗ installed cstruct.6.0.1 ∗ installed alcotest.1.9.1 ∗ installed dune-configurator.3.20.2 ∗ installed parsexp.v0.17.0 ∗ installed digestif.1.3.0 ∗ installed bigstringaf.0.10.0 ∗ installed angstrom.0.16.1 ∗ installed sqlite3.5.3.1 ∗ installed sexplib.v0.17.0 ∗ installed mirage-crypto.2.0.2 ∗ installed kdf.1.0.0 ∗ installed tyxml.4.6.0 ∗ installed uri.4.4.0 ∗ installed lwt.5.9.2 ∗ installed cstruct-lwt.6.0.1 ∗ installed prometheus.1.2 ∗ installed ctypes.0.23.0 ∗ installed logs.0.9.0 ∗ installed alcotest-lwt.1.9.1 ∗ installed mirage-crypto-rng.2.0.2 ∗ installed base.v0.17.3 ∗ installed mirage-crypto-pk.2.0.2 ∗ installed ctypes-foreign.0.23.0 ∗ installed cf.0.5.0 ∗ installed fsevents.0.3.0 ∗ installed cf-lwt.0.5.0 ∗ installed fsevents-lwt.0.3.0 ∗ installed irmin-watcher.0.5.0 ∗ installed bos.0.2.1 ∗ installed mirage-crypto-ec.2.0.2 ∗ installed x509.1.0.6 ∗ installed ca-certs.1.0.1 ∗ installed tls.2.0.3 ∗ installed ppxlib.0.37.0 ∗ installed ppxlib_jane.v0.17.4 ∗ installed ppx_deriving.6.1.1 ∗ installed ppx_deriving_yojson.3.10.0 ∗ installed ppx_sexp_conv.v0.17.1 ∗ installed ipaddr-sexp.5.6.1 ∗ installed uri-sexp.4.4.0 ∗ installed dockerfile.8.3.3 ∗ installed conduit.8.0.0 ∗ installed conduit-lwt.8.0.0 ∗ installed cohttp.6.1.1 ∗ installed conduit-lwt-unix.8.0.0 ∗ installed cohttp-lwt.6.1.1 ∗ installed cohttp-lwt-unix.6.1.1 ∗ installed prometheus-app.1.2 ∗ installed nocrypto.0.5.4-2 Done. <><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><> => Note: This package is deprecated. <><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><> => Note: This package is deprecated. 2025-10-21 07:45.09 ---> saved as "60504419e2d3184e006d3052941b3f07e933c0ec8d04764013082297d3705cf8" /src: (copy (src .) (dst /src)) 2025-10-21 07:45.10 ---> saved as "0ec8ab370eb9abe4c6ef9be67931e88c3a2d6254130e5350f3c4a9e5eecbeada" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -bin-annot-occurrences -I lib_term/.current_term.objs/byte -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/rresult -cmi-file lib_term/.current_term.objs/byte/current_term__Dot.cmi -no-alias-deps -opaque -open Current_term__ -o lib_term/.current_term.objs/byte/current_term__Dot.cmo -c -impl lib_term/dot.ml) File "lib_term/dot.ml", line 20, characters 42-46: 20 | Fmt.pf f "n%d [%a]@," i Fmt.(list ~sep:(unit ",") pp_option) attrs ^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. File "lib_term/dot.ml", line 26, characters 22-30: 26 | (Fmt.list ~sep:(Fmt.unit ",") pp_option) items ^^^^^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I lib_term/.current_term.objs/byte -I lib_term/.current_term.objs/native -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/rresult -cmi-file lib_term/.current_term.objs/byte/current_term__Dot.cmi -no-alias-deps -opaque -open Current_term__ -o lib_term/.current_term.objs/native/current_term__Dot.cmx -c -impl lib_term/dot.ml) File "lib_term/dot.ml", line 20, characters 42-46: 20 | Fmt.pf f "n%d [%a]@," i Fmt.(list ~sep:(unit ",") pp_option) attrs ^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. File "lib_term/dot.ml", line 26, characters 22-30: 26 | (Fmt.list ~sep:(Fmt.unit ",") pp_option) items ^^^^^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -bin-annot-occurrences -I lib_term/.current_term.objs/byte -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/rresult -cmi-file lib_term/.current_term.objs/byte/current_term.cmi -no-alias-deps -opaque -open Current_term__ -o lib_term/.current_term.objs/byte/current_term.cmo -c -impl lib_term/current_term.ml) File "lib_term/current_term.ml", line 79, characters 22-30: 79 | let component fmt = Fmt.strf ("@[<v>" ^^ fmt ^^ "@]") ^^^^^^^^ Error (alert deprecated): Fmt.strf use Fmt.str instead. (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -bin-annot-occurrences -I lib/.current.objs/byte -I /home/opam/.opam/5.4.0/lib/asetmap -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/bytes -I /home/opam/.opam/5.4.0/lib/cmdliner -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/lwt -I /home/opam/.opam/5.4.0/lib/lwt/unix -I /home/opam/.opam/5.4.0/lib/ocaml/threads -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ocplib-endian -I /home/opam/.opam/5.4.0/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/prometheus -I /home/opam/.opam/5.4.0/lib/re -I /home/opam/.opam/5.4.0/lib/rresult -I /home/opam/.opam/5.4.0/lib/sqlite3 -I lib_term/.current_term.objs/byte -cmi-file lib/.current.objs/byte/current__Level.cmi -no-alias-deps -opaque -open Current__ -o lib/.current.objs/byte/current__Level.cmo -c -impl lib/level.pp.ml) File "lib/level.ml", line 34, characters 17-25: 34 | Error (`Msg (Fmt.strf "Unknown level %S; expected one of %a" x ^^^^^^^^ Error (alert deprecated): Fmt.strf use Fmt.str instead. File "lib/level.ml", line 35, characters 35-39: 35 | Fmt.(list ~sep:(unit ", ") pp) values)) ^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I lib/.current.objs/byte -I lib/.current.objs/native -I /home/opam/.opam/5.4.0/lib/asetmap -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/bytes -I /home/opam/.opam/5.4.0/lib/cmdliner -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/lwt -I /home/opam/.opam/5.4.0/lib/lwt/unix -I /home/opam/.opam/5.4.0/lib/ocaml/threads -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ocplib-endian -I /home/opam/.opam/5.4.0/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/prometheus -I /home/opam/.opam/5.4.0/lib/re -I /home/opam/.opam/5.4.0/lib/rresult -I /home/opam/.opam/5.4.0/lib/sqlite3 -I lib_term/.current_term.objs/byte -I lib_term/.current_term.objs/native -cmi-file lib/.current.objs/byte/current__Level.cmi -no-alias-deps -opaque -open Current__ -o lib/.current.objs/native/current__Level.cmx -c -impl lib/level.pp.ml) File "lib/level.ml", line 34, characters 17-25: 34 | Error (`Msg (Fmt.strf "Unknown level %S; expected one of %a" x ^^^^^^^^ Error (alert deprecated): Fmt.strf use Fmt.str instead. File "lib/level.ml", line 35, characters 35-39: 35 | Fmt.(list ~sep:(unit ", ") pp) values)) ^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -bin-annot-occurrences -I lib/.current.objs/byte -I /home/opam/.opam/5.4.0/lib/asetmap -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/bytes -I /home/opam/.opam/5.4.0/lib/cmdliner -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/lwt -I /home/opam/.opam/5.4.0/lib/lwt/unix -I /home/opam/.opam/5.4.0/lib/ocaml/threads -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ocplib-endian -I /home/opam/.opam/5.4.0/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/prometheus -I /home/opam/.opam/5.4.0/lib/re -I /home/opam/.opam/5.4.0/lib/rresult -I /home/opam/.opam/5.4.0/lib/sqlite3 -I lib_term/.current_term.objs/byte -no-alias-deps -opaque -open Current__ -o lib/.current.objs/byte/current__Switch.cmo -c -impl lib/switch.ml) File "lib/switch.ml", line 14, characters 44-52: 14 | let pp_reason f x = Current_term.Output.pp (Fmt.unit "()") f (x :> unit Current_term.Output.t) ^^^^^^^^ Error (alert deprecated): Fmt.unit use Fmt.any instead. (cd _build/default && /home/opam/.opam/5.4.0/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I lib_term/.current_term.objs/byte -I lib_term/.current_term.objs/native -I /home/opam/.opam/5.4.0/lib/astring -I /home/opam/.opam/5.4.0/lib/bos -I /home/opam/.opam/5.4.0/lib/fmt -I /home/opam/.opam/5.4.0/lib/fpath -I /home/opam/.opam/5.4.0/lib/logs -I /home/opam/.opam/5.4.0/lib/ocaml/unix -I /home/opam/.opam/5.4.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4.0/lib/rresult -cmi-file lib_term/.current_term.objs/byte/current_term.cmi -no-alias-deps -opaque -open Current_term__ -o lib_term/.current_term.objs/native/current_term.cmx -c -impl lib_term/current_term.ml) File "lib_term/current_term.ml", line 79, characters 22-30: 79 | let component fmt = Fmt.strf ("@[<v>" ^^ fmt ^^ "@]") ^^^^^^^^ Error (alert deprecated): Fmt.strf use Fmt.str instead. jail: /usr/bin/su -l opam -c cd '/src' && env OCAMLCI='true' CI='true' DEPS='alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 asetmap.0.8.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 cf.0.5.0 cf-lwt.0.5.0 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libffi.2.0.0 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 ctypes.0.23.0 ctypes-foreign.0.23.0 digestif.1.3.0 dockerfile.8.3.3 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 fsevents.0.3.0 fsevents-lwt.0.3.0 gmap.0.3.0 http.6.1.1 integers.0.7.0 ipaddr.5.6.1 ipaddr-sexp.5.6.1 irmin-watcher.0.5.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_deriving_yojson.3.10.0 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.14.0 rresult.0.7.0 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 sqlite3.5.3.1 stdlib-shims.0.3.0 stringext.1.6.0 tls.2.0.3 topkg.1.1.0 tyxml.4.6.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14' OPAMCOLOR='always' CLICOLOR_FORCE='1' '/usr/bin/env' 'bash' '-c' 'opam exec -- dune build @install @check @runtest && rm -rf _build': failed "jail" "-c" "name=obuilder_856_5431" "mount.devfs" "path=/obuilder/result/e8f4cc527917890c67650d50318c03fcb1ebe7850d584eae648e47c4730bebc5/rootfs" "vnet" "exec.start=/sbin/ifconfig lo0 127.0.0.1/8" "command=/usr/bin/su" "-l" "opam" "-c" "cd '/src' && env OCAMLCI='true' CI='true' DEPS='alcotest.1.9.1 alcotest-lwt.1.9.1 angstrom.0.16.1 asetmap.0.8.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 cf.0.5.0 cf-lwt.0.5.0 cmdliner.1.3.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libffi.2.0.0 conf-pkg-config.4 conf-sqlite3.1 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 ctypes.0.23.0 ctypes-foreign.0.23.0 digestif.1.3.0 dockerfile.8.3.3 domain-name.0.5.0 dune.3.20.2 dune-configurator.3.20.2 duration.0.2.1 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 fsevents.0.3.0 fsevents-lwt.0.3.0 gmap.0.3.0 http.6.1.1 integers.0.7.0 ipaddr.5.6.1 ipaddr-sexp.5.6.1 irmin-watcher.0.5.0 kdf.1.0.0 logs.0.9.0 lwt.5.9.2 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.6 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppx_deriving_yojson.3.10.0 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.14.0 rresult.0.7.0 seq.base sexplib.v0.17.0 sexplib0.v0.17.0 sqlite3.5.3.1 stdlib-shims.0.3.0 stringext.1.6.0 tls.2.0.3 topkg.1.1.0 tyxml.4.6.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14' OPAMCOLOR='always' CLICOLOR_FORCE='1' '/usr/bin/env' 'bash' '-c' 'opam exec -- dune build @install @check @runtest && rm -rf _build'" failed with exit status 1 2025-10-21 07:46.35: Job failed: Failed: Build failed