Organisationstalex5ocurrent9c115b (master)fedora-43-5.4_opam-2.4

fedora-43-5.4_opam-2.4

Link Copied
Code Copied

Logs

2025-10-18 16:37.17: New job: test talex5/ocurrent https://github.com/talex5/ocurrent.git#refs/heads/master (9c115b457b37d4b4343554c80b30f3d7a6b2cd88) (linux-x86_64:fedora-43-5.4_opam-2.4)
Base: ocaml/opam:fedora-43-ocaml-5.4@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115
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 ocaml/opam:fedora-43-ocaml-5.4@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115
# fedora-43-5.4_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo dnf install -y findutils
RUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && 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.2 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 inotify.2.6 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-18 16:37.17: Using cache hint "talex5/ocurrent-ocaml/opam:fedora-43-ocaml-5.4@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115-fedora-43-5.4_opam-2.4-10b6c6cd3596e510e21dd5343a11e97b"
2025-10-18 16:37.17: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-5.4@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115)
(comment fedora-43-5.4_opam-2.4)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (network host)
(shell "sudo dnf install -y findutils"))
(run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && 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.2 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 inotify.2.6 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-18 16:37.17: Waiting for resource in pool OCluster
2025-10-18 18:26.23: Waiting for worker…
2025-10-18 18:28.49: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
Initialised empty Git repository in /var/cache/obuilder/ocluster/git/ocurrent.git-ed73fc77c74868d8b5c8132b3a6689114b4df266/.git/
HEAD is now at 9c115b4 Add Github.commit type


(from ocaml/opam:fedora-43-ocaml-5.4@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115)
Unable to find image 'ocaml/opam:fedora-43-ocaml-5.4@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115' locally
docker.io/ocaml/opam@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115: Pulling from ocaml/opam
3a6ccf50917d: Already exists
698b8d1610af: Already exists
7e5b745a56a4: Already exists
e8859609bfb8: Already exists
51242d36b3fd: Already exists
61958fadfb74: Already exists
04578677ff3f: Already exists
01b19b859bd1: Already exists
47b008c442e7: Already exists
434ff16e8a1b: Already exists
e2e8d2ec1110: Already exists
bb8f1dbb2acd: Pulling fs layer
c914fb01d9b0: Pulling fs layer
acbc7d112060: Pulling fs layer
7b0ca93f3f54: Pulling fs layer
5a223856338a: Pulling fs layer
ace6a731f305: Pulling fs layer
a6230b7fafa0: Pulling fs layer
917f9b8155b5: Pulling fs layer
8f7a3b7d908f: Pulling fs layer
4f4fb700ef54: Pulling fs layer
7af8a72dec52: Pulling fs layer
7b0ca93f3f54: Waiting
9565a36b4e3a: Pulling fs layer
ace6a731f305: Waiting
5a223856338a: Waiting
a1ba7d9452a1: Pulling fs layer
a6230b7fafa0: Waiting
24a9095bda75: Pulling fs layer
917f9b8155b5: Waiting
7af8a72dec52: Waiting
16c026bd2ca7: Pulling fs layer
6b821f07d597: Pulling fs layer
4f4fb700ef54: Waiting
8f7a3b7d908f: Waiting
afd0175f27f4: Pulling fs layer
24a9095bda75: Waiting
9565a36b4e3a: Waiting
88ab18f654c7: Pulling fs layer
16c026bd2ca7: Waiting
6b821f07d597: Waiting
a1ba7d9452a1: Waiting
be69a91a3ef7: Pulling fs layer
afd0175f27f4: Waiting
88ab18f654c7: Waiting
ce8a4e53f5e3: Pulling fs layer
be69a91a3ef7: Waiting
3e2bdc6df5e4: Pulling fs layer
ff986d64677f: Pulling fs layer
ce8a4e53f5e3: Waiting
3e2bdc6df5e4: Waiting
9c9f7117b120: Pulling fs layer
ff986d64677f: Waiting
8bc6797e23fc: Pulling fs layer
9c9f7117b120: Waiting
07b81fe7312a: Pulling fs layer
43fc65bb52eb: Pulling fs layer
8bc6797e23fc: Waiting
07b81fe7312a: Waiting
a5d75845130a: Pulling fs layer
1eec13083f65: Pulling fs layer
43fc65bb52eb: Waiting
aab9ec9135e1: Pulling fs layer
a5d75845130a: Waiting
cc2ed799adba: Pulling fs layer
1eec13083f65: Waiting
aab9ec9135e1: Waiting
b808f888e100: Pulling fs layer
e51d6b85f31b: Pulling fs layer
b808f888e100: Waiting
8c8cec09df68: Pulling fs layer
e51d6b85f31b: Waiting
8c8cec09df68: Waiting
acbc7d112060: Verifying Checksum
acbc7d112060: Download complete
c914fb01d9b0: Verifying Checksum
c914fb01d9b0: Download complete
bb8f1dbb2acd: Verifying Checksum
bb8f1dbb2acd: Download complete
7b0ca93f3f54: Verifying Checksum
7b0ca93f3f54: Download complete
ace6a731f305: Verifying Checksum
ace6a731f305: Download complete
bb8f1dbb2acd: Pull complete
c914fb01d9b0: Pull complete
acbc7d112060: Pull complete
7b0ca93f3f54: Pull complete
a6230b7fafa0: Download complete
917f9b8155b5: Verifying Checksum
917f9b8155b5: Download complete
5a223856338a: Verifying Checksum
5a223856338a: Download complete
5a223856338a: Pull complete
ace6a731f305: Pull complete
a6230b7fafa0: Pull complete
917f9b8155b5: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
7af8a72dec52: Verifying Checksum
7af8a72dec52: Download complete
a1ba7d9452a1: Verifying Checksum
a1ba7d9452a1: Download complete
8f7a3b7d908f: Download complete
8f7a3b7d908f: Pull complete
4f4fb700ef54: Pull complete
7af8a72dec52: Pull complete
9565a36b4e3a: Verifying Checksum
9565a36b4e3a: Download complete
9565a36b4e3a: Pull complete
a1ba7d9452a1: Pull complete
24a9095bda75: Download complete
24a9095bda75: Pull complete
16c026bd2ca7: Verifying Checksum
16c026bd2ca7: Download complete
16c026bd2ca7: Pull complete
6b821f07d597: Verifying Checksum
6b821f07d597: Download complete
6b821f07d597: Pull complete
afd0175f27f4: Verifying Checksum
afd0175f27f4: Download complete
afd0175f27f4: Pull complete
be69a91a3ef7: Download complete
88ab18f654c7: Verifying Checksum
88ab18f654c7: Download complete
88ab18f654c7: Pull complete
be69a91a3ef7: Pull complete
ce8a4e53f5e3: Verifying Checksum
ce8a4e53f5e3: Download complete
ce8a4e53f5e3: Pull complete
3e2bdc6df5e4: Verifying Checksum
3e2bdc6df5e4: Download complete
3e2bdc6df5e4: Pull complete
ff986d64677f: Verifying Checksum
ff986d64677f: Download complete
ff986d64677f: Pull complete
8bc6797e23fc: Verifying Checksum
8bc6797e23fc: Download complete
43fc65bb52eb: Verifying Checksum
43fc65bb52eb: Download complete
a5d75845130a: Download complete
1eec13083f65: Verifying Checksum
1eec13083f65: Download complete
aab9ec9135e1: Verifying Checksum
aab9ec9135e1: Download complete
9c9f7117b120: Verifying Checksum
9c9f7117b120: Download complete
b808f888e100: Verifying Checksum
b808f888e100: Download complete
e51d6b85f31b: Verifying Checksum
e51d6b85f31b: Download complete
8c8cec09df68: Verifying Checksum
8c8cec09df68: Download complete
07b81fe7312a: Verifying Checksum
07b81fe7312a: Download complete
9c9f7117b120: Pull complete
8bc6797e23fc: Pull complete
cc2ed799adba: Verifying Checksum
cc2ed799adba: Download complete
07b81fe7312a: Pull complete
43fc65bb52eb: Pull complete
a5d75845130a: Pull complete
1eec13083f65: Pull complete
aab9ec9135e1: Pull complete
cc2ed799adba: Pull complete
b808f888e100: Pull complete
e51d6b85f31b: Pull complete
8c8cec09df68: Pull complete
Digest: sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115
Status: Downloaded newer image for ocaml/opam@sha256:a83928a1fedec013a7db3d3190a3cc3eb72142ca95e7bb20dbb4f9954be28115
2025-10-18 18:28.52 ---> using "f59e28d75de4defeed40ec3fa81afaa110217cd20c2dafcaea2c76301015f0df" from cache


/: (comment fedora-43-5.4_opam-2.4)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (network host)
(shell "sudo dnf install -y findutils"))
Updating and loading repositories:
Fedora 43 - x86_64 - Updates           100% |  18.7 KiB/s |  23.9 KiB |  00m01s
Repositories loaded.
Package "findutils-1:4.10.0-6.fc43.x86_64" is already installed.


Nothing to do.
2025-10-18 18:28.52 ---> using "e25babefb49a419232868acca712bf630a0bbefc96e0c275ad3155252e7c1ac2" from cache


/src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))
2025-10-18 18:28.52 ---> using "d407c2ab0d230b08eef2673d99115ee74748a180b52018e5e71e83495eb23ecf" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [Y/n] y
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-10-18 18:28.52 ---> using "f34f2508f7317e9caeecee1fbf9e7a46c3e2d84a14300c4e852b3aa03e573a96" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-157-generic
The OCaml toplevel, version 5.4.0
2.4.1
2025-10-18 18:28.52 ---> using "052d523dd0b77d418e636d4c186443eff0092857ea0c0fcc93c67ed113744989" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2025-10-18 18:28.52 ---> using "62c8f17a78b1cdcc51dbd6e1fa6a54730935888b6313593e943e96a268786b45" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 || git fetch origin master) && git reset -q --hard deb3de7fc5bdf4eb6ebbacd9c3207c8d6820bc64 && git log --no-decorate -n1 --oneline && opam update -u"))
deb3de7fc5 Merge pull request #28686 from NathanReb/release-ppxlib-0.37.0


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository


Already up-to-date.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2025-10-18 18:28.52 ---> using "06f522858fe3ddba692cab96366e4980a4e5848cea9b2dfefcf23bee355b63e3" 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-18 18:28.53 ---> saved as "32a9b7b2a48c4cbbad421df1fe4d7a7300c3d35ef6c23677ef9ecfb6cc24b2c6"


/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)
[WARNING] Failed checks on current package definition from source at file:///src:
warning 68: Missing field 'license'
[current.dev] synchronised (file:///src)
current is now pinned to file:///src (version dev)
2025-10-18 18:29.01 ---> saved as "e5ee4df781fda8322a10ed1ab9dc732d20b5383a94115034d1264b29dbf77b4b"


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-10-18 18:29.02 ---> saved as "b574070164c2bb2a9511231d6597e6b8d02ea3879507fb8ddc36c8144928cdf6"


/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.2 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 inotify.2.6 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"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Repositories loaded.
- Metadata cache created.


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[current.dev] synchronised (file:///src)
[current_docker.dev] synchronised (file:///src)
[current_git.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.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:
gmp-devel libffi-devel sqlite-devel


<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>


+ /usr/sbin/sudo "yum" "install" "-y" "gmp-devel" "libffi-devel" "sqlite-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package       Arch   Version        Repository      Size
- Installing:
-  gmp-devel    x86_64 1:6.3.0-4.fc43 fedora     352.3 KiB
-  libffi-devel x86_64 3.5.1-2.fc43   fedora      33.9 KiB
-  sqlite-devel x86_64 3.50.2-2.fc43  fedora     684.1 KiB
- Installing dependencies:
-  gmp-c++      x86_64 1:6.3.0-4.fc43 fedora      27.6 KiB
-  sqlite       x86_64 3.50.2-2.fc43  fedora       1.8 MiB
- 
- Transaction Summary:
-  Installing:         5 packages
- 
- Total size of inbound packages is 1 MiB. Need to download 1 MiB.
- After this operation, 3 MiB extra will be used (install 3 MiB, remove 0 B).
- [1/5] gmp-c++-1:6.3.0-4.fc43.x86_64     100% | 287.6 KiB/s |  18.4 KiB |  00m00s
- [2/5] libffi-devel-0:3.5.1-2.fc43.x86_6 100% | 370.2 KiB/s |  29.6 KiB |  00m00s
- [3/5] gmp-devel-1:6.3.0-4.fc43.x86_64   100% |   1.6 MiB/s | 174.3 KiB |  00m00s
- [4/5] sqlite-devel-0:3.50.2-2.fc43.x86_ 100% |   3.4 MiB/s | 151.8 KiB |  00m00s
- [5/5] sqlite-0:3.50.2-2.fc43.x86_64     100% |  17.7 MiB/s | 924.5 KiB |  00m00s
- --------------------------------------------------------------------------------
- [5/5] Total                             100% |   4.9 MiB/s |   1.3 MiB |  00m00s
- Running transaction
- [1/7] Verify package files              100% | 142.0   B/s |   5.0   B |  00m00s
- [2/7] Prepare transaction               100% |  64.0   B/s |   5.0   B |  00m00s
- [3/7] Installing sqlite-0:3.50.2-2.fc43 100% |  24.2 MiB/s |   1.8 MiB |  00m00s
- [4/7] Installing gmp-c++-1:6.3.0-4.fc43 100% |   9.3 MiB/s |  28.5 KiB |  00m00s
- [5/7] Installing gmp-devel-1:6.3.0-4.fc 100% |  38.4 MiB/s | 354.1 KiB |  00m00s
- [6/7] Installing sqlite-devel-0:3.50.2- 100% |  74.3 MiB/s | 684.8 KiB |  00m00s
- [7/7] Installing libffi-devel-0:3.5.1-2 100% | 494.1 KiB/s |  35.6 KiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel" "libffi-devel" "sqlite-devel"
- gmp-devel-6.3.0-4.fc43.x86_64
- libffi-devel-3.5.1-2.fc43.x86_64
- sqlite-devel-3.50.2-2.fc43.x86_64
2025-10-18 18:29.23 ---> saved as "2fe86a46a954f3883455046a7c5d81d99aae1b139e8807132c5facb310e643ab"


/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 100 packages
- install alcotest                1.9.1
- install alcotest-lwt            1.9.1
- install angstrom                0.16.1
- install asetmap                 0.8.1
- install asn1-combinators        0.3.2
- install astring                 0.8.5
- install base                    v0.17.3
- install base-bytes              base
- install base64                  3.5.2
- install bigarray-compat         1.1.0
- install bigstringaf             0.10.0
- install bos                     0.2.1
- install ca-certs                1.0.1
- install cf                      0.5.0
- install cf-lwt                  0.5.0
- install cmdliner                1.3.0
- install cohttp                  6.1.1
- install cohttp-lwt              6.1.1
- install cohttp-lwt-unix         6.1.1
- install conduit                 8.0.0
- install conduit-lwt             8.0.0
- install conduit-lwt-unix        8.0.0
- install conf-gmp                5
- install conf-gmp-powm-sec       4
- install conf-libffi             2.0.0
- install conf-pkg-config         4
- install conf-sqlite3            1
- install cppo                    1.8.0
- install cpuid                   0.1.2
- install csexp                   1.5.2
- install cstruct                 6.0.1
- install cstruct-lwt             6.0.1
- install ctypes                  0.23.0
- install ctypes-foreign          0.23.0
- install digestif                1.3.0
- install dockerfile              8.3.2
- install domain-name             0.5.0
- install dune                    3.20.2
- install dune-configurator       3.20.2
- install duration                0.2.1
- install eqaf                    0.10
- install fmt                     0.11.0
- install fpath                   0.7.3
- install fsevents                0.3.0
- install fsevents-lwt            0.3.0
- install gmap                    0.3.0
- install http                    6.1.1
- install inotify                 2.6
- install integers                0.7.0
- install ipaddr                  5.6.1
- install ipaddr-sexp             5.6.1
- install irmin-watcher           0.5.0
- install kdf                     1.0.0
- install logs                    0.9.0
- install lwt                     5.9.2
- install macaddr                 5.6.1
- install magic-mime              1.3.1
- install mirage-crypto           2.0.2
- install mirage-crypto-ec        2.0.2
- install mirage-crypto-pk        2.0.2
- install mirage-crypto-rng       2.0.2
- install mirage-no-solo5         1 (deprecated)
- install mirage-no-xen           1 (deprecated)
- install nocrypto                0.5.4-2
- install num                     1.6
- install ocaml-compiler-libs     v0.17.0
- install ocaml-syntax-shims      1.0.0
- install ocaml_intrinsics_kernel v0.17.1
- install ocamlbuild              0.16.1
- install ocamlfind               1.9.8
- install ocb-stubblr             0.1.1-1
- install ocplib-endian           1.2
- install ohex                    0.2.0
- install parsexp                 v0.17.0
- install ppx_derivers            1.2.1
- install ppx_deriving            6.1.1
- install ppx_deriving_yojson     3.10.0
- install ppx_sexp_conv           v0.17.1
- install ppxlib                  0.37.0
- install ppxlib_jane             v0.17.4
- install prometheus              1.2
- install prometheus-app          1.2
- install ptime                   1.2.0
- install re                      1.14.0
- install rresult                 0.7.0
- install seq                     base
- install sexplib                 v0.17.0
- install sexplib0                v0.17.0
- install sqlite3                 5.3.1
- install stdlib-shims            0.3.0
- install stringext               1.6.0
- install tls                     2.0.3
- install topkg                   1.1.0
- install tyxml                   4.6.0
- install uri                     4.4.0
- install uri-sexp                4.4.0
- install uutf                    1.0.4
- install x509                    1.0.6
- install yojson                  3.0.0
- install zarith                  1.14


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asetmap.0.8.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved cf.0.5.0, cf-lwt.0.5.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cpuid.0.1.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-libffi.2.0.0
-> installed conf-sqlite3.1
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0  (cached)
-> retrieved dockerfile.8.3.2  (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 inotify.2.6  (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 magic-mime.1.3.1  (cached)
-> retrieved digestif.1.3.0  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved dune.3.20.2, dune-configurator.3.20.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 nocrypto.0.5.4-2  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocb-stubblr.0.1.1-1  (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)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (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 seq.base  (cached)
-> installed seq.base
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved sqlite3.5.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved tyxml.4.6.0  (cached)
-> retrieved topkg.1.1.0  (cached)
-> retrieved tls.2.0.3  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved zarith.1.14  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> 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 base64.3.5.2
-> installed bigarray-compat.1.1.0
-> installed cpuid.0.1.2
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed domain-name.0.5.0
-> installed eqaf.0.10
-> installed cppo.1.8.0
-> installed gmap.0.3.0
-> installed http.6.1.1
-> installed macaddr.5.6.1
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed cstruct.6.0.1
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed digestif.1.3.0
-> installed integers.0.7.0
-> installed alcotest.1.9.1
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.20.2
-> installed sexplib.v0.17.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed tyxml.4.6.0
-> installed sqlite3.5.3.1
-> installed mirage-crypto.2.0.2
-> installed kdf.1.0.0
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed cstruct-lwt.6.0.1
-> installed inotify.2.6
-> installed prometheus.1.2
-> installed logs.0.9.0
-> installed alcotest-lwt.1.9.1
-> installed ctypes.0.23.0
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed base.v0.17.3
-> 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 bos.0.2.1
-> installed irmin-watcher.0.5.0
-> 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_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed dockerfile.8.3.2
-> installed conduit.8.0.0
-> installed cohttp.6.1.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.1.1
-> installed conduit-lwt-unix.8.0.0
-> 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.
# To update the current shell environment, run: eval $(opam env)
2025-10-18 18:34.25 ---> saved as "6f99bacaa4cbb15bcdd35bd4db62294ad22d32fc67763cec98349486c8304ddb"


/src: (copy (src .) (dst /src))
2025-10-18 18:34.26 ---> saved as "0f59979a21235ca75faaa32cdddb7642e56c57e39e0f7e2691f26ae7b31ebcb0"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default && /home/opam/.opam/5.4/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/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/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/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/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/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/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/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/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/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/lib/asetmap -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/lib/prometheus -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/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/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/lib/asetmap -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/lib/prometheus -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/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/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/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/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.
(cd _build/default && /home/opam/.opam/5.4/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/lib/asetmap -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/lib/prometheus -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/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.
"/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1
2025-10-18 18:34.31: Job failed: Failed: Build failed