(not at the head of any monitored branch or PR)
2026-04-10 17:47.59: New job: test albatross.1.2.0 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-5.4/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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
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.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    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.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall albatross.1.2.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" != 'albatross.1.2.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 albatross.1.2.0) || true
RUN opam reinstall --with-test --verbose albatross.1.2.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" != 'albatross.1.2.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-04-10 17:47.59: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-albatross.1.2.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.59: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
 (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.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \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.3.22.2' && 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 albatross.1.2.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\" != 'albatross.1.2.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 albatross.1.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose albatross.1.2.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\" != 'albatross.1.2.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-04-10 17:47.59: Waiting for resource in pool OCluster
2026-04-11 01:54.59: Waiting for worker…
2026-04-11 01:57.08: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  65% (12231/18686)
Updating files:  66% (12333/18686)
Updating files:  67% (12520/18686)
Updating files:  68% (12707/18686)
Updating files:  69% (12894/18686)
Updating files:  70% (13081/18686)
Updating files:  71% (13268/18686)
Updating files:  72% (13454/18686)
Updating files:  73% (13641/18686)
Updating files:  74% (13828/18686)
Updating files:  75% (14015/18686)
Updating files:  76% (14202/18686)
Updating files:  77% (14389/18686)
Updating files:  78% (14576/18686)
Updating files:  79% (14762/18686)
Updating files:  80% (14949/18686)
Updating files:  81% (15136/18686)
Updating files:  82% (15323/18686)
Updating files:  83% (15510/18686)
Updating files:  84% (15697/18686)
Updating files:  85% (15884/18686)
Updating files:  86% (16070/18686)
Updating files:  87% (16257/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03' locally
docker.io/ocaml/opam@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
bcb8aca13f7d: Already exists
bee1401d6aa9: Already exists
70a4ec3f5a63: Already exists
946380c37df7: Already exists
40a16ba01935: Already exists
f4df01b7be08: Already exists
c7d14a9ac62c: Already exists
8ece799add44: Already exists
d3cb64c779a6: Already exists
d54da7bf4e54: Already exists
3111aa7c2023: Already exists
962186c6e1e2: Already exists
8745338b1e0b: Already exists
70494a8c0d08: Already exists
9fbe01dcf1e6: Already exists
742774a39128: Already exists
6780ddc6e8a5: Already exists
5049c6e21d97: Already exists
f8f7f2d621cc: Already exists
d221e77cf2b7: Already exists
ea40bd8c29fe: Already exists
4f4fb700ef54: Already exists
546c3ffe9fcf: Already exists
de88a7570f24: Already exists
614f1e6aac31: Already exists
4448849c2ba8: Already exists
ae7502e72140: Already exists
ff97726fb361: Already exists
20d3e00ca128: Already exists
734e3f9ef8d5: Already exists
a9623fbab448: Already exists
d9066aed5713: Already exists
df57d5f0aedf: Already exists
a963972287a7: Already exists
960128877639: Already exists
224d5050da5a: Already exists
f8105fbb3180: Already exists
670a1f9738fe: Already exists
10f42e6216ad: Already exists
1930c7997386: Already exists
143c1d1274f2: Pulling fs layer
f3f8fc4aab1e: Pulling fs layer
dfc73228dd7f: Pulling fs layer
115f9a12d5ea: Pulling fs layer
248c274b97e2: Pulling fs layer
720dd6c04780: Pulling fs layer
3214058d9300: Pulling fs layer
115f9a12d5ea: Waiting
720dd6c04780: Waiting
3214058d9300: Waiting
248c274b97e2: Waiting
f3f8fc4aab1e: Verifying Checksum
f3f8fc4aab1e: Download complete
143c1d1274f2: Download complete
143c1d1274f2: Pull complete
f3f8fc4aab1e: Pull complete
248c274b97e2: Verifying Checksum
248c274b97e2: Download complete
dfc73228dd7f: Download complete
dfc73228dd7f: Pull complete
3214058d9300: Verifying Checksum
3214058d9300: Download complete
720dd6c04780: Verifying Checksum
720dd6c04780: Download complete
115f9a12d5ea: Verifying Checksum
115f9a12d5ea: Download complete
115f9a12d5ea: Pull complete
248c274b97e2: Pull complete
720dd6c04780: Pull complete
3214058d9300: Pull complete
Digest: sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
Status: Downloaded newer image for ocaml/opam@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
2026-04-11 01:57.14 ---> using "4e852d2e6c9ac39a43c0cb8d1ef92ecff46d16da630bff560bb4811e0bb278c3" 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-04-11 01:57.14 ---> using "c82a131037ae9ff29ac79f02306f126bd36264ccb683d2324f553289b0d4a496" 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-04-11 01:57.14 ---> using "983e4dc58d26f7046c0fe6fbe642bc66995d2abecd6409a14b0c538d3f1a7bd2" 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-11 01:57.14 ---> using "8b346866360ce3a934df95a88d3a1520ccbf589f659a7e26aa97be0b96b1083a" 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-04-11 01:57.14 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 01:57.15 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 01:57.15 ---> using "e05b19873f9cb2918bf114246a81e8bf23cb51c80d627ed2b044915e44a942dd" 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 [121 kB]
- Fetched 211 kB in 1s (285 kB/s)
- Reading package lists...
- 
2026-04-11 01:57.15 ---> using "dc69cd977951bdc4dffcc68622bf3ea65b4d02db568ca1f8bd5ab395f414a24f" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 01:57.15 ---> using "d2dbab2e673d61aa25772ad855c91b371a83246b8bcc8859d8fc280f9fcf9826" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \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.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:57.15 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall albatross.1.2.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\" != 'albatross.1.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
albatross.1.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 70 packages
  - install albatross               1.2.0
  - install asn1-combinators        0.2.6              [required by albatross]
  - install astring                 0.8.5              [required by albatross]
  - install base                    v0.17.3            [required by ppx_sexp_conv]
  - install base-bytes              base               [required by decompress]
  - install base64                  3.5.2              [required by x509]
  - install bigarray-compat         1.1.0              [required by decompress]
  - install bigstringaf             0.10.0             [required by albatross]
  - install bos                     0.2.1              [required by albatross]
  - install checkseum               0.5.2              [required by albatross]
  - install cmdliner                1.0.4              [required by albatross]
  - install conf-gmp                5                  [required by zarith, conf-gmp-powm-sec]
  - install conf-gmp-powm-sec       4                  [required by mirage-crypto-pk]
  - install conf-libnl3             1                  [required by albatross]
  - install conf-pkg-config         4                  [required by albatross]
  - install cppo                    1.8.0              [required by lwt]
  - install csexp                   1.5.2              [required by dune-configurator]
  - install cstruct                 6.0.1              [required by albatross]
  - install cstruct-sexp            6.0.1              [required by tls]
  - install decompress              1.4.2              [required by albatross]
  - install domain-name             0.5.0              [required by ipaddr, tls]
  - install dune-configurator       3.22.2             [required by albatross]
  - install duration                0.2.1              [required by albatross]
  - install eqaf                    0.9                [required by mirage-crypto, mirage-crypto-pk]
  - install fmt                     0.9.0              [required by albatross]
  - install fpath                   0.7.3              [required by bos]
  - install gmap                    0.3.0              [required by x509]
  - install hex                     1.5.0              [required by albatross]
  - install hkdf                    1.0.4 (deprecated) [required by tls]
  - install ipaddr                  5.6.2              [required by albatross]
  - install ipaddr-sexp             5.6.2              [required by tls]
  - install jsonm                   1.0.2              [required by albatross]
  - install logs                    0.7.0              [required by albatross]
  - install lwt                     6.1.1              [required by albatross]
  - install macaddr                 5.6.2              [required by ipaddr]
  - install metrics                 0.4.1              [required by albatross]
  - install metrics-influx          0.4.1              [required by albatross]
  - install metrics-lwt             0.4.1              [required by albatross]
  - install metrics-rusage          0.4.1              [required by albatross]
  - install mirage-crypto           0.10.7             [required by albatross]
  - install mirage-crypto-ec        0.10.7             [required by tls]
  - install mirage-crypto-pk        0.10.7             [required by albatross]
  - install mirage-crypto-rng       0.10.7             [required by albatross]
  - install mirage-no-solo5         1 (deprecated)     [required by mirage-crypto-pk]
  - install mirage-no-xen           1 (deprecated)     [required by mirage-crypto-pk]
  - install mtime                   2.1.0              [required by mirage-crypto-rng]
  - install num                     1.6                [required by sexplib]
  - install ocaml-compiler-libs     v0.17.0            [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1            [required by base]
  - install ocamlbuild              0.16.1             [required by bos, astring, jsonm]
  - install ocamlfind               1.9.8              [required by bos, astring, jsonm]
  - install ocplib-endian           1.2                [required by lwt]
  - install optint                  0.3.0              [required by checkseum, decompress]
  - install parsexp                 v0.17.0            [required by sexplib]
  - install pbkdf                   1.2.0              [required by x509]
  - install ppx_cstruct             6.0.1              [required by tls]
  - install ppx_derivers            1.2.1              [required by ppxlib]
  - install ppx_sexp_conv           v0.17.1            [required by tls]
  - install ppxlib                  0.38.0             [required by ppx_cstruct]
  - install ppxlib_jane             v0.17.4            [required by ppx_sexp_conv]
  - install ptime                   1.2.0              [required by albatross]
  - install rresult                 0.7.0              [required by albatross]
  - install sexplib                 v0.17.0            [required by tls]
  - install sexplib0                v0.17.0            [required by mirage-crypto-pk]
  - install stdlib-shims            0.3.0              [required by ppx_cstruct]
  - install tls                     0.15.4             [required by albatross]
  - install topkg                   1.1.1              [required by bos, astring, jsonm]
  - install uutf                    1.0.3              [required by jsonm]
  - install x509                    0.16.5             [required by albatross]
  - install zarith                  1.14               [required by asn1-combinators, mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-dev libnl-3-dev libnl-route-3-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" "libgmp-dev" "libnl-3-dev" "libnl-route-3-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl: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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libnl-3-200:amd64.
- Preparing to unpack .../2-libnl-3-200_3.7.0-2_amd64.deb ...
- Unpacking libnl-3-200:amd64 (3.7.0-2) ...
- Selecting previously unselected package libnl-3-dev:amd64.
- Preparing to unpack .../3-libnl-3-dev_3.7.0-2_amd64.deb ...
- Unpacking libnl-3-dev:amd64 (3.7.0-2) ...
- Selecting previously unselected package libnl-route-3-200:amd64.
- Preparing to unpack .../4-libnl-route-3-200_3.7.0-2_amd64.deb ...
- Unpacking libnl-route-3-200:amd64 (3.7.0-2) ...
- Selecting previously unselected package libnl-route-3-dev:amd64.
- Preparing to unpack .../5-libnl-route-3-dev_3.7.0-2_amd64.deb ...
- Unpacking libnl-route-3-dev:amd64 (3.7.0-2) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../6-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libnl-3-200:amd64 (3.7.0-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libnl-route-3-200:amd64 (3.7.0-2) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libnl-3-dev:amd64 (3.7.0-2) ...
- Setting up libnl-route-3-dev:amd64 (3.7.0-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved albatross.1.2.0  (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved checkseum.0.5.2  (cached)
-> retrieved cmdliner.1.0.4  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1, cstruct-sexp.6.0.1, ppx_cstruct.6.0.1  (cached)
-> installed conf-gmp-powm-sec.4
-> installed base64.3.5.2
-> installed conf-libnl3.1
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> retrieved decompress.1.4.2  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> installed cstruct.6.0.1
-> installed domain-name.0.5.0
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.22.2  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (cached)
-> installed cmdliner.1.0.4
-> installed duration.0.2.1
-> retrieved jsonm.1.0.2  (cached)
-> installed hex.1.5.0
-> retrieved logs.0.7.0  (cached)
-> installed gmap.0.3.0
-> retrieved lwt.6.1.1  (cached)
-> retrieved metrics.0.4.1, metrics-influx.0.4.1, metrics-lwt.0.4.1, metrics-rusage.0.4.1  (cached)
-> installed macaddr.5.6.2
-> installed eqaf.0.9
-> retrieved mirage-crypto.0.10.7, mirage-crypto-ec.0.10.7, mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mtime.2.1.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> installed dune-configurator.3.22.2
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> installed ipaddr.5.6.2
-> installed ppx_derivers.1.2.1
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed optint.0.3.0
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> installed bigstringaf.0.10.0
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved tls.0.15.4  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.3  (cached)
-> retrieved x509.0.16.5  (cached)
-> retrieved zarith.1.14  (cached)
-> installed checkseum.0.5.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed num.1.6
-> installed mirage-crypto.0.10.7
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed parsexp.v0.17.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed sexplib.v0.17.0
-> installed cstruct-sexp.6.0.1
-> installed decompress.1.4.2
-> installed ocamlbuild.0.16.1
-> installed lwt.6.1.1
-> installed zarith.1.14
-> installed base.v0.17.3
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed mtime.2.1.0
-> installed astring.0.8.5
-> installed metrics.0.4.1
-> installed metrics-influx.0.4.1
-> installed asn1-combinators.0.2.6
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed logs.0.7.0
-> installed metrics-lwt.0.4.1
-> installed metrics-rusage.0.4.1
-> installed mirage-crypto-rng.0.10.7
-> installed mirage-crypto-pk.0.10.7
-> installed bos.0.2.1
-> installed ppxlib.0.38.0
-> installed mirage-crypto-ec.0.10.7
-> installed ppxlib_jane.v0.17.4
-> installed x509.0.16.5
-> installed ppx_cstruct.6.0.1
-> installed ppx_sexp_conv.v0.17.1
-> installed ipaddr-sexp.5.6.2
-> installed tls.0.15.4
-> installed albatross.1.2.0
Done.

<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:00.19 ---> saved as "c499f89e2d8516f3e47b138ce27ab10ead3baa5c209aa08b899dfcfa14a44428"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test albatross.1.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile albatross 1.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved albatross.1.2.0  (https://opam.ocaml.org/cache)
-> removed   albatross.1.2.0
-> installed albatross.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:00.36 ---> saved as "01435444134b11c10d2653b9ee5406968cdd3da74335f3c5f69a1cc00e50a14a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose albatross.1.2.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\" != 'albatross.1.2.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 albatross 1.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [albatross.1.2.0: extract]
-> retrieved albatross.1.2.0  (cached)
Processing  2/4: [albatross: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "albatross" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/albatross.1.2.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.albatross.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_commands.cmi -no-alias-deps -o src/.albatross.objs/byte/vmm_commands.cmo -c -impl src/vmm_commands.ml)
- File "src/vmm_commands.ml", line 48, characters 22-26:
- 48 |       Fmt.(list ~sep:(unit ", ") (pair ~sep:(unit ": ") string string)) taps
-                            ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 48, characters 45-49:
- 48 |       Fmt.(list ~sep:(unit ", ") (pair ~sep:(unit ": ") string string)) taps
-                                                   ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 142, characters 25-29:
- 142 |   | _ -> Fmt.(list ~sep:(unit "@.") pp_elt ppf xs)
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 147, characters 62-66:
- 147 |   | `Policies ps -> my_fmt_list "no policies" Fmt.(pair ~sep:(unit ": ") Name.pp Policy.pp) ppf ps
-                                                                     ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 148, characters 71-75:
- 148 |   | `Old_unikernels vms -> my_fmt_list "no unikernels" Fmt.(pair ~sep:(unit ": ") Name.pp Unikernel.pp_config) ppf vms
-                                                                              ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 149, characters 73-77:
- 149 |   | `Unikernel_info infos -> my_fmt_list "no unikernels" Fmt.(pair ~sep:(unit ": ") Name.pp Unikernel.pp_info) ppf infos
-                                                                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 150, characters 101-112:
- 150 |   | `Unikernel_image (compressed, image) -> Fmt.pf ppf "image (compression %B) %d bytes" compressed (Cstruct.len image)
-                                                                                                            ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.albatross.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_core.cmi -no-alias-deps -o src/.albatross.objs/byte/vmm_core.cmo -c -impl src/vmm_core.ml)
- File "src/vmm_core.ml", line 143, characters 39-43:
- 143 |     Fmt.(pf ppf "[vm: %a]" (list ~sep:(unit ".") string) ids)
-                                              ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 155, characters 53-57:
- 155 |   let pp_is ppf is = Fmt.pf ppf "%a" Fmt.(list ~sep:(unit ",") int) (IS.elements is)
-                                                            ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 182, characters 25-29:
- 182 |       Fmt.(option ~none:(unit "no") int) res.block
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 183, characters 31-35:
- 183 |       (String.Set.pp ~sep:Fmt.(unit ", ") Fmt.string) res.bridges
-                                      ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 198, characters 27-31:
- 198 |         Fmt.(option ~none:(unit "all except 1") (list ~sep:(unit ", ") int))
-                                  ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 198, characters 60-64:
- 198 |         Fmt.(option ~none:(unit "all except 1") (list ~sep:(unit ", ") int))
-                                                                   ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 219, characters 20-24:
- 219 |     Fmt.(list ~sep:(unit ", ")
-                           ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 220, characters 23-27:
- 220 |            (pair ~sep:(unit " -> ") string string))
-                              ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 228, characters 7-18:
- 228 |       (Cstruct.len vm.image)
-              ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- 
- File "src/vmm_core.ml", line 233, characters 25-29:
- 233 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) vm.argv
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 233, characters 48-52:
- 233 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) vm.argv
-                                                       ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 250, characters 22-26:
- 250 |       Fmt.(list ~sep:(unit ", ") string) vm.taps
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 280, characters 25-29:
- 280 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) info.argv
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 280, characters 48-52:
- 280 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) info.argv
-                                                       ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 328, characters 20-24:
- 328 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf vmm
-                           ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 328, characters 43-47:
- 328 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf vmm
-                                                  ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 330, characters 20-24:
- 330 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf
-                           ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 330, characters 43-47:
- 330 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf
-                                                  ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 362, characters 25-29:
- 362 |       Fmt.(option ~none:(unit "no kinfo_mem stats") pp_kinfo_mem) mem
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 363, characters 25-29:
- 363 |       Fmt.(option ~none:(unit "no vmm stats") pp_vmm) vmm
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 364, characters 22-26:
- 364 |       Fmt.(list ~sep:(unit "@.@.") pp_ifdata) ifs
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I tls/.albatross_tls.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/cstruct-sexp -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/gmap -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/hkdf -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-ec -I /home/opam/.opam/5.4/lib/mirage-crypto-pk -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/unix -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -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/optint -I /home/opam/.opam/5.4/lib/parsexp -I /home/opam/.opam/5.4/lib/pbkdf -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/sexplib -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/tls -I /home/opam/.opam/5.4/lib/tls/lwt -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/x509 -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -cmi-file tls/.albatross_tls.objs/byte/vmm_tls_lwt.cmi -no-alias-deps -o tls/.albatross_tls.objs/byte/vmm_tls_lwt.cmo -c -impl tls/vmm_tls_lwt.ml)
- File "tls/vmm_tls_lwt.ml", line 50, characters 46-57:
- 50 |   Cstruct.BE.set_uint32 dlen 0 (Int32.of_int (Cstruct.len data)) ;
-                                                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.albatross.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_asn.cmi -no-alias-deps -o src/.albatross.objs/byte/vmm_asn.cmo -c -impl src/vmm_asn.ml)
- File "src/vmm_asn.ml", line 68, characters 11-22:
- 68 |     guard (Cstruct.len cs = 0) (`Msg "trailing bytes") >>= fun () ->
-                 ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I stats/.albatross_stats.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -no-alias-deps -o stats/.albatross_stats.objs/byte/albatross_stats_pure.cmo -c -impl stats/albatross_stats_pure.ml)
- File "stats/albatross_stats_pure.ml", line 30, characters 41-45:
- 30 | let pp_strings pp strs = Fmt.(list ~sep:(unit ",@ ") string) pp strs
-                                               ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "stats/albatross_stats_pure.ml", line 33, characters 18-22:
- 33 |   Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit ": ") string string)) pp nets
-                        ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "stats/albatross_stats_pure.ml", line 33, characters 42-46:
- 33 |   Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit ": ") string string)) pp nets
-                                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.albatross.objs/byte -I src/.albatross.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_core.cmi -no-alias-deps -o src/.albatross.objs/native/vmm_core.cmx -c -impl src/vmm_core.ml)
- File "src/vmm_core.ml", line 143, characters 39-43:
- 143 |     Fmt.(pf ppf "[vm: %a]" (list ~sep:(unit ".") string) ids)
-                                              ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 155, characters 53-57:
- 155 |   let pp_is ppf is = Fmt.pf ppf "%a" Fmt.(list ~sep:(unit ",") int) (IS.elements is)
-                                                            ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 182, characters 25-29:
- 182 |       Fmt.(option ~none:(unit "no") int) res.block
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 183, characters 31-35:
- 183 |       (String.Set.pp ~sep:Fmt.(unit ", ") Fmt.string) res.bridges
-                                      ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 198, characters 27-31:
- 198 |         Fmt.(option ~none:(unit "all except 1") (list ~sep:(unit ", ") int))
-                                  ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 198, characters 60-64:
- 198 |         Fmt.(option ~none:(unit "all except 1") (list ~sep:(unit ", ") int))
-                                                                   ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 219, characters 20-24:
- 219 |     Fmt.(list ~sep:(unit ", ")
-                           ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 220, characters 23-27:
- 220 |            (pair ~sep:(unit " -> ") string string))
-                              ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 228, characters 7-18:
- 228 |       (Cstruct.len vm.image)
-              ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- 
- File "src/vmm_core.ml", line 233, characters 25-29:
- 233 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) vm.argv
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 233, characters 48-52:
- 233 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) vm.argv
-                                                       ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 250, characters 22-26:
- 250 |       Fmt.(list ~sep:(unit ", ") string) vm.taps
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 280, characters 25-29:
- 280 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) info.argv
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 280, characters 48-52:
- 280 |       Fmt.(option ~none:(unit "no") (list ~sep:(unit " ") string)) info.argv
-                                                       ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 328, characters 20-24:
- 328 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf vmm
-                           ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 328, characters 43-47:
- 328 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf vmm
-                                                  ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 330, characters 20-24:
- 330 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf
-                           ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 330, characters 43-47:
- 330 |     Fmt.(list ~sep:(unit "@.") (pair ~sep:(unit ": ") string int64)) ppf
-                                                  ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 362, characters 25-29:
- 362 |       Fmt.(option ~none:(unit "no kinfo_mem stats") pp_kinfo_mem) mem
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 363, characters 25-29:
- 363 |       Fmt.(option ~none:(unit "no vmm stats") pp_vmm) vmm
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_core.ml", line 364, characters 22-26:
- 364 |       Fmt.(list ~sep:(unit "@.@.") pp_ifdata) ifs
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I tls/.albatross_tls.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/cstruct-sexp -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/gmap -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/hkdf -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-ec -I /home/opam/.opam/5.4/lib/mirage-crypto-pk -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/unix -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -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/optint -I /home/opam/.opam/5.4/lib/parsexp -I /home/opam/.opam/5.4/lib/pbkdf -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/sexplib -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/tls -I /home/opam/.opam/5.4/lib/tls/lwt -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/x509 -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -cmi-file tls/.albatross_tls.objs/byte/vmm_tls.cmi -no-alias-deps -o tls/.albatross_tls.objs/byte/vmm_tls.cmo -c -impl tls/vmm_tls.ml)
- File "tls/vmm_tls.ml", line 89, characters 33-37:
- 89 |                  Fmt.(list ~sep:(unit " -> ") Certificate.pp) rest);
-                                       ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.albatross.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_resources.cmi -no-alias-deps -o src/.albatross.objs/byte/vmm_resources.cmo -c -impl src/vmm_resources.ml)
- File "src/vmm_resources.ml", line 157, characters 24-28:
- 157 |         Fmt.(list ~sep:(unit ", ") string) disallowed
-                               ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 244, characters 22-26:
- 244 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements super.Policy.cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 245, characters 22-26:
- 245 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements sub.Policy.cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 248, characters 22-26:
- 248 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements super.Policy.bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 249, characters 22-26:
- 249 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements sub.Policy.bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 294, characters 22-26:
- 294 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements p.Policy.cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 295, characters 22-26:
- 295 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 298, characters 22-26:
- 298 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements p.Policy.bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 299, characters 22-26:
- 299 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.albatross.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_vmmd.cmi -no-alias-deps -o src/.albatross.objs/byte/vmm_vmmd.cmo -c -impl src/vmm_vmmd.ml)
- File "src/vmm_vmmd.ml", line 180, characters 33-37:
- 180 |                  Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit " -> ") string string))
-                                        ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_vmmd.ml", line 180, characters 57-61:
- 180 |                  Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit " -> ") string string))
-                                                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_vmmd.ml", line 317, characters 19-27:
- 317 |         let data = Fmt.strf "%a %s %a" Name.pp id answer pp_process_exit ex in
-                          ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.albatross.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_lwt.cmi -no-alias-deps -o src/.albatross.objs/byte/vmm_lwt.cmo -c -impl src/vmm_lwt.ml)
- File "src/vmm_lwt.ml", line 144, characters 46-57:
- 144 |   Cstruct.BE.set_uint32 dlen 0 (Int32.of_int (Cstruct.len data)) ;
-                                                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I command-line/.albatross_cli.objs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/checkseum/c -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/metrics-influx -I /home/opam/.opam/5.4/lib/metrics-lwt -I /home/opam/.opam/5.4/lib/metrics-rusage -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -no-alias-deps -o command-line/.albatross_cli.objs/byte/albatross_cli.cmo -c -impl command-line/albatross_cli.ml)
- File "command-line/albatross_cli.ml", line 90, characters 15-26:
- 90 |             if Cstruct.len cfg.Unikernel.image > 0 then
-                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- 
- File "command-line/albatross_cli.ml", line 314, characters 2-10:
- 314 |   Fmt.strf "version v1.2.0 protocol version %a"
-         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.albatross.objs/byte -I src/.albatross.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_commands.cmi -no-alias-deps -o src/.albatross.objs/native/vmm_commands.cmx -c -impl src/vmm_commands.ml)
- File "src/vmm_commands.ml", line 48, characters 22-26:
- 48 |       Fmt.(list ~sep:(unit ", ") (pair ~sep:(unit ": ") string string)) taps
-                            ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 48, characters 45-49:
- 48 |       Fmt.(list ~sep:(unit ", ") (pair ~sep:(unit ": ") string string)) taps
-                                                   ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 142, characters 25-29:
- 142 |   | _ -> Fmt.(list ~sep:(unit "@.") pp_elt ppf xs)
-                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 147, characters 62-66:
- 147 |   | `Policies ps -> my_fmt_list "no policies" Fmt.(pair ~sep:(unit ": ") Name.pp Policy.pp) ppf ps
-                                                                     ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 148, characters 71-75:
- 148 |   | `Old_unikernels vms -> my_fmt_list "no unikernels" Fmt.(pair ~sep:(unit ": ") Name.pp Unikernel.pp_config) ppf vms
-                                                                              ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 149, characters 73-77:
- 149 |   | `Unikernel_info infos -> my_fmt_list "no unikernels" Fmt.(pair ~sep:(unit ": ") Name.pp Unikernel.pp_info) ppf infos
-                                                                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_commands.ml", line 150, characters 101-112:
- 150 |   | `Unikernel_image (compressed, image) -> Fmt.pf ppf "image (compression %B) %d bytes" compressed (Cstruct.len image)
-                                                                                                            ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.albatross.objs/byte -I src/.albatross.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_resources.cmi -no-alias-deps -o src/.albatross.objs/native/vmm_resources.cmx -c -impl src/vmm_resources.ml)
- File "src/vmm_resources.ml", line 157, characters 24-28:
- 157 |         Fmt.(list ~sep:(unit ", ") string) disallowed
-                               ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 244, characters 22-26:
- 244 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements super.Policy.cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 245, characters 22-26:
- 245 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements sub.Policy.cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 248, characters 22-26:
- 248 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements super.Policy.bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 249, characters 22-26:
- 249 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements sub.Policy.bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 294, characters 22-26:
- 294 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements p.Policy.cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 295, characters 22-26:
- 295 |       Fmt.(list ~sep:(unit ", ") int) (IS.elements cpuids)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 298, characters 22-26:
- 298 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements p.Policy.bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_resources.ml", line 299, characters 22-26:
- 299 |       Fmt.(list ~sep:(unit ", ") string) (String.Set.elements bridges)
-                             ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I daemon/.albatrossd.eobjs/byte -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum/c -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/metrics-influx -I /home/opam/.opam/5.4/lib/metrics-lwt -I /home/opam/.opam/5.4/lib/metrics-rusage -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -I command-line/.albatross_cli.objs/byte -I src/.albatross.objs/byte -no-alias-deps -o daemon/.albatrossd.eobjs/byte/albatrossd.cmo -c -impl daemon/albatrossd.ml)
- File "daemon/albatrossd.ml", line 158, characters 34-42:
- 158 |          | None -> Lwt.fail_with (Fmt.strf "cannot connect to %a" pp_socket s)
-                                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- 
- File "daemon/albatrossd.ml", line 171, characters 14-22:
- 171 |               Fmt.strf "unable to create server socket %a: %s"
-                     ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.albatross.objs/byte -I src/.albatross.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_asn.cmi -no-alias-deps -o src/.albatross.objs/native/vmm_asn.cmx -c -impl src/vmm_asn.ml)
- File "src/vmm_asn.ml", line 68, characters 11-22:
- 68 |     guard (Cstruct.len cs = 0) (`Msg "trailing bytes") >>= fun () ->
-                 ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.albatross.objs/byte -I src/.albatross.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_lwt.cmi -no-alias-deps -o src/.albatross.objs/native/vmm_lwt.cmx -c -impl src/vmm_lwt.ml)
- File "src/vmm_lwt.ml", line 144, characters 46-57:
- 144 |   Cstruct.BE.set_uint32 dlen 0 (Int32.of_int (Cstruct.len data)) ;
-                                                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.albatross.objs/byte -I src/.albatross.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file src/.albatross.objs/byte/vmm_vmmd.cmi -no-alias-deps -o src/.albatross.objs/native/vmm_vmmd.cmx -c -impl src/vmm_vmmd.ml)
- File "src/vmm_vmmd.ml", line 180, characters 33-37:
- 180 |                  Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit " -> ") string string))
-                                        ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_vmmd.ml", line 180, characters 57-61:
- 180 |                  Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit " -> ") string string))
-                                                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "src/vmm_vmmd.ml", line 317, characters 19-27:
- 317 |         let data = Fmt.strf "%a %s %a" Name.pp id answer pp_process_exit ex in
-                          ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I tls/.albatross_tls.objs/byte -I tls/.albatross_tls.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/cstruct-sexp -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/gmap -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/hkdf -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-ec -I /home/opam/.opam/5.4/lib/mirage-crypto-pk -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/unix -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -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/optint -I /home/opam/.opam/5.4/lib/parsexp -I /home/opam/.opam/5.4/lib/pbkdf -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/sexplib -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/tls -I /home/opam/.opam/5.4/lib/tls/lwt -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/x509 -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -I src/.albatross.objs/native -cmi-file tls/.albatross_tls.objs/byte/vmm_tls.cmi -no-alias-deps -o tls/.albatross_tls.objs/native/vmm_tls.cmx -c -impl tls/vmm_tls.ml)
- File "tls/vmm_tls.ml", line 89, characters 33-37:
- 89 |                  Fmt.(list ~sep:(unit " -> ") Certificate.pp) rest);
-                                       ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I tls/.albatross_tls.objs/byte -I tls/.albatross_tls.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/cstruct-sexp -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/gmap -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/hkdf -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-ec -I /home/opam/.opam/5.4/lib/mirage-crypto-pk -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/5.4/lib/mirage-crypto-rng/unix -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -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/optint -I /home/opam/.opam/5.4/lib/parsexp -I /home/opam/.opam/5.4/lib/pbkdf -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/sexplib -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/tls -I /home/opam/.opam/5.4/lib/tls/lwt -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/x509 -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -I src/.albatross.objs/native -cmi-file tls/.albatross_tls.objs/byte/vmm_tls_lwt.cmi -no-alias-deps -o tls/.albatross_tls.objs/native/vmm_tls_lwt.cmx -c -impl tls/vmm_tls_lwt.ml)
- File "tls/vmm_tls_lwt.ml", line 50, characters 46-57:
- 50 |   Cstruct.BE.set_uint32 dlen 0 (Int32.of_int (Cstruct.len data)) ;
-                                                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I stats/.albatross_stats.objs/byte -I stats/.albatross_stats.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -I src/.albatross.objs/native -cmi-file stats/.albatross_stats.objs/byte/albatross_stats_pure.cmi -no-alias-deps -o stats/.albatross_stats.objs/native/albatross_stats_pure.cmx -c -impl stats/albatross_stats_pure.ml)
- File "stats/albatross_stats_pure.ml", line 30, characters 41-45:
- 30 | let pp_strings pp strs = Fmt.(list ~sep:(unit ",@ ") string) pp strs
-                                               ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "stats/albatross_stats_pure.ml", line 33, characters 18-22:
- 33 |   Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit ": ") string string)) pp nets
-                        ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- 
- File "stats/albatross_stats_pure.ml", line 33, characters 42-46:
- 33 |   Fmt.(list ~sep:(unit ",@ ") (pair ~sep:(unit ": ") string string)) pp nets
-                                                ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I command-line/.albatross_cli.objs/byte -I command-line/.albatross_cli.objs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/checkseum/c -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/metrics-influx -I /home/opam/.opam/5.4/lib/metrics-lwt -I /home/opam/.opam/5.4/lib/metrics-rusage -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -I src/.albatross.objs/byte -I src/.albatross.objs/native -cmi-file command-line/.albatross_cli.objs/byte/albatross_cli.cmi -no-alias-deps -o command-line/.albatross_cli.objs/native/albatross_cli.cmx -c -impl command-line/albatross_cli.ml)
- File "command-line/albatross_cli.ml", line 90, characters 15-26:
- 90 |             if Cstruct.len cfg.Unikernel.image > 0 then
-                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- 
- File "command-line/albatross_cli.ml", line 314, characters 2-10:
- 314 |   Fmt.strf "version v1.2.0 protocol version %a"
-         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I daemon/.albatrossd.eobjs/byte -I daemon/.albatrossd.eobjs/native -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bos -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/checkseum/c -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/decompress/de -I /home/opam/.opam/5.4/lib/decompress/zl -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/duration -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fpath -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/jsonm -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/macaddr -I /home/opam/.opam/5.4/lib/metrics -I /home/opam/.opam/5.4/lib/metrics-influx -I /home/opam/.opam/5.4/lib/metrics-lwt -I /home/opam/.opam/5.4/lib/metrics-rusage -I /home/opam/.opam/5.4/lib/mirage-crypto -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/optint -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/ptime/clock -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -I command-line/.albatross_cli.objs/byte -I command-line/.albatross_cli.objs/native -I src/.albatross.objs/byte -I src/.albatross.objs/native -cmi-file daemon/.albatrossd.eobjs/byte/albatrossd.cmi -no-alias-deps -o daemon/.albatrossd.eobjs/native/albatrossd.cmx -c -impl daemon/albatrossd.ml)
- File "daemon/albatrossd.ml", line 158, characters 34-42:
- 158 |          | None -> Lwt.fail_with (Fmt.strf "cannot connect to %a" pp_socket s)
-                                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- 
- File "daemon/albatrossd.ml", line 171, characters 14-22:
- 171 |               Fmt.strf "unable to create server socket %a: %s"
-                     ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
Processing  2/4: [albatross: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "albatross" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/albatross.1.2.0)
-> compiled  albatross.1.2.0
-> removed   albatross.1.2.0
-> installed albatross.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:00.56 ---> saved as "8e70ffc28e13616f51ab68ff2a29e678fa2a6b5eb7c77836c9638db4e1e36d71"
Job succeeded
2026-04-11 02:01.07: Job succeeded