2025-09-16 10:12.04: New job: test talex5/ocurrent https://github.com/talex5/ocurrent.git#refs/heads/master (9c115b457b37d4b4343554c80b30f3d7a6b2cd88) (freebsd-x86_64:freebsd-14.2-5.3_opam-2.4)
Base: freebsd-14.2-ocaml-5.3
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.2-ocaml-5.3
# freebsd-14.2-5.3_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 6ef6813522b6ea29933f6451236a1639bdbaec61 || git fetch origin master) && git reset -q --hard 6ef6813522b6ea29933f6451236a1639bdbaec61 && 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.0 alcotest-lwt.1.9.0 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.1 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.1 domain-name.0.4.1 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.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.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.36.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.13.2 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.2 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-09-16 10:12.04: Using cache hint "talex5/ocurrent-freebsd-14.2-ocaml-5.3-freebsd-14.2-5.3_opam-2.4-7b632d07e6b41f0c2be47cacf1cbc1c2"
2025-09-16 10:12.04: Using OBuilder spec:
((from freebsd-14.2-ocaml-5.3)
(comment freebsd-14.2-5.3_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 6ef6813522b6ea29933f6451236a1639bdbaec61 || git fetch origin master) && git reset -q --hard 6ef6813522b6ea29933f6451236a1639bdbaec61 && 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.0 alcotest-lwt.1.9.0 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.1 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.1 domain-name.0.4.1 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.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.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.36.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.13.2 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.2 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-09-16 10:12.04: Waiting for resource in pool OCluster
2025-09-16 11:55.52: Waiting for worker…
2025-09-16 12:47.48: Got resource from pool OCluster
Building on rosemary
All commits already cached
HEAD is now at 9c115b4 Add Github.commit type
(from freebsd-14.2-ocaml-5.3)
2025-09-16 12:55.29 ---> using "47c9a03b962be450225081ed69acde1f5c6dadb6d1106d9b1a8b4fd61c2defa6" from cache
/: (comment freebsd-14.2-5.3_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-09-16 12:55.29 ---> using "3cf9d05e5eb2b3cab7746fab6ccc73ebe3b43051756027b7ee3d88bc2433384a" 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-09-16 12:55.29 ---> using "6be513be757734d73b41a31e19f8ae22aa3fe2fd424869d3fd3c8b16bb4fa69a" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.2-RELEASE-p1
The OCaml toplevel, version 5.3.0
2.4.1
2025-09-16 12:55.30 ---> using "6406a960b971760de52a319d92e3ade2dc00fc29daba60f2a83f980f00dde731" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-09-16 12:55.30 ---> using "ceecf1d51f19afc7e1cbf641861a5e731a764903c017a5b842658d708b08899c" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 6ef6813522b6ea29933f6451236a1639bdbaec61 || git fetch origin master) && git reset -q --hard 6ef6813522b6ea29933f6451236a1639bdbaec61 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
4028320478..7949ff40d8 master -> origin/master
6ef6813522 Merge pull request #28449 from dra27/ocaml-compiler-msvc
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository
Already up-to-date.
Nothing to do.
2025-09-16 12:55.30 ---> using "91759d5f3fe03d58fbf57a8621ed87fe99bdc24a888d2e9aabe5ccaf101a2ddc" from cache
/src: (copy (src current_web.opam current_slack.opam current_github.opam current_git.opam current_docker.opam current.opam)
(dst ./))
2025-09-16 12:55.31 ---> saved as "ec675a4f4f6c433c6c81fe1ad68debaee22d81b4c07d6eb5b84507509e2b36c7"
/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-09-16 12:55.37 ---> saved as "af0372f601937d50d026f0ee0501ec2ea081d86f13b07a311141ffde3579886c"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-09-16 12:55.38 ---> saved as "b4b62fc210d99069fee06021a539790936188094d90470d7dd9b93e1723e0516"
/src: (env DEPS "alcotest.1.9.0 alcotest-lwt.1.9.0 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.1 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.1 domain-name.0.4.1 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.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.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.36.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.13.2 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.2 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_github.dev] synchronised (file:///src)
[current_slack.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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.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. 35671 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.108
- gmp: 6.3.0
- libedit: 3.1.20250104,1
- sqlite3: 3.50.2_1,1
-
- 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.108.pkg: .......... done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/4] Installing ca_root_nss-3.108...
- [rosemary] [1/4] Extracting ca_root_nss-3.108: ....... done
- Scanning /usr/share/certs/untrusted for certificates...
- Scanning /usr/share/certs/trusted for certificates...
- Scanning /usr/local/share/certs for certificates...
- [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.108:
-
- --
- 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-09-16 12:56.21 ---> saved as "791303168551c40e2e0634ec3987cb1531744b82af12e8ba8664f205f50c6075"
/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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.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.0
∗ alcotest-lwt 1.9.0
∗ 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.1
∗ 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.1
∗ domain-name 0.4.1
∗ 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.36.0
∗ ppxlib_jane v0.17.4
∗ prometheus 1.2
∗ prometheus-app 1.2
∗ ptime 1.2.0
∗ re 1.13.2
∗ 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.2
∗ 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.0, alcotest-lwt.1.9.0 (cached)
⬇ retrieved base.v0.17.3 (cached)
⬇ retrieved base64.3.5.1 (cached)
⬇ retrieved astring.0.8.5 (cached)
⬇ retrieved bigstringaf.0.10.0 (cached)
⬇ retrieved bos.0.2.1 (cached)
⬇ retrieved ca-certs.1.0.1 (cached)
⬇ retrieved bigarray-compat.1.1.0 (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)
⬇ retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
∗ installed conf-pkg-config.4
⬇ retrieved cpuid.0.1.2 (cached)
∗ installed conf-sqlite3.1
∗ installed conf-libffi.2.0.0
⬇ retrieved csexp.1.5.2 (cached)
∗ installed conf-gmp.5
⬇ retrieved cppo.1.8.0 (cached)
∗ installed conf-gmp-powm-sec.4
⬇ retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (cached)
⬇ retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached)
⬇ retrieved cstruct.6.0.1, cstruct-lwt.6.0.1 (cached)
⬇ retrieved dockerfile.8.3.1 (cached)
⬇ retrieved domain-name.0.4.1 (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 nocrypto.0.5.4-2 (cached)
⬇ retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
⬇ retrieved ocaml-compiler-libs.v0.17.0 (cached)
⬇ retrieved num.1.6 (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0 (cached)
⬇ retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocb-stubblr.0.1.1-1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ohex.0.2.0 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
⬇ 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 ppx_derivers.1.2.1 (cached)
⬇ retrieved parsexp.v0.17.0 (cached)
⬇ retrieved ppx_deriving_yojson.3.10.0 (cached)
⬇ retrieved ppx_sexp_conv.v0.17.1 (cached)
⬇ retrieved ppx_deriving.6.1.1 (cached)
⬇ retrieved ppxlib_jane.v0.17.4 (cached)
⬇ retrieved ptime.1.2.0 (cached)
⬇ retrieved prometheus.1.2, prometheus-app.1.2 (cached)
⬇ retrieved re.1.13.2 (cached)
⬇ retrieved seq.base (cached)
⬇ retrieved rresult.0.7.0 (cached)
⬇ retrieved sexplib.v0.17.0 (cached)
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved sqlite3.5.3.1 (cached)
⬇ retrieved stringext.1.6.0 (cached)
⬇ retrieved ppxlib.0.36.0 (cached)
⬇ retrieved topkg.1.1.0 (cached)
⬇ retrieved tls.2.0.2 (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)
∗ installed cmdliner.1.3.0
∗ installed seq.base
∗ installed num.1.6
∗ installed ocamlbuild.0.16.1
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed zarith.1.14
∗ 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 macaddr.5.6.1
∗ installed gmap.0.3.0
∗ installed duration.0.2.1
∗ installed ppx_derivers.1.2.1
∗ installed ohex.0.2.0
∗ installed domain-name.0.4.1
∗ installed stdlib-shims.0.3.0
∗ installed stringext.1.6.0
∗ installed http.6.1.1
∗ installed eqaf.0.10
∗ installed ocaml-syntax-shims.1.0.0
∗ installed csexp.1.5.2
∗ installed digestif.1.3.0
∗ installed integers.0.7.0
∗ installed ipaddr.5.6.1
∗ installed yojson.3.0.0
∗ installed sexplib0.v0.17.0
∗ installed re.1.13.2
∗ installed ocaml_intrinsics_kernel.v0.17.1
∗ installed ocaml-compiler-libs.v0.17.0
∗ installed magic-mime.1.3.1
∗ installed cpuid.0.1.2
∗ installed cppo.1.8.0
∗ installed bigarray-compat.1.1.0
∗ installed base64.3.5.1
∗ installed asn1-combinators.0.3.2
∗ installed ocplib-endian.1.2
∗ installed cstruct.6.0.1
∗ installed dune-configurator.3.20.2
∗ installed bigstringaf.0.10.0
∗ installed alcotest.1.9.0
∗ installed parsexp.v0.17.0
∗ installed angstrom.0.16.1
∗ installed sqlite3.5.3.1
∗ installed mirage-crypto.2.0.2
∗ installed tyxml.4.6.0
∗ installed sexplib.v0.17.0
∗ installed kdf.1.0.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.0
∗ 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 cf-lwt.0.5.0
∗ installed fsevents.0.3.0
∗ installed bos.0.2.1
∗ installed fsevents-lwt.0.3.0
∗ installed irmin-watcher.0.5.0
∗ installed mirage-crypto-ec.2.0.2
∗ installed ppxlib.0.36.0
∗ installed x509.1.0.6
∗ installed ca-certs.1.0.1
∗ installed ppxlib_jane.v0.17.4
∗ installed ppx_deriving.6.1.1
∗ installed tls.2.0.2
∗ 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 conduit.8.0.0
∗ installed dockerfile.8.3.1
∗ 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-09-16 12:59.07 ---> saved as "930d4a02f8081606710f4b24f66caba4036a3360af654b18e47d8f69d97aed9f"
/src: (copy (src .) (dst /src))
2025-09-16 12:59.11 ---> saved as "ea10e0241dd6ddee2d2753f2d51f6979e67f80186631ed30e2b2904d672c6116"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default && /home/opam/.opam/5.3.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.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.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.3.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.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.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.3.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.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.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.3.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.3.0/lib/asetmap -I /home/opam/.opam/5.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/bytes -I /home/opam/.opam/5.3.0/lib/cmdliner -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/lwt -I /home/opam/.opam/5.3.0/lib/lwt/unix -I /home/opam/.opam/5.3.0/lib/ocaml/threads -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ocplib-endian -I /home/opam/.opam/5.3.0/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.0/lib/prometheus -I /home/opam/.opam/5.3.0/lib/re -I /home/opam/.opam/5.3.0/lib/rresult -I /home/opam/.opam/5.3.0/lib/seq -I /home/opam/.opam/5.3.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.3.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.3.0/lib/asetmap -I /home/opam/.opam/5.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/bytes -I /home/opam/.opam/5.3.0/lib/cmdliner -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/lwt -I /home/opam/.opam/5.3.0/lib/lwt/unix -I /home/opam/.opam/5.3.0/lib/ocaml/threads -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ocplib-endian -I /home/opam/.opam/5.3.0/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.0/lib/prometheus -I /home/opam/.opam/5.3.0/lib/re -I /home/opam/.opam/5.3.0/lib/rresult -I /home/opam/.opam/5.3.0/lib/seq -I /home/opam/.opam/5.3.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.3.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.3.0/lib/asetmap -I /home/opam/.opam/5.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/bytes -I /home/opam/.opam/5.3.0/lib/cmdliner -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/lwt -I /home/opam/.opam/5.3.0/lib/lwt/unix -I /home/opam/.opam/5.3.0/lib/ocaml/threads -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ocplib-endian -I /home/opam/.opam/5.3.0/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.0/lib/prometheus -I /home/opam/.opam/5.3.0/lib/re -I /home/opam/.opam/5.3.0/lib/rresult -I /home/opam/.opam/5.3.0/lib/seq -I /home/opam/.opam/5.3.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.3.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.3.0/lib/astring -I /home/opam/.opam/5.3.0/lib/bos -I /home/opam/.opam/5.3.0/lib/fmt -I /home/opam/.opam/5.3.0/lib/fpath -I /home/opam/.opam/5.3.0/lib/logs -I /home/opam/.opam/5.3.0/lib/ocaml/unix -I /home/opam/.opam/5.3.0/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3.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.0 alcotest-lwt.1.9.0 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.1 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.1 domain-name.0.4.1 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.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.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.36.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.13.2 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.2 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_58756_34607" "mount.devfs" "path=/obuilder/result/b42568bcd45a7561670ec059221fd7e1a9d0541598b4d56ebdaecae2b396960f/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.0 alcotest-lwt.1.9.0 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.1 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.1 domain-name.0.4.1 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.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.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.36.0 ppxlib_jane.v0.17.4 prometheus.1.2 prometheus-app.1.2 ptime.1.2.0 re.1.13.2 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.2 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-09-16 13:00.23: Job failed: Failed: Build failed