Build:
  1. 0
2026-03-02 19:24.06: New job: test conex.0.9.2 with dune.3.22.0~alpha0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall conex.0.9.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" != 'conex.0.9.2' && 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 conex.0.9.2) || true
RUN opam reinstall --with-test --verbose conex.0.9.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" != 'conex.0.9.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-02 19:24.06: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-conex.0.9.2-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:24.06: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.0~alpha0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conex.0.9.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\" != 'conex.0.9.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 (network host)
      (shell "(opam reinstall --with-test conex.0.9.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose conex.0.9.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\" != 'conex.0.9.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-02 19:24.06: Waiting for resource in pool OCluster
2026-03-03 05:59.01: Waiting for worker…
2026-03-03 06:05.01: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
 .../chrome-trace/chrome-trace.3.22.0~alpha0/opam   | 39 +++++++++++
 .../dune-action-plugin.3.22.0~alpha0/opam          | 52 +++++++++++++++
 .../dune-action-trace.3.22.0~alpha0/opam           | 40 ++++++++++++
 .../dune-build-info.3.22.0~alpha0/opam             | 45 +++++++++++++
 .../dune-configurator.3.22.0~alpha0/opam           | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.0~alpha0/opam    | 42 ++++++++++++
 .../dune-private-libs.3.22.0~alpha0/opam           | 50 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam   | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam      | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.0~alpha0/opam    | 37 +++++++++++
 packages/dune/dune.3.22.0~alpha0/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.0~alpha0/opam                | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.0~alpha0/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam  | 43 +++++++++++++
 packages/ordering/ordering.3.22.0~alpha0/opam      | 38 +++++++++++
 packages/stdune/stdune.3.22.0~alpha0/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.22.0~alpha0/opam     | 38 +++++++++++
 packages/xdg/xdg.3.22.0~alpha0/opam                | 39 +++++++++++
 18 files changed, 797 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
 create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
 create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
 create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
 create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
 create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
 create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
 create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
 create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 06:05.09 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 06:05.09 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" from cache

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

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

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 06:05.09 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-03 06:05.09 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-03 06:05.09 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 06:05.10 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 06:05.10 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1833 kB/s)
- Reading package lists...
2026-03-03 06:05.10 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 06:05.10 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.0~alpha0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.0~alpha0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0  (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:05.10 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conex.0.9.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\" != 'conex.0.9.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conex.0.9.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 47 packages
  - install asn1-combinators    0.2.6          [required by x509]
  - install astring             0.8.5          [required by conex]
  - install base                v0.16.4        [required by ppx_sexp_conv]
  - install base-bytes          base           [required by ocplib-endian]
  - install bigarray-compat     1.1.0          [required by cstruct]
  - install cmdliner            1.3.0          [required by conex]
  - install conex               0.9.2
  - install conf-gmp            5              [required by zarith]
  - install conf-pkg-config     4              [required by zarith]
  - install cppo                1.8.0          [required by lwt, ppx_deriving]
  - install cpuid               0.1.2          [required by nocrypto]
  - install csexp               1.5.2          [required by dune-configurator]
  - install cstruct             6.0.1          [required by conex]
  - install cstruct-lwt         6.0.1          [required by nocrypto]
  - install cstruct-sexp        6.0.1          [required by x509]
  - install dune-configurator   3.22.0~alpha0  [required by lwt]
  - install fmt                 0.11.0         [required by conex]
  - install logs                0.10.0         [required by conex]
  - install lwt                 5.9.2          [required by logs, nocrypto]
  - install menhir              20260209       [required by opam-file-format]
  - install menhirCST           20260209       [required by menhir]
  - install menhirGLR           20260209       [required by menhir]
  - install menhirLib           20260209       [required by menhir]
  - install menhirSdk           20260209       [required by menhir]
  - install mirage-no-solo5     1 (deprecated) [required by nocrypto]
  - install mirage-no-xen       1 (deprecated) [required by nocrypto]
  - install nocrypto            0.5.4-2        [required by conex]
  - install num                 1.6            [required by sexplib]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocamlbuild          0.16.1         [required by conex]
  - install ocamlfind           1.9.8          [required by conex]
  - install ocb-stubblr         0.1.1-1        [required by nocrypto]
  - install ocplib-endian       1.2            [required by lwt]
  - install opam-file-format    2.2.0          [required by conex]
  - install parsexp             v0.16.0        [required by sexplib]
  - install ppx_derivers        1.2.1          [required by ppx_deriving]
  - install ppx_deriving        6.0.3          [required by nocrypto]
  - install ppx_sexp_conv       v0.16.0        [required by nocrypto, x509]
  - install ppxlib              0.35.0         [required by ppx_deriving, ppx_sexp_conv]
  - install ptime               1.2.0          [required by x509]
  - install rresult             0.7.0          [required by conex]
  - install sexplib             v0.16.0        [required by nocrypto, x509]
  - install sexplib0            v0.16.0        [required by ppx_sexp_conv, sexplib]
  - install stdlib-shims        0.3.0          [required by ppxlib]
  - install topkg               1.1.1          [required by conex]
  - install x509                0.6.3          [required by conex]
  - install zarith              1.14           [required by nocrypto]

The following system packages will first need to be installed:
    libgmp-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" "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 ... 20623 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 libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-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 libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conex.0.9.2  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved cpuid.0.1.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1, cstruct-sexp.6.0.1  (cached)
-> installed bigarray-compat.1.1.0
-> installed cpuid.0.1.2
-> installed csexp.1.5.2
-> installed cstruct.6.0.1
-> retrieved dune-configurator.3.22.0~alpha0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed cmdliner.1.3.0
-> installed cppo.1.8.0
-> installed dune-configurator.3.22.0~alpha0
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved nocrypto.0.5.4-2  (cached)
-> installed menhirCST.20260209
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocb-stubblr.0.1.1-1  (cached)
-> installed menhirSdk.20260209
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved opam-file-format.2.2.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ptime.1.2.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved x509.0.6.3  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocaml-compiler-libs.v0.12.4
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> installed num.1.6
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed cstruct-sexp.6.0.1
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed zarith.1.14
-> installed lwt.5.9.2
-> installed menhir.20260209
-> installed cstruct-lwt.6.0.1
-> installed opam-file-format.2.2.0
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed asn1-combinators.0.2.6
-> installed ocb-stubblr.0.1.1-1
-> installed logs.0.10.0
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed nocrypto.0.5.4-2
-> installed x509.0.6.3
-> installed conex.0.9.2
Done.

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

<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:05.50 ---> saved as "0d1167b31205d71494673303c7fd09f527b274a59814b0a31a55d0d0ce93bfc3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test conex.0.9.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile conex              0.9.2
=== install 4 packages
  - install   alcotest           1.9.1  [required by conex]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   re                 1.14.0 [required by alcotest]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved conex.0.9.2  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> removed   conex.0.9.2
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed conex.0.9.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:06.02 ---> saved as "2c3deacda95b08e97907bd90109c223c328b8ee49b81f326cb27a832a0882717"

/home/opam: (run (shell  "opam reinstall --with-test --verbose conex.0.9.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\" != 'conex.0.9.2' && 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 conex 0.9.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [conex.0.9.2: extract]
-> retrieved conex.0.9.2  (cached)
Processing  2/4: [conex: ocaml build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--pinned" "false" "--tests" "false" "--with-format" "false" (CWD=/home/opam/.opam/4.14/.opam-switch/build/conex.0.9.2)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules src/conex.ml > src/conex.ml.depends
- + ocamlfind ocamldep -modules src/conex.mli > src/conex.mli.depends
- + ocamlfind ocamldep -modules src/conex_crypto.mli > src/conex_crypto.mli.depends
- + ocamlfind ocamldep -modules src/conex_resource.mli > src/conex_resource.mli.depends
- + ocamlfind ocamldep -modules src/conex_utils.mli > src/conex_utils.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_utils.cmi src/conex_utils.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_resource.cmi src/conex_resource.mli
- + ocamlfind ocamldep -modules src/conex_io.mli > src/conex_io.mli.depends
- + ocamlfind ocamldep -modules src/conex_repository.mli > src/conex_repository.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_crypto.cmi src/conex_crypto.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_io.cmi src/conex_io.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_repository.cmi src/conex_repository.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_crypto.cmi src/conex_crypto.mli
- File "src/conex_crypto.mli", line 53, characters 20-21:
- 53 | module Make_verify (C : VERIFY_BACK) : VERIFY
-                          ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- File "src/conex_crypto.mli", line 95, characters 18-19:
- 95 | module Make_sign (C : SIGN_BACK) : SIGN
-                        ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex.cmi src/conex.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex.cmi src/conex.mli
- File "src/conex.mli", line 23, characters 13-14:
- 23 | module Make (L : LOGS) (C : VERIFY): sig
-                   ^
- Warning 67 [unused-functor-parameter]: unused functor parameter L.
- File "src/conex.mli", line 23, characters 24-25:
- 23 | module Make (L : LOGS) (C : VERIFY): sig
-                              ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- + ocamlfind ocamldep -modules src/conex_crypto.ml > src/conex_crypto.ml.depends
- + ocamlfind ocamldep -modules src/conex_resource.ml > src/conex_resource.ml.depends
- + ocamlfind ocamldep -modules src/conex_utils.ml > src/conex_utils.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_utils.cmx src/conex_utils.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_resource.cmx src/conex_resource.ml
- + ocamlfind ocamldep -modules src/conex_diff.ml > src/conex_diff.ml.depends
- + ocamlfind ocamldep -modules src/conex_diff.mli > src/conex_diff.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff.cmi src/conex_diff.mli
- + ocamlfind ocamldep -modules src/conex_opam_repository_layout.ml > src/conex_opam_repository_layout.ml.depends
- + ocamlfind ocamldep -modules src/conex_opam_repository_layout.mli > src/conex_opam_repository_layout.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_repository_layout.cmi src/conex_opam_repository_layout.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_repository_layout.cmx src/conex_opam_repository_layout.ml
- + ocamlfind ocamldep -modules src/conex_diff_provider.ml > src/conex_diff_provider.ml.depends
- + ocamlfind ocamldep -modules src/conex_diff_provider.mli > src/conex_diff_provider.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff_provider.cmi src/conex_diff_provider.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff.cmx src/conex_diff.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff.cmx src/conex_diff.ml
- File "src/conex_diff.ml", line 6, characters 2-22:
- 6 |   mine : string list ;
-       ^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field mine is never read.
- (However, this field is used to build or mutate values.)
- File "src/conex_diff.ml", line 7, characters 2-21:
- 7 |   their_start : int ;
-       ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field their_start is never read.
- (However, this field is used to build or mutate values.)
- File "src/conex_diff.ml", line 8, characters 2-19:
- 8 |   their_len : int ;
-       ^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field their_len is never read.
- (However, this field is used to build or mutate values.)
- + ocamlfind ocamldep -modules src/conex_io.ml > src/conex_io.ml.depends
- + ocamlfind ocamldep -package opam-file-format -modules src/conex_opam_encoding.ml > src/conex_opam_encoding.ml.depends
- + ocamlfind ocamldep -package opam-file-format -modules src/conex_opam_encoding.mli > src/conex_opam_encoding.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package opam-file-format -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_encoding.cmi src/conex_opam_encoding.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package opam-file-format -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_encoding.cmx src/conex_opam_encoding.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package opam-file-format -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_encoding.cmx src/conex_opam_encoding.ml
- File "src/conex_opam_encoding.ml", line 27, characters 2-29:
- 27 |   OpamPrinter.format_opamfile Format.str_formatter file ;
-        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: OpamPrinter.format_opamfile
- Use OpamPrinter.FullPos.format_opamfile instead.
- File "src/conex_opam_encoding.ml", line 67, characters 11-28:
- 67 |   (try Ok (OpamParser.string data "noname") with
-                 ^^^^^^^^^^^^^^^^^
- Alert deprecated: OpamParser.string
- Use OpamParser.FullPos.string instead.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_io.cmx src/conex_io.ml
- + ocamlfind ocamldep -modules src/conex_repository.ml > src/conex_repository.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_crypto.cmx src/conex_crypto.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff_provider.cmx src/conex_diff_provider.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_repository.cmx src/conex_repository.ml
- + ocamlfind ocamldep -modules src/conex_unix_persistency.ml > src/conex_unix_persistency.ml.depends
- + ocamlfind ocamldep -modules src/conex_unix_persistency.mli > src/conex_unix_persistency.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_persistency.cmi src/conex_unix_persistency.mli
- + ocamlfind ocamldep -modules src/conex_unix_provider.ml > src/conex_unix_provider.ml.depends
- + ocamlfind ocamldep -modules src/conex_unix_provider.mli > src/conex_unix_provider.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_provider.cmi src/conex_unix_provider.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_persistency.cmx src/conex_unix_persistency.ml
- + ocamlfind ocamldep -modules src/conex_unix_private_key.ml > src/conex_unix_private_key.ml.depends
- + ocamlfind ocamldep -modules src/conex_unix_private_key.mli > src/conex_unix_private_key.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_private_key.cmi src/conex_unix_private_key.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex.cmx src/conex.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_provider.cmx src/conex_unix_provider.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_private_key.cmx src/conex_unix_private_key.ml
- + ocamlfind ocamlopt -a -I src src/conex_utils.cmx src/conex_resource.cmx src/conex_crypto.cmx src/conex_opam_repository_layout.cmx src/conex_diff.cmx src/conex_opam_encoding.cmx src/conex_io.cmx src/conex_diff_provider.cmx src/conex_repository.cmx src/conex.cmx src/conex_unix_persistency.cmx src/conex_unix_provider.cmx src/conex_unix_private_key.cmx -o src/conex.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex.cmo src/conex.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_utils.cmo src/conex_utils.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_resource.cmo src/conex_resource.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_repository_layout.cmo src/conex_opam_repository_layout.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff.cmo src/conex_diff.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_crypto.cmo src/conex_crypto.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff.cmo src/conex_diff.ml
- File "src/conex_diff.ml", line 6, characters 2-22:
- 6 |   mine : string list ;
-       ^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field mine is never read.
- (However, this field is used to build or mutate values.)
- File "src/conex_diff.ml", line 7, characters 2-21:
- 7 |   their_start : int ;
-       ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field their_start is never read.
- (However, this field is used to build or mutate values.)
- File "src/conex_diff.ml", line 8, characters 2-19:
- 8 |   their_len : int ;
-       ^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field their_len is never read.
- (However, this field is used to build or mutate values.)
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package opam-file-format -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_encoding.cmo src/conex_opam_encoding.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_repository.cmo src/conex_repository.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_persistency.cmo src/conex_unix_persistency.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package opam-file-format -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_opam_encoding.cmo src/conex_opam_encoding.ml
- File "src/conex_opam_encoding.ml", line 27, characters 2-29:
- 27 |   OpamPrinter.format_opamfile Format.str_formatter file ;
-        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: OpamPrinter.format_opamfile
- Use OpamPrinter.FullPos.format_opamfile instead.
- File "src/conex_opam_encoding.ml", line 67, characters 11-28:
- 67 |   (try Ok (OpamParser.string data "noname") with
-                 ^^^^^^^^^^^^^^^^^
- Alert deprecated: OpamParser.string
- Use OpamParser.FullPos.string instead.
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_provider.cmo src/conex_unix_provider.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_unix_private_key.cmo src/conex_unix_private_key.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_diff_provider.cmo src/conex_diff_provider.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src -I src/nocrypto -I src/openssl -o src/conex_io.cmo src/conex_io.ml
- + ocamlfind ocamldep -package 'x509 nocrypto cstruct' -modules src/nocrypto/conex_nocrypto.ml > src/nocrypto/conex_nocrypto.ml.depends
- + ocamlfind ocamldep -package 'x509 nocrypto cstruct' -modules src/nocrypto/conex_nocrypto.mli > src/nocrypto/conex_nocrypto.mli.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'x509 nocrypto cstruct' -w +A-4-33-44-48-58 -color always -I src/nocrypto -I src -I src/openssl -o src/nocrypto/conex_nocrypto.cmi src/nocrypto/conex_nocrypto.mli
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'x509 nocrypto cstruct' -w +A-4-33-44-48-58 -color always -I src/nocrypto -I src -I src/openssl -o src/nocrypto/conex_nocrypto.cmx src/nocrypto/conex_nocrypto.ml
- + ocamlfind ocamlopt -a -I src/nocrypto src/nocrypto/conex_nocrypto.cmx -o src/nocrypto/conex-nocrypto.cmxa
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'x509 nocrypto cstruct' -w +A-4-33-44-48-58 -color always -I src/nocrypto -I src -I src/openssl -o src/nocrypto/conex_nocrypto.cmo src/nocrypto/conex_nocrypto.ml
- + ocamlfind ocamldep -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -modules app/conex_author.ml > app/conex_author.ml.depends
- + ocamlfind ocamldep -package 'cmdliner opam-file-format unix' -modules app/conex_opts.ml > app/conex_opts.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_opts.cmo app/conex_opts.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_opts.cmo app/conex_opts.ml
- File "app/conex_opts.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_author.cmo app/conex_author.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_author.cmo app/conex_author.ml
- File "app/conex_author.ml", line 726, characters 2-11:
- 726 |   Term.info "status" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 735, characters 2-11:
- 735 |   Term.info "verify" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 744, characters 2-11:
- 744 |   Term.info "authorisation" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 753, characters 2-11:
- 753 |   Term.info "release" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 762, characters 2-11:
- 762 |   Term.info "team" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 775, characters 2-11:
- 775 |   Term.info "key" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 784, characters 2-11:
- 784 |   Term.info "reset" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 793, characters 2-11:
- 793 |   Term.info "sign" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 806, characters 2-11:
- 806 |   Term.info "init" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 818, characters 67-82:
- 818 |   Term.(ret Conex_opts.(const help $ setup_log $ dry $ repo $ id $ Term.man_format $ Term.choice_names $ topic)),
-                                                                          ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "app/conex_author.ml", line 819, characters 2-11:
- 819 |   Term.info "help" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 824, characters 67-82:
- 824 |   Term.(ret Conex_opts.(const help $ setup_log $ dry $ repo $ id $ Term.man_format $ Term.choice_names $ Term.pure None)),
-                                                                          ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "app/conex_author.ml", line 824, characters 105-114:
- 824 |   Term.(ret Conex_opts.(const help $ setup_log $ dry $ repo $ id $ Term.man_format $ Term.choice_names $ Term.pure None)),
-                                                                                                                ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "app/conex_author.ml", line 825, characters 2-11:
- 825 |   Term.info "conex_author" ~version:"0.9.2" ~sdocs:docs ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 835, characters 8-24:
- 835 |   match Term.eval_choice default_cmd cmds
-               ^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
- File "app/conex_author.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_opts.cmx app/conex_opts.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_opts.cmx app/conex_opts.ml
- File "app/conex_opts.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_author.cmx app/conex_author.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_author.cmx app/conex_author.ml
- File "app/conex_author.ml", line 726, characters 2-11:
- 726 |   Term.info "status" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 735, characters 2-11:
- 735 |   Term.info "verify" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 744, characters 2-11:
- 744 |   Term.info "authorisation" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 753, characters 2-11:
- 753 |   Term.info "release" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 762, characters 2-11:
- 762 |   Term.info "team" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 775, characters 2-11:
- 775 |   Term.info "key" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 784, characters 2-11:
- 784 |   Term.info "reset" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 793, characters 2-11:
- 793 |   Term.info "sign" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 806, characters 2-11:
- 806 |   Term.info "init" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 818, characters 67-82:
- 818 |   Term.(ret Conex_opts.(const help $ setup_log $ dry $ repo $ id $ Term.man_format $ Term.choice_names $ topic)),
-                                                                          ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "app/conex_author.ml", line 819, characters 2-11:
- 819 |   Term.info "help" ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 824, characters 67-82:
- 824 |   Term.(ret Conex_opts.(const help $ setup_log $ dry $ repo $ id $ Term.man_format $ Term.choice_names $ Term.pure None)),
-                                                                          ^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.man_format
- Use Arg.man_format instead.
- File "app/conex_author.ml", line 824, characters 105-114:
- 824 |   Term.(ret Conex_opts.(const help $ setup_log $ dry $ repo $ id $ Term.man_format $ Term.choice_names $ Term.pure None)),
-                                                                                                                ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "app/conex_author.ml", line 825, characters 2-11:
- 825 |   Term.info "conex_author" ~version:"0.9.2" ~sdocs:docs ~doc ~man
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_author.ml", line 835, characters 8-24:
- 835 |   match Term.eval_choice default_cmd cmds
-               ^^^^^^^^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval_choice
- Use Cmd.group and one of Cmd.eval* instead.
- File "app/conex_author.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamldep -package 'cmdliner opam-file-format unix' -modules app/conex_verify_openssl.ml > app/conex_verify_openssl.ml.depends
- + ocamlfind ocamldep -modules src/openssl/conex_openssl.mli > src/openssl/conex_openssl.mli.depends
- + ocamlfind ocamldep -package 'cmdliner opam-file-format unix' -modules app/conex_verify.ml > app/conex_verify.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src/openssl -I src -I src/nocrypto -o src/openssl/conex_openssl.cmi src/openssl/conex_openssl.mli
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify.cmo app/conex_verify.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify.cmo app/conex_verify.ml
- File "app/conex_verify.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_openssl.cmo app/conex_verify_openssl.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_openssl.cmo app/conex_verify_openssl.ml
- File "app/conex_verify_openssl.ml", line 76, characters 54-71:
- 76 |   let isatty = try Unix.(isatty (descr_of_out_channel Pervasives.stdout)) with
-                                                            ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "app/conex_verify_openssl.ml", line 110, characters 2-11:
- 110 |   Term.info "conex_verify_openssl" ~version:"0.9.2"
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_verify_openssl.ml", line 113, characters 15-24:
- 113 | let () = match Term.eval cmd with `Ok () -> exit 0 | _ -> exit 1
-                      ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- File "app/conex_verify_openssl.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamldep -modules src/openssl/conex_openssl.ml > src/openssl/conex_openssl.ml.depends
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -w +A-4-33-44-48-58 -color always -I src/openssl -I src -I src/nocrypto -o src/openssl/conex_openssl.cmx src/openssl/conex_openssl.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify.cmx app/conex_verify.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify.cmx app/conex_verify.ml
- File "app/conex_verify.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_openssl.cmx app/conex_verify_openssl.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_openssl.cmx app/conex_verify_openssl.ml
- File "app/conex_verify_openssl.ml", line 76, characters 54-71:
- 76 |   let isatty = try Unix.(isatty (descr_of_out_channel Pervasives.stdout)) with
-                                                            ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "app/conex_verify_openssl.ml", line 110, characters 2-11:
- 110 |   Term.info "conex_verify_openssl" ~version:"0.9.2"
-         ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_verify_openssl.ml", line 113, characters 15-24:
- 113 | let () = match Term.eval cmd with `Ok () -> exit 0 | _ -> exit 1
-                      ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- File "app/conex_verify_openssl.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamldep -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -modules app/conex_verify_nocrypto.ml > app/conex_verify_nocrypto.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_nocrypto.cmo app/conex_verify_nocrypto.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_nocrypto.cmo app/conex_verify_nocrypto.ml
- File "app/conex_verify_nocrypto.ml", line 22, characters 2-11:
- 22 |   Term.info "conex_verify_nocrypto" ~version:"0.9.2"
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_verify_nocrypto.ml", line 25, characters 15-24:
- 25 | let () = match Term.eval cmd with `Ok () -> exit 0 | _ -> exit 1
-                     ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- File "app/conex_verify_nocrypto.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_nocrypto.cmx app/conex_verify_nocrypto.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -w +A-4-33-44-48-58 -color always -I app -I src -I src/nocrypto -I src/openssl -o app/conex_verify_nocrypto.cmx app/conex_verify_nocrypto.ml
- File "app/conex_verify_nocrypto.ml", line 22, characters 2-11:
- 22 |   Term.info "conex_verify_nocrypto" ~version:"0.9.2"
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "app/conex_verify_nocrypto.ml", line 25, characters 15-24:
- 25 | let () = match Term.eval cmd with `Ok () -> exit 0 | _ -> exit 1
-                     ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- File "app/conex_verify_nocrypto.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -shared -linkall -I src src/conex.cmxa -o src/conex.cmxs
- + ocamlfind ocamlc -a -I src src/conex_utils.cmo src/conex_resource.cmo src/conex_crypto.cmo src/conex_opam_repository_layout.cmo src/conex_diff.cmo src/conex_opam_encoding.cmo src/conex_io.cmo src/conex_diff_provider.cmo src/conex_repository.cmo src/conex.cmo src/conex_unix_persistency.cmo src/conex_unix_provider.cmo src/conex_unix_private_key.cmo -o src/conex.cma
- + ocamlfind ocamlopt -shared -linkall -I src/nocrypto src/nocrypto/conex-nocrypto.cmxa -o src/nocrypto/conex-nocrypto.cmxs
- + ocamlfind ocamlc -a -I src/nocrypto src/nocrypto/conex_nocrypto.cmo -o src/nocrypto/conex-nocrypto.cma
- + ocamlfind ocamlopt -linkpkg -g -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -I src -I app -I src/nocrypto src/conex_utils.cmx src/conex_resource.cmx src/conex_opam_repository_layout.cmx app/conex_opts.cmx src/conex_crypto.cmx src/conex_diff.cmx src/conex_opam_encoding.cmx src/conex_io.cmx src/conex_diff_provider.cmx src/conex_repository.cmx src/conex.cmx src/conex_unix_persistency.cmx src/conex_unix_private_key.cmx src/conex_unix_provider.cmx src/nocrypto/conex_nocrypto.cmx app/conex_author.cmx -o app/conex_author.native
- + ocamlfind ocamlopt -linkpkg -g -package 'cmdliner opam-file-format unix' -I src -I app -I src/openssl src/conex_utils.cmx src/conex_resource.cmx src/conex_opam_repository_layout.cmx app/conex_opts.cmx src/conex_crypto.cmx src/conex_diff.cmx src/conex_opam_encoding.cmx src/conex_io.cmx src/conex_diff_provider.cmx src/conex_repository.cmx src/conex.cmx src/conex_unix_persistency.cmx src/conex_unix_provider.cmx src/openssl/conex_openssl.cmx app/conex_verify.cmx app/conex_verify_openssl.cmx -o app/conex_verify_openssl.native
- + ocamlfind ocamlopt -linkpkg -g -package 'cstruct nocrypto nocrypto.unix x509 logs fmt.tty logs.fmt logs.cli fmt.cli rresult' -package 'cmdliner opam-file-format unix' -I src -I app -I src/openssl -I src/nocrypto src/conex_utils.cmx src/conex_resource.cmx src/conex_opam_repository_layout.cmx app/conex_opts.cmx src/conex_crypto.cmx src/conex_diff.cmx src/conex_opam_encoding.cmx src/conex_io.cmx src/conex_diff_provider.cmx src/conex_repository.cmx src/conex.cmx src/conex_unix_persistency.cmx src/conex_unix_provider.cmx src/openssl/conex_openssl.cmx app/conex_verify.cmx src/nocrypto/conex_nocrypto.cmx app/conex_verify_nocrypto.cmx -o app/conex_verify_nocrypto.native
- # Parallel statistics: { count(total): 5(75), max: 13, min: 3, average(total): 5.800(1.320) }
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "build" "--pinned" "false" "--tests" "true" (CWD=/home/opam/.opam/4.14/.opam-switch/build/conex.0.9.2)
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package 'cstruct nocrypto x509 nocrypto.unix opam-file-format' -package alcotest -modules test/tests.ml > test/tests.ml.depends
- + ocamlfind ocamldep -package alcotest -modules test/basics.ml > test/basics.ml.depends
- + ocamlfind ocamldep -package alcotest -modules test/common.ml > test/common.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/common.cmo test/common.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/common.cmo test/common.ml
- File "test/common.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamldep -package alcotest -modules test/repositorytests.ml > test/repositorytests.ml.depends
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/basics.cmo test/basics.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/repositorytests.cmo test/repositorytests.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/basics.cmo test/basics.ml
- File "test/basics.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/repositorytests.cmo test/repositorytests.ml
- File "test/repositorytests.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto x509 nocrypto.unix opam-file-format' -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/tests.cmo test/tests.ml
- + ocamlfind ocamlc -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto x509 nocrypto.unix opam-file-format' -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/tests.cmo test/tests.ml
- File "test/tests.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/common.cmx test/common.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/common.cmx test/common.ml
- File "test/common.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/basics.cmx test/basics.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/repositorytests.cmx test/repositorytests.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/basics.cmx test/basics.ml
- File "test/basics.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/repositorytests.cmx test/repositorytests.ml
- File "test/repositorytests.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto x509 nocrypto.unix opam-file-format' -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/tests.cmx test/tests.ml
- + ocamlfind ocamlopt -c -g -bin-annot -safe-string -principal -package 'cstruct nocrypto x509 nocrypto.unix opam-file-format' -package alcotest -w +A-4-33-44-48-58 -color always -I test -I src -I src/nocrypto -I src/openssl -o test/tests.cmx test/tests.ml
- File "test/tests.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + ocamlfind ocamlopt -linkpkg -g -package 'cstruct nocrypto x509 nocrypto.unix opam-file-format' -package alcotest -I src -I src/nocrypto -I src/openssl -I test src/conex_utils.cmx src/conex_resource.cmx src/conex_crypto.cmx src/conex_opam_encoding.cmx src/conex_opam_repository_layout.cmx src/conex_io.cmx src/conex_repository.cmx src/conex_unix_persistency.cmx src/nocrypto/conex_nocrypto.cmx src/openssl/conex_openssl.cmx test/common.cmx test/basics.cmx test/repositorytests.cmx test/tests.cmx -o test/tests.native
- # Parallel statistics: { count(total): 2(110), max: 2, min: 2, average(total): 2.000(1.018) }
Processing  2/4: [conex: ocaml test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "pkg/pkg.ml" "test" (CWD=/home/opam/.opam/4.14/.opam-switch/build/conex.0.9.2)
- Testing `Conex tests'.
- This run has ID `N83LGME7'.
- 
-   [OK]          Uint                                     0   basic compare is...
-   [OK]          Uint                                     1   succ is good.
-   [OK]          Uint                                     2   to/of_string is ...
-   [OK]          Uint                                     3   compare r zero i...
-   [OK]          NocryptoSignature                        0   sign and verify ...
-   [OK]          NocryptoSignature                        1   self-sign is good.
-   [OK]          NocryptoSignature                        2   bad priv is bad.
-   [OK]          NocryptoSignature                        3   verify failures.
-   [OK]          NocryptoIndex                            0   good index.
-   [OK]          NocryptoIndex                            1   bad index.
-   [OK]          NocryptoIndex                            2   bad index 2.
-   [OK]          MemoryProvider                           0   empty provider.
-   [OK]          MemoryProvider                           1   basic provider.
-   [OK]          MemoryProvider                           2   more provider.
-   [OK]          NocryptoRepositoryBasics                 0   empty repo.
-   [OK]          NocryptoRepositoryBasics                 1   key repo.
-   [OK]          NocryptoRepositoryBasics                 2   team.
-   [OK]          NocryptoRepositoryBasics                 3   checksum computa...
-   [OK]          NocryptoRepositoryBasics                 4   basic data persi...
-   [OK]          NocryptoRepositoryBasics                 5   bad id in repo.
-   [OK]          NocryptoRepositoryBasics                 6   bad idx in repo.
-   [OK]          NocryptoRepositoryBasics                 7   bad auth in repo.
-   [OK]          NocryptoRepositoryBasics                 8   bad rel in repo.
-   [OK]          NocryptoRepositoryBasics                 9   bad cs in repo.
-   [OK]          NocryptoRepositoryKeys                   0   signed index.
-   [OK]          NocryptoRepositoryKeys                   1   signed and verif...
-   [OK]          NocryptoRepositoryKeys                   2   verify succeeds,...
-   [OK]          NocryptoRepositoryKeys                   3   key good.
-   [OK]          NocryptoRepositoryKeys                   4   key good with qu...
-   [OK]          NocryptoRepositoryKeys                   5   no janitor.
-   [OK]          NocryptoRepositoryKeys                   6   wrong resource.
-   [OK]          NocryptoRepositoryKeys                   7   wrong name.
-   [OK]          NocryptoRepositoryTeam                   0   basic team.
-   [OK]          NocryptoRepositoryTeam                   1   also self signed.
-   [OK]          NocryptoRepositoryTeam                   2   wrong resource.
-   [OK]          NocryptoRepositoryTeam                   3   wrong name.
-   [OK]          NocryptoRepositoryTeam                   4   dynamic team.
-   [OK]          NocryptoRepositoryAuthorisation          0   basic auth.
-   [OK]          NocryptoRepositoryAuthorisation          1   also self signed.
-   [OK]          NocryptoRepositoryAuthorisation          2   wrong resource.
-   [OK]          NocryptoRepositoryAuthorisation          3   wrong name.
-   [OK]          NocryptoRepositoryAuthorisation          4   dynamic authoris...
-   [OK]          NocryptoRepositoryPackage                0   basic release.
-   [OK]          NocryptoRepositoryPackage                1   quorum on releases.
-   [OK]          NocryptoRepositoryPackage                2   not authorised.
-   [OK]          NocryptoRepositoryPackage                3   missing some rel...
-   [OK]          NocryptoRepositoryPackage                4   bad releases on ...
-   [OK]          NocryptoRepositoryPackage                5   name mismatch (r...
-   [OK]          NocryptoRepositoryPackage                6   wrong name.
-   [OK]          NocryptoRepositoryPackage                7   wrong resource.
-   [OK]          NocryptoRepositoryRelease                0   basic checksum.
-   [OK]          NocryptoRepositoryRelease                1   quorum checksum.
-   [OK]          NocryptoRepositoryRelease                2   bad checksum.
-   [OK]          NocryptoRepositoryRelease                3   bad releases name.
-   [OK]          NocryptoRepositoryRelease                4   checksum name no...
-   [OK]          NocryptoRepositoryRelease                5   wrong checksum n...
-   [OK]          NocryptoRepositoryRelease                6   wrong checksum r...
-   [OK]          OpenSSLSignature                         0   sign and verify ...
-   [OK]          OpenSSLSignature                         1   self-sign is good.
-   [OK]          OpenSSLSignature                         2   bad priv is bad.
-   [OK]          OpenSSLSignature                         3   verify failures.
-   [OK]          OpenSSLIndex                             0   good index.
-   [OK]          OpenSSLIndex                             1   bad index.
-   [OK]          OpenSSLIndex                             2   bad index 2.
-   [OK]          OpenSSLRepositoryBasics                  0   empty repo.
-   [OK]          OpenSSLRepositoryBasics                  1   key repo.
-   [OK]          OpenSSLRepositoryBasics                  2   team.
-   [OK]          OpenSSLRepositoryBasics                  3   checksum computa...
-   [OK]          OpenSSLRepositoryBasics                  4   basic data persi...
-   [OK]          OpenSSLRepositoryBasics                  5   bad id in repo.
-   [OK]          OpenSSLRepositoryBasics                  6   bad idx in repo.
-   [OK]          OpenSSLRepositoryBasics                  7   bad auth in repo.
-   [OK]          OpenSSLRepositoryBasics                  8   bad rel in repo.
-   [OK]          OpenSSLRepositoryBasics                  9   bad cs in repo.
-   [OK]          OpenSSLRepositoryKeys                    0   signed index.
-   [OK]          OpenSSLRepositoryKeys                    1   signed and verif...
-   [OK]          OpenSSLRepositoryKeys                    2   verify succeeds,...
-   [OK]          OpenSSLRepositoryKeys                    3   key good.
-   [OK]          OpenSSLRepositoryKeys                    4   key good with qu...
-   [OK]          OpenSSLRepositoryKeys                    5   no janitor.
-   [OK]          OpenSSLRepositoryKeys                    6   wrong resource.
-   [OK]          OpenSSLRepositoryKeys                    7   wrong name.
-   [OK]          OpenSSLRepositoryTeam                    0   basic team.
-   [OK]          OpenSSLRepositoryTeam                    1   also self signed.
-   [OK]          OpenSSLRepositoryTeam                    2   wrong resource.
-   [OK]          OpenSSLRepositoryTeam                    3   wrong name.
-   [OK]          OpenSSLRepositoryTeam                    4   dynamic team.
-   [OK]          OpenSSLRepositoryAuthorisation           0   basic auth.
-   [OK]          OpenSSLRepositoryAuthorisation           1   also self signed.
-   [OK]          OpenSSLRepositoryAuthorisation           2   wrong resource.
-   [OK]          OpenSSLRepositoryAuthorisation           3   wrong name.
-   [OK]          OpenSSLRepositoryAuthorisation           4   dynamic authoris...
-   [OK]          OpenSSLRepositoryPackage                 0   basic release.
-   [OK]          OpenSSLRepositoryPackage                 1   quorum on releases.
-   [OK]          OpenSSLRepositoryPackage                 2   not authorised.
-   [OK]          OpenSSLRepositoryPackage                 3   missing some rel...
-   [OK]          OpenSSLRepositoryPackage                 4   bad releases on ...
-   [OK]          OpenSSLRepositoryPackage                 5   name mismatch (r...
-   [OK]          OpenSSLRepositoryPackage                 6   wrong name.
-   [OK]          OpenSSLRepositoryPackage                 7   wrong resource.
-   [OK]          OpenSSLRepositoryRelease                 0   basic checksum.
-   [OK]          OpenSSLRepositoryRelease                 1   quorum checksum.
-   [OK]          OpenSSLRepositoryRelease                 2   bad checksum.
-   [OK]          OpenSSLRepositoryRelease                 3   bad releases name.
-   [OK]          OpenSSLRepositoryRelease                 4   checksum name no...
-   [OK]          OpenSSLRepositoryRelease                 5   wrong checksum n...
-   [OK]          OpenSSLRepositoryRelease                 6   wrong checksum r...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/conex.0.9.2/_build/_tests/Conex tests'.
- Test Successful in 1.278s. 107 tests run.
-> compiled  conex.0.9.2
-> removed   conex.0.9.2
-> installed conex.0.9.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:06.12 ---> saved as "0691a72751538786dd1cd60a22179b70d2cb564f170fdbec8a93a52d443186af"
Job succeeded
2026-03-03 06:06.22: Job succeeded