Build:
- 0
2026-03-02 19:24.15: New job: test dream-cli.0.1.0 with dune-private-libs.3.22.0~alpha0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-private-libs.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune-private-libs.3.22.0~alpha0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-private-libs.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall dream-cli.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dream-cli.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test dream-cli.0.1.0) || true
RUN opam reinstall --with-test --verbose dream-cli.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dream-cli.0.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-02 19:24.15: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune-private-libs.3.22.0~alpha0-dream-cli.0.1.0-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:24.15: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune-private-libs.3.22.0~alpha0 3.22.0~alpha0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-private-libs.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-private-libs.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dream-cli.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dream-cli.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test dream-cli.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose dream-cli.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dream-cli.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-02 19:24.15: Waiting for resource in pool OCluster
2026-03-03 06:56.39: Waiting for worker…
2026-03-03 07:00.26: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha0/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha0/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha0/opam | 40 ++++++++++++
.../dune-build-info.3.22.0~alpha0/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha0/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha0/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha0/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha0/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha0/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha0/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha0/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha0/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha0/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha0/opam | 39 +++++++++++
18 files changed, 797 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 07:00.43 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 07:00.43 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally 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
2026-03-03 07:00.43 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-03 07:00.43 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-03 07:00.43 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 07:00.44 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 07:00.44 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1657 kB/s)
- Reading package lists...
-
2026-03-03 07:00.44 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-private-libs.3.22.0~alpha0 3.22.0~alpha0"))
dune-private-libs is now pinned to version 3.22.0~alpha0
2026-03-03 07:00.44 ---> using "3b6f3ab1323de4d8913438205545536a01367c556b24c14129c49f5a29217ce5" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-private-libs.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-private-libs.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-private-libs.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
- install csexp 1.5.2 [required by dune-private-libs]
- install dune 3.22.0~alpha0 [required by dune-private-libs]
- install dune-private-libs 3.22.0~alpha0 (pinned)
- install dyn 3.22.0~alpha0 [required by dune-private-libs]
- install fs-io 3.22.0~alpha0 [required by stdune]
- install ordering 3.22.0~alpha0 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install stdune 3.22.0~alpha0 [required by dune-private-libs]
- install top-closure 3.22.0~alpha0 [required by stdune]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.22.0~alpha0, dune-private-libs.3.22.0~alpha0, dyn.3.22.0~alpha0, fs-io.3.22.0~alpha0, ordering.3.22.0~alpha0, stdune.3.22.0~alpha0, top-closure.3.22.0~alpha0 (cached)
-> retrieved pp.2.0.0 (cached)
-> installed dune.3.22.0~alpha0
-> installed csexp.1.5.2
-> installed fs-io.3.22.0~alpha0
-> installed ordering.3.22.0~alpha0
-> installed pp.2.0.0
-> installed top-closure.3.22.0~alpha0
-> installed dyn.3.22.0~alpha0
-> installed stdune.3.22.0~alpha0
-> installed dune-private-libs.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 07:00.44 ---> using "9b18862b5bf68d2dce03be7992982eb37f559ad8844511dbbd5eb5998f32e16e" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dream-cli.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dream-cli.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dream-cli.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 67 packages
- install angstrom 0.16.1 [required by dream]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.2 [required by dream]
- install bigarray-compat 1.1.0 [required by dream]
- install bigstringaf 0.10.0 [required by dream]
- install bstr 0.0.4 [required by prettym]
- install caqti 1.9.0 [required by dream]
- install caqti-lwt 1.9.0 [required by dream]
- install cmdliner 1.3.0 [required by dream-cli]
- install conf-libev 4-13 [required by dream]
- install conf-libssl 4 [required by ssl]
- install conf-pkg-config 4 [required by mirage-crypto]
- install cppo 1.8.0 [required by caqti]
- install cstruct 6.2.0 [required by dream]
- install digestif 1.3.0 [required by dream]
- install dream 1.0.0~alpha2 [required by dream-cli]
- install dream-cli 0.1.0
- install dune-configurator 3.22.0~alpha0 [required by mirage-crypto, mirage-crypto-rng]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.9 [required by digestif, mirage-crypto]
- install faraday 0.8.2 [required by dream]
- install faraday-lwt 0.8.2 [required by faraday-lwt-unix]
- install faraday-lwt-unix 0.8.2 [required by dream]
- install fmt 0.11.0 [required by dream-cli]
- install graphql 0.14.0 [required by graphql-lwt]
- install graphql-lwt 0.14.0 [required by dream]
- install graphql_parser 0.14.0 [required by dream]
- install hmap 0.8.1 [required by dream]
- install ke 0.6 [required by multipart_form]
- install logs 0.10.0 [required by dream-cli]
- install lwt 5.9.2 [required by dream]
- install lwt_ppx 5.9.1 [required by dream]
- install lwt_ssl 1.2.0 [required by dream]
- install magic-mime 1.3.1 [required by dream]
- install menhir 20260209 [required by graphql_parser]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- install mirage-crypto 0.10.7 [required by dream]
- install mirage-crypto-rng 0.10.7 [required by dream]
- install mtime 2.1.0 [required by mirage-crypto-rng]
- install multipart_form 0.3.0 [required by dream]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by hmap]
- install ocamlfind 1.9.8 [required by hmap]
- install ocplib-endian 1.2 [required by lwt]
- install pecu 0.7 [required by multipart_form]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by lwt_ppx]
- install prettym 0.0.4 [required by multipart_form]
- install psq 0.2.1 [required by dream]
- install ptime 1.2.0 [required by caqti]
- install re 1.14.0 [required by graphql_parser]
- install result 1.5 [required by dream]
- install rresult 0.7.0 [required by multipart_form]
- install seq base [required by psq]
- install sexplib0 v0.17.0 [required by ppxlib]
- install ssl 0.7.0 [required by dream]
- install stdlib-shims 0.3.0 [required by multipart_form]
- install stringext 1.6.0 [required by uri]
- install topkg 1.1.1 [required by hmap]
- install unstrctrd 0.4 [required by multipart_form]
- install uri 4.4.0 [required by dream]
- install uutf 1.0.4 [required by multipart_form]
- install yojson 3.0.0 [required by dream]
The following system packages will first need to be installed:
libev-dev libssl-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libev-dev" "libssl-dev" "pkg-config"
- Selecting previously unselected package libev4t64:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../1-libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../3-libssl-dev_3.5.4-1~deb13u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../4-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../5-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../6-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u2) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bstr.0.0.4 (cached)
-> retrieved caqti.1.9.0, caqti-lwt.1.9.0 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved conf-libev.4-13 (cached)
-> retrieved conf-libssl.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0 (cached)
-> installed base64.3.5.2
-> installed bigarray-compat.1.1.0
-> installed conf-libssl.4
-> installed bstr.0.0.4
-> installed conf-libev.4-13
-> retrieved digestif.1.3.0 (cached)
-> retrieved dream.1.0.0~alpha2 (cached)
-> retrieved dream-cli.0.1.0 (cached)
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.22.0~alpha0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved graphql.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved ke.0.6 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved lwt_ppx.5.9.1 (cached)
-> retrieved lwt_ssl.1.2.0 (cached)
-> installed cmdliner.1.3.0
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed dune-configurator.3.22.0~alpha0
-> installed duration.0.2.1
-> installed magic-mime.1.3.1
-> retrieved mirage-crypto.0.10.7, mirage-crypto-rng.0.10.7 (cached)
-> installed menhirCST.20260209
-> retrieved mtime.2.1.0 (cached)
-> retrieved multipart_form.0.3.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved pecu.0.7 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed menhirGLR.20260209
-> retrieved ppxlib.0.35.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved prettym.0.0.4 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> installed menhirLib.20260209
-> installed bigstringaf.0.10.0
-> installed pecu.0.7
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> installed menhirSdk.20260209
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved ssl.0.7.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved unstrctrd.0.4 (cached)
-> installed faraday.0.8.2
-> installed result.1.5
-> retrieved uri.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed psq.0.2.1
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed angstrom.0.16.1
-> installed re.1.14.0
-> installed ssl.0.7.0
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed uri.4.4.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed lwt.5.9.2
-> installed faraday-lwt.0.8.2
-> installed lwt_ssl.1.2.0
-> installed faraday-lwt-unix.0.8.2
-> installed menhir.20260209
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed fmt.0.11.0
-> installed unstrctrd.0.4
-> installed ke.0.6
-> installed cstruct.6.2.0
-> installed graphql_parser.0.14.0
-> installed eqaf.0.9
-> installed prettym.0.0.4
-> installed logs.0.10.0
-> installed graphql.0.14.0
-> installed graphql-lwt.0.14.0
-> installed digestif.1.3.0
-> installed caqti.1.9.0
-> installed multipart_form.0.3.0
-> installed caqti-lwt.1.9.0
-> installed mirage-crypto.0.10.7
-> installed mirage-crypto-rng.0.10.7
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed dream.1.0.0~alpha2
-> installed dream-cli.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 07:02.51 ---> saved as "e91fc6722b293969444ab6ed3ba9278515c1b1e8260c036984f440725de03d82"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dream-cli.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dream-cli 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dream-cli.0.1.0 (https://opam.ocaml.org/cache)
-> removed dream-cli.0.1.0
-> installed dream-cli.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 07:02.59 ---> saved as "f92e780fa7a6bef4c32f93ecd80fcd5d5635cd1f743c0f6f954dacc1b9c96ed7"
/home/opam: (run (shell "opam reinstall --with-test --verbose dream-cli.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dream-cli.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile dream-cli 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dream-cli.0.1.0: extract]
-> retrieved dream-cli.0.1.0 (cached)
Processing 2/4: [dream-cli: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dream-cli" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream-cli.0.1.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli__Cmd_gen_key.cmi -c -intf lib/cmd_gen_key.mli)
- File "lib/cmd_gen_key.mli", line 1, characters 32-50:
- 1 | val cmd : int Cmdliner.Term.t * Cmdliner.Term.info
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli__Common.cmi -c -intf lib/common.mli)
- File "lib/common.mli", line 5, characters 12-35:
- 5 | val exits : Cmdliner.Term.exit_info list
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.exit_info
- Use Cmd.Exit.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli__Cmd_run.cmi -c -intf lib/cmd_run.mli)
- File "lib/cmd_run.mli", line 17, characters 27-45:
- 17 | -> int Cmdliner.Term.t * Cmdliner.Term.info
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli.cmi -c -intf lib/dream_cli.mli)
- File "lib/dream_cli.mli", line 18, characters 38-56:
- 18 | -> ?commands:(int Cmdliner.Term.t * Cmdliner.Term.info) list
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli__Cmd_gen_key.cmo -c -impl lib/cmd_gen_key.ml)
- File "lib/cmd_gen_key.ml", line 23, characters 11-20:
- 23 | let info = Term.info "gen-key" ~doc ~sdocs ~exits ~man ~man_xrefs
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli__Common.cmo -c -impl lib/common.ml)
- File "lib/common.ml", line 20, characters 14-25:
- 20 | let env = Arg.env_var "DREAM_VERBOSITY" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/common.ml", line 67, characters 2-16:
- 67 | Term.exit_info 3 ~doc:"on indiscriminate errors reported on stderr."
- ^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.exit_info
- Use Cmd.Exit.info instead.
- File "lib/common.ml", line 68, characters 5-23:
- 68 | :: Term.default_exits
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.default_exits
- Use Cmd.Exit.defaults or Cmd.info's defaults ~exits value instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli.cmo -c -impl lib/dream_cli.ml)
- File "lib/dream_cli.ml", line 40, characters 8-19:
- 40 | Term.(exit_status @@ eval_choice cmd_run ([ cmd_gen_key ] @ commands))
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.exit_status
- Use Stdlib.exit and Cmd.eval' instead.
- File "lib/dream_cli.ml", line 40, characters 23-34:
- 40 | Term.(exit_status @@ eval_choice cmd_run ([ cmd_gen_key ] @ commands))
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.dream_cli.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/byte/dream_cli__Cmd_run.cmo -c -impl lib/cmd_run.ml)
- File "lib/cmd_run.ml", line 53, characters 11-20:
- 53 | let info = Term.info "dream" ~doc ~sdocs ~exits ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "lib/cmd_run.ml", line 85, characters 16-27:
- 85 | let env = Arg.env_var "DREAM_INTERFACE" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 98, characters 16-27:
- 98 | let env = Arg.env_var "DREAM_PORT" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 113, characters 16-27:
- 113 | let env = Arg.env_var "DREAM_DEBUG" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 129, characters 16-27:
- 129 | let env = Arg.env_var "DREAM_SECRET" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 142, characters 16-27:
- 142 | let env = Arg.env_var "DREAM_OLD_SECRETS" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 155, characters 16-27:
- 155 | let env = Arg.env_var "DREAM_PREFIX" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 171, characters 16-27:
- 171 | let env = Arg.env_var "DREAM_HTTPS" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 186, characters 16-27:
- 186 | let env = Arg.env_var "DREAM_CERTIFICATE_FILE" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 204, characters 16-27:
- 204 | let env = Arg.env_var "DREAM_KEY_FILE" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 212, characters 16-27:
- 212 | let env = Arg.env_var "DREAM_NO_BUILTINS" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 223, characters 16-27:
- 223 | let env = Arg.env_var "DREAM_NO_GREETING" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 233, characters 16-27:
- 233 | let env = Arg.env_var "DREAM_NO_ADJUST_TERMINAL" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.dream_cli.objs/byte -I lib/.dream_cli.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/native/dream_cli__Common.cmx -c -impl lib/common.ml)
- File "lib/common.ml", line 20, characters 14-25:
- 20 | let env = Arg.env_var "DREAM_VERBOSITY" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/common.ml", line 67, characters 2-16:
- 67 | Term.exit_info 3 ~doc:"on indiscriminate errors reported on stderr."
- ^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.exit_info
- Use Cmd.Exit.info instead.
- File "lib/common.ml", line 68, characters 5-23:
- 68 | :: Term.default_exits
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.default_exits
- Use Cmd.Exit.defaults or Cmd.info's defaults ~exits value instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.dream_cli.objs/byte -I lib/.dream_cli.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/native/dream_cli__Cmd_gen_key.cmx -c -impl lib/cmd_gen_key.ml)
- File "lib/cmd_gen_key.ml", line 23, characters 11-20:
- 23 | let info = Term.info "gen-key" ~doc ~sdocs ~exits ~man ~man_xrefs
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.dream_cli.objs/byte -I lib/.dream_cli.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/native/dream_cli__Cmd_run.cmx -c -impl lib/cmd_run.ml)
- File "lib/cmd_run.ml", line 53, characters 11-20:
- 53 | let info = Term.info "dream" ~doc ~sdocs ~exits ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "lib/cmd_run.ml", line 85, characters 16-27:
- 85 | let env = Arg.env_var "DREAM_INTERFACE" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 98, characters 16-27:
- 98 | let env = Arg.env_var "DREAM_PORT" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 113, characters 16-27:
- 113 | let env = Arg.env_var "DREAM_DEBUG" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 129, characters 16-27:
- 129 | let env = Arg.env_var "DREAM_SECRET" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 142, characters 16-27:
- 142 | let env = Arg.env_var "DREAM_OLD_SECRETS" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 155, characters 16-27:
- 155 | let env = Arg.env_var "DREAM_PREFIX" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 171, characters 16-27:
- 171 | let env = Arg.env_var "DREAM_HTTPS" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 186, characters 16-27:
- 186 | let env = Arg.env_var "DREAM_CERTIFICATE_FILE" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 204, characters 16-27:
- 204 | let env = Arg.env_var "DREAM_KEY_FILE" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 212, characters 16-27:
- 212 | let env = Arg.env_var "DREAM_NO_BUILTINS" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 223, characters 16-27:
- 223 | let env = Arg.env_var "DREAM_NO_GREETING" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- File "lib/cmd_run.ml", line 233, characters 16-27:
- 233 | let env = Arg.env_var "DREAM_NO_ADJUST_TERMINAL" in
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Arg.env_var
- Use Cmd.Env.info instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.dream_cli.objs/byte -I lib/.dream_cli.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bstr -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/dream -I /home/opam/.opam/4.14/lib/dream/cipher -I /home/opam/.opam/4.14/lib/dream/gluten -I /home/opam/.opam/4.14/lib/dream/gluten-lwt -I /home/opam/.opam/4.14/lib/dream/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/dream/graphiql -I /home/opam/.opam/4.14/lib/dream/graphql -I /home/opam/.opam/4.14/lib/dream/h2 -I /home/opam/.opam/4.14/lib/dream/h2-lwt -I /home/opam/.opam/4.14/lib/dream/h2-lwt-unix -I /home/opam/.opam/4.14/lib/dream/hpack -I /home/opam/.opam/4.14/lib/dream/http -I /home/opam/.opam/4.14/lib/dream/httpaf -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt -I /home/opam/.opam/4.14/lib/dream/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/dream/localhost -I /home/opam/.opam/4.14/lib/dream/middleware -I /home/opam/.opam/4.14/lib/dream/pure -I /home/opam/.opam/4.14/lib/dream/sql -I /home/opam/.opam/4.14/lib/dream/websocketaf -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/graphql -I /home/opam/.opam/4.14/lib/graphql-lwt -I /home/opam/.opam/4.14/lib/graphql_parser -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/multipart_form -I /home/opam/.opam/4.14/lib/multipart_form/lwt -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/prettym -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -intf-suffix .ml -no-alias-deps -open Dream_cli__ -o lib/.dream_cli.objs/native/dream_cli.cmx -c -impl lib/dream_cli.ml)
- File "lib/dream_cli.ml", line 40, characters 8-19:
- 40 | Term.(exit_status @@ eval_choice cmd_run ([ cmd_gen_key ] @ commands))
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.exit_status
- Use Stdlib.exit and Cmd.eval' instead.
- File "lib/dream_cli.ml", line 40, characters 23-34:
- 40 | Term.(exit_status @@ eval_choice cmd_run ([ cmd_gen_key ] @ commands))
- ^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
-> compiled dream-cli.0.1.0
-> removed dream-cli.0.1.0
-> installed dream-cli.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 07:03.08 ---> saved as "9836441f39df6f2a7501f174d5c94e8089b28c4b08203b9618c0de2b5dace939"
Job succeeded
2026-03-03 07:03.15: Job succeeded