2025-03-06 15:00.00: New job: test robur-coop/git-kv https://github.com/robur-coop/git-kv.git#refs/heads/main (75e609ed054df28697990b68797136e57ab8e60f) (linux-x86_64:(lower-bound)) Base: ocaml/opam:debian-12-ocaml-4.08@sha256:cb36ada8bb596f67e8e27c6261b722b395133d8890bdee127859b7e4173d7ac0 Opam project build To reproduce locally: git clone --recursive "https://github.com/robur-coop/git-kv.git" -b "main" && cd "git-kv" && git reset --hard 75e609ed cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.08@sha256:cb36ada8bb596f67e8e27c6261b722b395133d8890bdee127859b7e4173d7ac0 # debian-12-4.08_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e 3a71da7aa109c82e542d4ae815ffa4e94a56110d || git fetch origin master) && git reset -q --hard 3a71da7aa109c82e542d4ae815ffa4e94a56110d && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 git-kv.opam ./ RUN opam pin add -yn git-kv.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="alcotest.1.8.0 angstrom.0.14.0 arp.3.0.0 asn1-combinators.0.2.6 astring.0.8.5 awa.0.1.0 awa-mirage.0.1.0 base.v0.13.0 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.0 bigarray-compat.1.0.0 bigstringaf.0.9.0 bos.0.2.1 ca-certs.0.2.1 ca-certs-nss.3.71.0.1 carton.0.7.0 carton-git.0.7.0 carton-lwt.0.7.0 checkseum.0.3.3 cmdliner.1.2.0 conf-git.1.0 conf-gmp.1 conf-gmp-powm-sec.1 conf-m4.1 conf-perl.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 cstruct.6.1.0 cstruct-lwt.6.1.0 cstruct-sexp.6.1.0 cstruct-unix.6.1.0 decompress.1.4.3 digestif.1.1.2 dns.6.2.0 dns-client.6.2.0 domain-name.0.4.0 duff.0.5 dune.3.0.2 dune-configurator.2.7.0 duration.0.2.0 emile.1.1 encore.0.8 eqaf.0.8 ethernet.3.0.0 faraday.0.7.2 fmt.0.8.10 fpath.0.7.3 functoria-runtime.4.0.0 git.3.10.0 git-mirage.3.10.0 git-paf.3.10.0 git-unix.3.10.0 gmap.0.3.0 h2.0.9.0 happy-eyeballs.0.3.0 happy-eyeballs-lwt.0.3.0 happy-eyeballs-mirage.0.3.0 hex.1.4.0 hkdf.1.0.4 hpack.0.1.0 httpaf.0.7.1 hxd.0.3.2 io-page.2.4.0 ipaddr.5.3.0 ipaddr-sexp.5.3.0 jbuilder.1.0+beta20.1 ke.0.6 logs.0.7.0 lru.0.3.0 lwt.5.6.0 lwt-dllist.1.0.0 macaddr.5.3.0 macaddr-cstruct.5.3.0 metrics.0.1.0 mimic.0.0.5 mimic-happy-eyeballs.0.0.5 mirage-clock.4.1.0 mirage-clock-unix.4.1.0 mirage-crypto.0.10.7 mirage-crypto-ec.0.10.7 mirage-crypto-pk.0.10.7 mirage-crypto-rng.0.10.7 mirage-device.2.0.0 mirage-flow.2.0.1 mirage-kv.6.0.1 mirage-net.3.0.1 mirage-no-solo5.1 mirage-no-xen.1 mirage-profile.0.9.0 mirage-random.2.0.0 mirage-runtime.4.0.0 mirage-time.2.0.1 mirage-unix.5.0.0 mtime.1.2.0 num.1.0 ocaml.4.08.1 ocaml-base-compiler.4.08.1 ocaml-compiler-libs.v0.11.0 ocaml-config.1 ocaml-migrate-parsetree.2.0.0 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocamlgraph.1.8.8 ocplib-endian.1.0 optint.0.2.0 paf.0.2.0 parsexp.v0.13.0 pbkdf.1.2.0 pecu.0.4 ppx_cstruct.6.1.0 ppx_derivers.1.0 ppx_sexp_conv.v0.13.0 ppxlib.0.16.0 psq.0.2.0 ptime.1.0.0 randomconv.0.1.2 re.1.7.2 result.1.5 rresult.0.7.0 seq.0.2.2 sexplib.v0.13.0 sexplib0.v0.13.0 stdlib-shims.0.1.0 stringext.1.4.0 tcpip.7.1.0 tls.0.15.0 tls-mirage.0.15.0 topkg.1.0.3 uchar.0.0.2 uri.4.1.0 uutf.1.0.1 x509.0.16.2 zarith.1.4" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y git-kv.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-03-06 15:00.00: Using cache hint "robur-coop/git-kv-ocaml/opam:debian-12-ocaml-4.08@sha256:cb36ada8bb596f67e8e27c6261b722b395133d8890bdee127859b7e4173d7ac0-debian-12-4.08_opam-2.3-770d31867f9feab2cfd6c654457dd488" 2025-03-06 15:00.00: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.08@sha256:cb36ada8bb596f67e8e27c6261b722b395133d8890bdee127859b7e4173d7ac0) (comment debian-12-4.08_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 3a71da7aa109c82e542d4ae815ffa4e94a56110d || git fetch origin master) && git reset -q --hard 3a71da7aa109c82e542d4ae815ffa4e94a56110d && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src git-kv.opam) (dst ./)) (run (network host) (shell "opam pin add -yn git-kv.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "alcotest.1.8.0 angstrom.0.14.0 arp.3.0.0 asn1-combinators.0.2.6 astring.0.8.5 awa.0.1.0 awa-mirage.0.1.0 base.v0.13.0 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.0 bigarray-compat.1.0.0 bigstringaf.0.9.0 bos.0.2.1 ca-certs.0.2.1 ca-certs-nss.3.71.0.1 carton.0.7.0 carton-git.0.7.0 carton-lwt.0.7.0 checkseum.0.3.3 cmdliner.1.2.0 conf-git.1.0 conf-gmp.1 conf-gmp-powm-sec.1 conf-m4.1 conf-perl.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 cstruct.6.1.0 cstruct-lwt.6.1.0 cstruct-sexp.6.1.0 cstruct-unix.6.1.0 decompress.1.4.3 digestif.1.1.2 dns.6.2.0 dns-client.6.2.0 domain-name.0.4.0 duff.0.5 dune.3.0.2 dune-configurator.2.7.0 duration.0.2.0 emile.1.1 encore.0.8 eqaf.0.8 ethernet.3.0.0 faraday.0.7.2 fmt.0.8.10 fpath.0.7.3 functoria-runtime.4.0.0 git.3.10.0 git-mirage.3.10.0 git-paf.3.10.0 git-unix.3.10.0 gmap.0.3.0 h2.0.9.0 happy-eyeballs.0.3.0 happy-eyeballs-lwt.0.3.0 happy-eyeballs-mirage.0.3.0 hex.1.4.0 hkdf.1.0.4 hpack.0.1.0 httpaf.0.7.1 hxd.0.3.2 io-page.2.4.0 ipaddr.5.3.0 ipaddr-sexp.5.3.0 jbuilder.1.0+beta20.1 ke.0.6 logs.0.7.0 lru.0.3.0 lwt.5.6.0 lwt-dllist.1.0.0 macaddr.5.3.0 macaddr-cstruct.5.3.0 metrics.0.1.0 mimic.0.0.5 mimic-happy-eyeballs.0.0.5 mirage-clock.4.1.0 mirage-clock-unix.4.1.0 mirage-crypto.0.10.7 mirage-crypto-ec.0.10.7 mirage-crypto-pk.0.10.7 mirage-crypto-rng.0.10.7 mirage-device.2.0.0 mirage-flow.2.0.1 mirage-kv.6.0.1 mirage-net.3.0.1 mirage-no-solo5.1 mirage-no-xen.1 mirage-profile.0.9.0 mirage-random.2.0.0 mirage-runtime.4.0.0 mirage-time.2.0.1 mirage-unix.5.0.0 mtime.1.2.0 num.1.0 ocaml.4.08.1 ocaml-base-compiler.4.08.1 ocaml-compiler-libs.v0.11.0 ocaml-config.1 ocaml-migrate-parsetree.2.0.0 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocamlgraph.1.8.8 ocplib-endian.1.0 optint.0.2.0 paf.0.2.0 parsexp.v0.13.0 pbkdf.1.2.0 pecu.0.4 ppx_cstruct.6.1.0 ppx_derivers.1.0 ppx_sexp_conv.v0.13.0 ppxlib.0.16.0 psq.0.2.0 ptime.1.0.0 randomconv.0.1.2 re.1.7.2 result.1.5 rresult.0.7.0 seq.0.2.2 sexplib.v0.13.0 sexplib0.v0.13.0 stdlib-shims.0.1.0 stringext.1.4.0 tcpip.7.1.0 tls.0.15.0 tls-mirage.0.15.0 topkg.1.0.3 uchar.0.0.2 uri.4.1.0 uutf.1.0.1 x509.0.16.2 zarith.1.4") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y git-kv.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) ) 2025-03-06 15:00.00: Waiting for resource in pool OCluster 2025-03-06 17:01.03: Waiting for worker… 2025-03-06 17:02.09: Got resource from pool OCluster Building on phoebe.caelum.ci.dev All commits already cached HEAD is now at 75e609e Quick fix mistakes (from ocaml/opam:debian-12-ocaml-4.08@sha256:cb36ada8bb596f67e8e27c6261b722b395133d8890bdee127859b7e4173d7ac0) 2025-03-06 17:02.10 ---> using "00aea64e10ae0c7539e49349e74a22e5b31f7345320d1fcee09b4272923b54dc" from cache /: (comment debian-12-4.08_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-03-06 17:02.10 ---> using "229e44f3b41c7086a87ae48f68c67da76c2a17586fe15dbfda5ccf56e700b927" from cache /src: (run (shell "opam init --reinit -ni")) Configuring from /home/opam/.opamrc and then from built-in defaults. Checking for available remotes: rsync and local, git. - you won't be able to use mercurial repositories unless you install the hg command on your system. - you won't be able to use darcs repositories unless you install the darcs command on your system. Continue? [y/n] y This development 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. Format upgrade done. [NOTE] The 'jobs' option was reset, its value was 39 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=39 --global <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not update repository "opam-repository-archive": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/opam-repository-archive/': Could not resolve host: github.com" [default] synchronised from file:///home/opam/opam-repository 2025-03-06 17:02.10 ---> using "812b2b535bf09bb2c68f0a0a097829d30a5de57533dba14764f46f36956c7809" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-134-generic The OCaml toplevel, version 4.08.1 2.3.0 2025-03-06 17:02.10 ---> using "2f4922b6a969a5ced9e88ae07db0e5cdc960cfe1e83f49de7d5c6bc7d4ee7486" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-03-06 17:02.10 ---> using "fa91da463e70bbd8de4df63bd10e0a8de8b24fc34173c9eb4724630e9daf66b8" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 3a71da7aa109c82e542d4ae815ffa4e94a56110d || git fetch origin master) && git reset -q --hard 3a71da7aa109c82e542d4ae815ffa4e94a56110d && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 94514fa0d0..8707d628f2 master -> origin/master 3a71da7aa1 Merge pull request #27563 from hannesm/alcotest-maint <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive [default] synchronised from file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-03-06 17:02.10 ---> using "57512449233e1b612fae1e30bf9d87c780adda447b5d002a3a1189537756b575" from cache /src: (copy (src git-kv.opam) (dst ./)) 2025-03-06 17:02.10 ---> saved as "cc7571611baff8662afa6a11ad71bafa50685f5b3062f59b3c48644d904cbff3" /src: (run (network host) (shell "opam pin add -yn git-kv.dev './'")) [git-kv.dev] synchronised (file:///src) git-kv is now pinned to file:///src (version dev) 2025-03-06 17:02.14 ---> saved as "db57988787e1febce450eeb3e8fa783af22625000b288882aec17facbfd5e447" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-03-06 17:02.14 ---> saved as "b5a503aebb74c292131f20c4116e574b379635b1fa589842862129aeb49d42f2" /src: (env DEPS "alcotest.1.8.0 angstrom.0.14.0 arp.3.0.0 asn1-combinators.0.2.6 astring.0.8.5 awa.0.1.0 awa-mirage.0.1.0 base.v0.13.0 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.0 bigarray-compat.1.0.0 bigstringaf.0.9.0 bos.0.2.1 ca-certs.0.2.1 ca-certs-nss.3.71.0.1 carton.0.7.0 carton-git.0.7.0 carton-lwt.0.7.0 checkseum.0.3.3 cmdliner.1.2.0 conf-git.1.0 conf-gmp.1 conf-gmp-powm-sec.1 conf-m4.1 conf-perl.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 cstruct.6.1.0 cstruct-lwt.6.1.0 cstruct-sexp.6.1.0 cstruct-unix.6.1.0 decompress.1.4.3 digestif.1.1.2 dns.6.2.0 dns-client.6.2.0 domain-name.0.4.0 duff.0.5 dune.3.0.2 dune-configurator.2.7.0 duration.0.2.0 emile.1.1 encore.0.8 eqaf.0.8 ethernet.3.0.0 faraday.0.7.2 fmt.0.8.10 fpath.0.7.3 functoria-runtime.4.0.0 git.3.10.0 git-mirage.3.10.0 git-paf.3.10.0 git-unix.3.10.0 gmap.0.3.0 h2.0.9.0 happy-eyeballs.0.3.0 happy-eyeballs-lwt.0.3.0 happy-eyeballs-mirage.0.3.0 hex.1.4.0 hkdf.1.0.4 hpack.0.1.0 httpaf.0.7.1 hxd.0.3.2 io-page.2.4.0 ipaddr.5.3.0 ipaddr-sexp.5.3.0 jbuilder.1.0+beta20.1 ke.0.6 logs.0.7.0 lru.0.3.0 lwt.5.6.0 lwt-dllist.1.0.0 macaddr.5.3.0 macaddr-cstruct.5.3.0 metrics.0.1.0 mimic.0.0.5 mimic-happy-eyeballs.0.0.5 mirage-clock.4.1.0 mirage-clock-unix.4.1.0 mirage-crypto.0.10.7 mirage-crypto-ec.0.10.7 mirage-crypto-pk.0.10.7 mirage-crypto-rng.0.10.7 mirage-device.2.0.0 mirage-flow.2.0.1 mirage-kv.6.0.1 mirage-net.3.0.1 mirage-no-solo5.1 mirage-no-xen.1 mirage-profile.0.9.0 mirage-random.2.0.0 mirage-runtime.4.0.0 mirage-time.2.0.1 mirage-unix.5.0.0 mtime.1.2.0 num.1.0 ocaml.4.08.1 ocaml-base-compiler.4.08.1 ocaml-compiler-libs.v0.11.0 ocaml-config.1 ocaml-migrate-parsetree.2.0.0 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocamlgraph.1.8.8 ocplib-endian.1.0 optint.0.2.0 paf.0.2.0 parsexp.v0.13.0 pbkdf.1.2.0 pecu.0.4 ppx_cstruct.6.1.0 ppx_derivers.1.0 ppx_sexp_conv.v0.13.0 ppxlib.0.16.0 psq.0.2.0 ptime.1.0.0 randomconv.0.1.2 re.1.7.2 result.1.5 rresult.0.7.0 seq.0.2.2 sexplib.v0.13.0 sexplib0.v0.13.0 stdlib-shims.0.1.0 stringext.1.4.0 tcpip.7.1.0 tls.0.15.0 tls-mirage.0.15.0 topkg.1.0.3 uchar.0.0.2 uri.4.1.0 uutf.1.0.1 x509.0.16.2 zarith.1.4") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y git-kv.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bookworm InRelease - Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] - Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] - Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [246 kB] - Fetched 349 kB in 1s (456 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [git-kv.dev] synchronised (file:///src) [NOTE] Package ocaml-config is already installed (current version is 1). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.08.1). [NOTE] Package ocaml is already installed (current version is 4.08.1). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following system packages will first need to be installed: libgmp-dev m4 pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "m4" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - 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 ... 18745 files and directories currently installed.) - Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libpkgconf3:amd64. - Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-1) ... - Selecting previously unselected package m4. - Preparing to unpack .../3-m4_1.4.19-3_amd64.deb ... - Unpacking m4 (1.4.19-3) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../4-pkgconf-bin_1.8.1-1_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-1) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../5-pkgconf_1.8.1-1_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-1) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../6-pkg-config_1.8.1-1_amd64.deb ... - Unpacking pkg-config:amd64 (1.8.1-1) ... - Setting up m4 (1.4.19-3) ... - Setting up libpkgconf3:amd64 (1.8.1-1) ... - Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up pkgconf-bin (1.8.1-1) ... - Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up pkgconf:amd64 (1.8.1-1) ... - Setting up pkg-config:amd64 (1.8.1-1) ... - Processing triggers for libc-bin (2.36-9+deb12u9) ... 2025-03-06 17:03.05 ---> saved as "ce51dfb36a880b7d1f4b59baf8f92c77705d85ca8fabaf3335014427e7125cf7" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-config is already installed (current version is 1). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.08.1). [NOTE] Package ocaml is already installed (current version is 4.08.1). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following actions will be performed: === install 132 packages - install alcotest 1.8.0 - install angstrom 0.14.0 - install arp 3.0.0 - install asn1-combinators 0.2.6 - install astring 0.8.5 - install awa 0.1.0 - install awa-mirage 0.1.0 - install base v0.13.0 - install base-bytes base - install base64 3.5.0 - install bigarray-compat 1.0.0 - install bigstringaf 0.9.0 - install bos 0.2.1 - install ca-certs 0.2.1 - install ca-certs-nss 3.71.0.1 - install carton 0.7.0 - install carton-git 0.7.0 - install carton-lwt 0.7.0 - install checkseum 0.3.3 - install cmdliner 1.2.0 - install conf-git 1.0 - install conf-gmp 1 - install conf-gmp-powm-sec 1 - install conf-m4 1 - install conf-perl 1 - install conf-pkg-config 1.0 - install conf-which 1 - install cppo 1.6.1 - install cstruct 6.1.0 - install cstruct-lwt 6.1.0 - install cstruct-sexp 6.1.0 - install cstruct-unix 6.1.0 - install decompress 1.4.3 - install digestif 1.1.2 - install dns 6.2.0 - install dns-client 6.2.0 - install domain-name 0.4.0 - install duff 0.5 - install dune 3.0.2 - install dune-configurator 2.7.0 - install duration 0.2.0 - install emile 1.1 - install encore 0.8 - install eqaf 0.8 - install ethernet 3.0.0 - install faraday 0.7.2 - install fmt 0.8.10 - install fpath 0.7.3 - install functoria-runtime 4.0.0 (deprecated) - install git 3.10.0 - install git-mirage 3.10.0 - install git-paf 3.10.0 - install git-unix 3.10.0 - install gmap 0.3.0 - install h2 0.9.0 - install happy-eyeballs 0.3.0 - install happy-eyeballs-lwt 0.3.0 - install happy-eyeballs-mirage 0.3.0 - install hex 1.4.0 - install hkdf 1.0.4 (deprecated) - install hpack 0.1.0 - install httpaf 0.7.1 - install hxd 0.3.2 - install io-page 2.4.0 - install ipaddr 5.3.0 - install ipaddr-sexp 5.3.0 - install jbuilder 1.0+beta20.1 (deprecated) - install ke 0.6 - install logs 0.7.0 - install lru 0.3.0 - install lwt 5.6.0 - install lwt-dllist 1.0.0 - install macaddr 5.3.0 - install macaddr-cstruct 5.3.0 - install metrics 0.1.0 - install mimic 0.0.5 - install mimic-happy-eyeballs 0.0.5 - install mirage-clock 4.1.0 - install mirage-clock-unix 4.1.0 - install mirage-crypto 0.10.7 - install mirage-crypto-ec 0.10.7 - install mirage-crypto-pk 0.10.7 - install mirage-crypto-rng 0.10.7 - install mirage-device 2.0.0 (deprecated) - install mirage-flow 2.0.1 - install mirage-kv 6.0.1 - install mirage-net 3.0.1 - install mirage-no-solo5 1 (deprecated) - install mirage-no-xen 1 (deprecated) - install mirage-profile 0.9.0 (deprecated) - install mirage-random 2.0.0 (deprecated) - install mirage-runtime 4.0.0 - install mirage-time 2.0.1 - install mirage-unix 5.0.0 - install mtime 1.2.0 - install num 1.0 - install ocaml-compiler-libs v0.11.0 - install ocaml-migrate-parsetree 2.0.0 (deprecated) - install ocaml-syntax-shims 1.0.0 - install ocamlbuild 0.14.0 - install ocamlfind 1.8.1 - install ocamlgraph 1.8.8 - install ocplib-endian 1.0 - install optint 0.2.0 - install paf 0.2.0 - install parsexp v0.13.0 - install pbkdf 1.2.0 - install pecu 0.4 - install ppx_cstruct 6.1.0 - install ppx_derivers 1.0 - install ppx_sexp_conv v0.13.0 - install ppxlib 0.16.0 - install psq 0.2.0 - install ptime 1.0.0 - install randomconv 0.1.2 - install re 1.7.2 - install result 1.5 - install rresult 0.7.0 - install seq 0.2.2 - install sexplib v0.13.0 - install sexplib0 v0.13.0 - install stdlib-shims 0.1.0 - install stringext 1.4.0 - install tcpip 7.1.0 - install tls 0.15.0 - install tls-mirage 0.15.0 - install topkg 1.0.3 - install uchar 0.0.2 - install uri 4.1.0 - install uutf 1.0.1 - install x509 0.16.2 - install zarith 1.4 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved arp.3.0.0 (cached) -> retrieved angstrom.0.14.0 (cached) -> retrieved asn1-combinators.0.2.6 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved alcotest.1.8.0 (cached) -> retrieved awa.0.1.0, awa-mirage.0.1.0 (cached) -> retrieved bigarray-compat.1.0.0 (cached) -> retrieved bigstringaf.0.9.0 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved ca-certs.0.2.1 (cached) -> retrieved base.v0.13.0 (https://ocaml.janestreet.com/ocaml-core/v0.13/files/base-v0.13.0.tar.gz) -> retrieved base64.3.5.0 (https://github.com/mirage/ocaml-base64/releases/download/v3.5.0/base64-v3.5.0.tbz) -> retrieved ca-certs-nss.3.71.0.1 (https://github.com/mirage/ca-certs-nss/releases/download/v3.71.0.1/ca-certs-nss-v3.71.0.1.tbz) -> retrieved cmdliner.1.2.0 (cached) -> retrieved conf-gmp.1 (cached) -> retrieved conf-gmp-powm-sec.1 (cached) -> retrieved cppo.1.6.1 (cached) -> installed conf-gmp.1 -> installed conf-m4.1 -> installed conf-perl.1 -> installed conf-pkg-config.1.0 -> installed conf-which.1 -> installed conf-git.1.0 -> installed conf-gmp-powm-sec.1 -> retrieved carton.0.7.0, carton-git.0.7.0, carton-lwt.0.7.0 (https://github.com/mirage/ocaml-git/releases/download/carton-v0.7.0/git-carton-v0.7.0.tbz) -> retrieved checkseum.0.3.3 (https://github.com/mirage/checkseum/releases/download/v0.3.3/checkseum-0.3.3.tbz) -> retrieved cstruct.6.1.0, cstruct-lwt.6.1.0, cstruct-sexp.6.1.0, cstruct-unix.6.1.0, ppx_cstruct.6.1.0 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.1.0/cstruct-6.1.0.tbz) -> retrieved dns.6.2.0, dns-client.6.2.0 (cached) -> retrieved domain-name.0.4.0 (cached) -> retrieved duff.0.5 (cached) -> retrieved decompress.1.4.3 (https://github.com/mirage/decompress/releases/download/v1.4.3/decompress-1.4.3.tbz) -> retrieved dune.3.0.2 (cached) -> retrieved digestif.1.1.2 (https://github.com/mirage/digestif/releases/download/v1.1.2/digestif-1.1.2.tbz) -> retrieved dune-configurator.2.7.0 (cached) -> retrieved emile.1.1 (cached) -> retrieved duration.0.2.0 (https://github.com/hannesm/duration/releases/download/0.2.0/duration-0.2.0.tbz) -> retrieved encore.0.8 (https://github.com/mirage/encore/releases/download/v0.8/encore-v0.8.tbz) -> retrieved eqaf.0.8 (cached) -> retrieved ethernet.3.0.0 (cached) -> retrieved fmt.0.8.10 (cached) -> retrieved fpath.0.7.3 (cached) -> installed cmdliner.1.2.0 -> retrieved git.3.10.0, git-mirage.3.10.0, git-paf.3.10.0, git-unix.3.10.0 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved faraday.0.7.2 (https://github.com/inhabitedtype/faraday/archive/0.7.2.tar.gz) -> retrieved h2.0.9.0 (cached) -> retrieved functoria-runtime.4.0.0, mirage-runtime.4.0.0 (https://github.com/mirage/mirage/releases/download/v4.0.0/mirage-4.0.0.tbz) -> retrieved hkdf.1.0.4 (cached) -> retrieved happy-eyeballs.0.3.0, happy-eyeballs-lwt.0.3.0, happy-eyeballs-mirage.0.3.0 (https://github.com/robur-coop/happy-eyeballs/releases/download/v0.3.0/happy-eyeballs-0.3.0.tbz) -> retrieved httpaf.0.7.1 (cached) -> retrieved hxd.0.3.2 (cached) -> retrieved io-page.2.4.0 (cached) -> retrieved ipaddr.5.3.0, ipaddr-sexp.5.3.0, macaddr.5.3.0, macaddr-cstruct.5.3.0 (cached) -> retrieved hex.1.4.0 (https://github.com/mirage/ocaml-hex/releases/download/v1.4.0/hex-v1.4.0.tbz) -> retrieved jbuilder.1.0+beta20.1 (cached) -> retrieved ke.0.6 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lru.0.3.0 (cached) -> retrieved lwt-dllist.1.0.0 (cached) -> retrieved metrics.0.1.0 (cached) -> retrieved lwt.5.6.0 (cached) -> retrieved hpack.0.1.0 (https://github.com/anmonteiro/ocaml-h2/releases/download/0.1.0/h2-0.1.0.tbz) -> retrieved mimic.0.0.5, mimic-happy-eyeballs.0.0.5 (cached) -> retrieved mirage-device.2.0.0 (cached) -> retrieved mirage-flow.2.0.1 (cached) -> retrieved mirage-clock.4.1.0, mirage-clock-unix.4.1.0 (https://github.com/mirage/mirage-clock/releases/download/v4.1.0/mirage-clock-4.1.0.tbz) -> retrieved mirage-net.3.0.1 (cached) -> installed mirage-no-solo5.1 -> installed mirage-no-xen.1 -> retrieved mirage-profile.0.9.0 (cached) -> retrieved mirage-random.2.0.0 (cached) -> retrieved mirage-time.2.0.1 (cached) -> 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) -> retrieved mirage-kv.6.0.1 (https://github.com/mirage/mirage-kv/releases/download/v6.0.1/mirage-kv-6.0.1.tbz) -> retrieved num.1.0 (cached) -> retrieved ocaml-compiler-libs.v0.11.0 (cached) -> retrieved ocaml-migrate-parsetree.2.0.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved mtime.1.2.0 (https://erratique.ch/software/mtime/releases/mtime-1.2.0.tbz) -> retrieved ocamlbuild.0.14.0 (cached) -> retrieved mirage-unix.5.0.0 (https://github.com/mirage/mirage-unix/releases/download/v5.0.0/mirage-unix-5.0.0.tbz) -> retrieved ocplib-endian.1.0 (cached) -> retrieved ocamlfind.1.8.1 (http://download.camlcity.org/download/findlib-1.8.1.tar.gz) -> retrieved paf.0.2.0 (cached) -> retrieved ocamlgraph.1.8.8 (https://github.com/backtracking/ocamlgraph/releases/download/v1.8.8/ocamlgraph-1.8.8.tar.gz) -> retrieved pbkdf.1.2.0 (cached) -> retrieved parsexp.v0.13.0 (https://ocaml.janestreet.com/ocaml-core/v0.13/files/parsexp-v0.13.0.tar.gz) -> retrieved pecu.0.4 (cached) -> retrieved ppx_derivers.1.0 (cached) -> retrieved ppxlib.0.16.0 (cached) -> retrieved psq.0.2.0 (cached) -> retrieved optint.0.2.0 (https://github.com/mirage/optint/releases/download/v0.2.0/optint-0.2.0.tbz) -> retrieved ptime.1.0.0 (cached) -> retrieved ppx_sexp_conv.v0.13.0 (https://ocaml.janestreet.com/ocaml-core/v0.13/files/ppx_sexp_conv-v0.13.0.tar.gz) -> retrieved result.1.5 (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved re.1.7.2 (cached) -> retrieved seq.0.2.2 (cached) -> retrieved sexplib0.v0.13.0 (cached) -> retrieved stdlib-shims.0.1.0 (cached) -> retrieved stringext.1.4.0 (cached) -> retrieved sexplib.v0.13.0 (https://ocaml.janestreet.com/ocaml-core/v0.13/files/sexplib-v0.13.0.tar.gz) -> retrieved tls.0.15.0, tls-mirage.0.15.0 (cached) -> retrieved randomconv.0.1.2 (https://github.com/hannesm/randomconv/releases/download/0.1.2/randomconv-0.1.2.tbz) -> retrieved uchar.0.0.2 (cached) -> retrieved topkg.1.0.3 (cached) -> retrieved uutf.1.0.1 (cached) -> retrieved tcpip.7.1.0 (https://github.com/mirage/mirage-tcpip/releases/download/v7.1.0/tcpip-7.1.0.tbz) -> retrieved zarith.1.4 (cached) -> retrieved x509.0.16.2 (https://github.com/mirleft/ocaml-x509/releases/download/v0.16.2/x509-0.16.2.tbz) -> retrieved uri.4.1.0 (https://github.com/mirage/ocaml-uri/releases/download/v4.1.0/uri-v4.1.0.tbz) -> installed ocamlfind.1.8.1 -> installed base-bytes.base -> installed ocamlbuild.0.14.0 -> installed num.1.0 -> installed uchar.0.0.2 -> installed zarith.1.4 -> installed jbuilder.1.0+beta20.1 -> installed ppx_derivers.1.0 -> installed ocaml-compiler-libs.v0.11.0 -> installed cppo.1.6.1 -> installed re.1.7.2 -> installed stringext.1.4.0 -> installed dune.3.0.2 -> installed ocamlgraph.1.8.8 -> installed base64.3.5.0 -> installed bigarray-compat.1.0.0 -> installed bigstringaf.0.9.0 -> installed domain-name.0.4.0 -> installed topkg.1.0.3 -> installed duration.0.2.0 -> installed gmap.0.3.0 -> installed mirage-clock.4.1.0 -> installed result.1.5 -> installed macaddr.5.3.0 -> installed pecu.0.4 -> installed stdlib-shims.0.1.0 -> installed faraday.0.7.2 -> installed seq.0.2.2 -> installed optint.0.2.0 -> installed sexplib0.v0.13.0 -> installed rresult.0.7.0 -> installed angstrom.0.14.0 -> installed ocplib-endian.1.0 -> installed astring.0.8.5 -> installed dune-configurator.2.7.0 -> installed fmt.0.8.10 -> installed hpack.0.1.0 -> installed httpaf.0.7.1 -> installed ipaddr.5.3.0 -> installed mtime.1.2.0 -> installed ocaml-migrate-parsetree.2.0.0 -> installed ocaml-syntax-shims.1.0.0 -> installed psq.0.2.0 -> installed ptime.1.0.0 -> installed uutf.1.0.1 -> installed uri.4.1.0 -> installed mirage-clock-unix.4.1.0 -> installed cstruct.6.1.0 -> installed duff.0.5 -> installed encore.0.8 -> installed functoria-runtime.4.0.0 -> installed ke.0.6 -> installed metrics.0.1.0 -> installed lru.0.3.0 -> installed fpath.0.7.3 -> installed cstruct-unix.6.1.0 -> installed mirage-random.2.0.0 -> installed randomconv.0.1.2 -> installed macaddr-cstruct.5.3.0 -> installed hex.1.4.0 -> installed checkseum.0.3.3 -> installed emile.1.1 -> installed io-page.2.4.0 -> installed eqaf.0.8 -> installed asn1-combinators.0.2.6 -> installed h2.0.9.0 -> installed alcotest.1.8.0 -> installed decompress.1.4.3 -> installed digestif.1.1.2 -> installed mirage-crypto.0.10.7 -> installed hkdf.1.0.4 -> installed pbkdf.1.2.0 -> installed lwt.5.6.0 -> installed lwt-dllist.1.0.0 -> installed cstruct-lwt.6.1.0 -> installed mirage-device.2.0.0 -> installed mirage-flow.2.0.1 -> installed mirage-kv.6.0.1 -> installed mirage-time.2.0.1 -> installed mirage-net.3.0.1 -> installed hxd.0.3.2 -> installed logs.0.7.0 -> installed happy-eyeballs.0.3.0 -> installed mirage-runtime.4.0.0 -> installed mimic.0.0.5 -> installed mirage-crypto-rng.0.10.7 -> installed mirage-unix.5.0.0 -> installed mirage-crypto-pk.0.10.7 -> installed base.v0.13.0 -> installed dns.6.2.0 -> installed bos.0.2.1 -> installed parsexp.v0.13.0 -> installed sexplib.v0.13.0 -> installed carton.0.7.0 -> installed cstruct-sexp.6.1.0 -> installed carton-lwt.0.7.0 -> installed carton-git.0.7.0 -> installed mirage-crypto-ec.0.10.7 -> installed x509.0.16.2 -> installed ca-certs.0.2.1 -> installed git.3.10.0 -> installed ca-certs-nss.3.71.0.1 -> installed ppxlib.0.16.0 -> installed ppx_cstruct.6.1.0 -> installed ppx_sexp_conv.v0.13.0 -> installed mirage-profile.0.9.0 -> installed ipaddr-sexp.5.3.0 -> installed ethernet.3.0.0 -> installed arp.3.0.0 -> installed awa.0.1.0 -> installed awa-mirage.0.1.0 -> installed tls.0.15.0 -> installed tls-mirage.0.15.0 -> installed tcpip.7.1.0 -> installed paf.0.2.0 -> installed dns-client.6.2.0 -> installed git-paf.3.10.0 -> installed happy-eyeballs-mirage.0.3.0 -> installed mimic-happy-eyeballs.0.0.5 -> installed git-mirage.3.10.0 -> installed happy-eyeballs-lwt.0.3.0 -> installed git-unix.3.10.0 Done. <><> ocaml-migrate-parsetree.2.0.0 installed successfully <><><><><><><><><><><> => Note: This package is deprecated. <><> mirage-random.2.0.0 installed successfully <><><><><><><><><><><><><><><><> => Note: This package is deprecated. => mirage-random is deprecated <><> mirage-profile.0.9.0 installed successfully ><><><><><><><><><><><><><><><> => Note: This package is deprecated. => mirage-profile is deprecated <><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><> => Note: This package is deprecated. <><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><> => Note: This package is deprecated. <><> mirage-device.2.0.0 installed successfully <><><><><><><><><><><><><><><><> => Note: This package is deprecated. => mirage-device is deprecated <><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><> => Note: This package is deprecated. <><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><> => Note: This package is deprecated. <><> functoria-runtime.4.0.0 installed successfully <><><><><><><><><><><><><><> => Note: This package is deprecated. # To update the current shell environment, run: eval $(opam env) 2025-03-06 17:05.10 ---> saved as "e6af0c3ae2e8b651c27a6311a17e0dab89cdc5a5b806cff6d555c7c942d295ed" /src: (copy (src .) (dst /src)) 2025-03-06 17:05.11 ---> saved as "0c2f22ad89cbe925171287c366090e1ba2aa8c94bad85bf680ed54a15bfe37eb" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) File "/home/opam/.opam/4.08/lib/re/re.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.08/lib/re/emacs/re.emacs.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.08/lib/re/glob/re.glob.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.08/lib/re/pcre/re.pcre.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.08/lib/re/perl/re.perl.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.08/lib/re/posix/re.posix.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.08/lib/re/str/re.str.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. (cd _build/default && /home/opam/.opam/4.08/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I app/.mgit.eobjs/byte -I /home/opam/.opam/4.08/lib/angstrom -I /home/opam/.opam/4.08/lib/asn1-combinators -I /home/opam/.opam/4.08/lib/astring -I /home/opam/.opam/4.08/lib/awa -I /home/opam/.opam/4.08/lib/awa-mirage -I /home/opam/.opam/4.08/lib/base/caml -I /home/opam/.opam/4.08/lib/base64 -I /home/opam/.opam/4.08/lib/bigarray-compat -I /home/opam/.opam/4.08/lib/bigstringaf -I /home/opam/.opam/4.08/lib/bos -I /home/opam/.opam/4.08/lib/ca-certs -I /home/opam/.opam/4.08/lib/ca-certs-nss -I /home/opam/.opam/4.08/lib/carton -I /home/opam/.opam/4.08/lib/carton-git -I /home/opam/.opam/4.08/lib/carton-lwt -I /home/opam/.opam/4.08/lib/carton/thin -I /home/opam/.opam/4.08/lib/checkseum/c -I /home/opam/.opam/4.08/lib/cmdliner -I /home/opam/.opam/4.08/lib/cstruct -I /home/opam/.opam/4.08/lib/cstruct-sexp -I /home/opam/.opam/4.08/lib/decompress/de -I /home/opam/.opam/4.08/lib/decompress/zl -I /home/opam/.opam/4.08/lib/digestif/c -I /home/opam/.opam/4.08/lib/dns -I /home/opam/.opam/4.08/lib/dns-client -I /home/opam/.opam/4.08/lib/dns-client/lwt -I /home/opam/.opam/4.08/lib/dns-client/mirage -I /home/opam/.opam/4.08/lib/dns-client/resolvconf -I /home/opam/.opam/4.08/lib/dns/cache -I /home/opam/.opam/4.08/lib/domain-name -I /home/opam/.opam/4.08/lib/duff -I /home/opam/.opam/4.08/lib/duration -I /home/opam/.opam/4.08/lib/emile -I /home/opam/.opam/4.08/lib/encore -I /home/opam/.opam/4.08/lib/eqaf -I /home/opam/.opam/4.08/lib/eqaf/bigstring -I /home/opam/.opam/4.08/lib/eqaf/cstruct -I /home/opam/.opam/4.08/lib/faraday -I /home/opam/.opam/4.08/lib/fmt -I /home/opam/.opam/4.08/lib/fpath -I /home/opam/.opam/4.08/lib/functoria-runtime -I /home/opam/.opam/4.08/lib/git -I /home/opam/.opam/4.08/lib/git-mirage/http -I /home/opam/.opam/4.08/lib/git-mirage/ssh -I /home/opam/.opam/4.08/lib/git-mirage/tcp -I /home/opam/.opam/4.08/lib/git-paf -I /home/opam/.opam/4.08/lib/git-unix -I /home/opam/.opam/4.08/lib/git/loose -I /home/opam/.opam/4.08/lib/git/loose-git -I /home/opam/.opam/4.08/lib/git/nss -I /home/opam/.opam/4.08/lib/git/nss/git -I /home/opam/.opam/4.08/lib/git/nss/hkt -I /home/opam/.opam/4.08/lib/git/nss/neg -I /home/opam/.opam/4.08/lib/git/nss/pck -I /home/opam/.opam/4.08/lib/git/nss/pkt-line -I /home/opam/.opam/4.08/lib/git/nss/sigs -I /home/opam/.opam/4.08/lib/git/nss/smart -I /home/opam/.opam/4.08/lib/git/nss/smart-flow -I /home/opam/.opam/4.08/lib/git/nss/unixiz -I /home/opam/.opam/4.08/lib/gmap -I /home/opam/.opam/4.08/lib/happy-eyeballs -I /home/opam/.opam/4.08/lib/happy-eyeballs-lwt -I /home/opam/.opam/4.08/lib/happy-eyeballs-mirage -I /home/opam/.opam/4.08/lib/hex -I /home/opam/.opam/4.08/lib/hkdf -I /home/opam/.opam/4.08/lib/httpaf -I /home/opam/.opam/4.08/lib/hxd/core -I /home/opam/.opam/4.08/lib/hxd/string -I /home/opam/.opam/4.08/lib/io-page -I /home/opam/.opam/4.08/lib/ipaddr -I /home/opam/.opam/4.08/lib/ipaddr-sexp -I /home/opam/.opam/4.08/lib/ipaddr/unix -I /home/opam/.opam/4.08/lib/ke -I /home/opam/.opam/4.08/lib/logs -I /home/opam/.opam/4.08/lib/lru -I /home/opam/.opam/4.08/lib/lwt -I /home/opam/.opam/4.08/lib/lwt/unix -I /home/opam/.opam/4.08/lib/macaddr -I /home/opam/.opam/4.08/lib/metrics -I /home/opam/.opam/4.08/lib/mimic -I /home/opam/.opam/4.08/lib/mimic-happy-eyeballs -I /home/opam/.opam/4.08/lib/mirage-clock -I /home/opam/.opam/4.08/lib/mirage-clock-unix -I /home/opam/.opam/4.08/lib/mirage-crypto -I /home/opam/.opam/4.08/lib/mirage-crypto-ec -I /home/opam/.opam/4.08/lib/mirage-crypto-pk -I /home/opam/.opam/4.08/lib/mirage-crypto-rng -I /home/opam/.opam/4.08/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.08/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.08/lib/mirage-flow -I /home/opam/.opam/4.08/lib/mirage-kv -I /home/opam/.opam/4.08/lib/mirage-random -I /home/opam/.opam/4.08/lib/mirage-runtime -I /home/opam/.opam/4.08/lib/mirage-time -I /home/opam/.opam/4.08/lib/mirage-unix -I /home/opam/.opam/4.08/lib/mtime -I /home/opam/.opam/4.08/lib/mtime/os -I /home/opam/.opam/4.08/lib/ocaml/threads -I /home/opam/.opam/4.08/lib/ocamlgraph -I /home/opam/.opam/4.08/lib/ocplib-endian -I /home/opam/.opam/4.08/lib/optint -I /home/opam/.opam/4.08/lib/paf -I /home/opam/.opam/4.08/lib/parsexp -I /home/opam/.opam/4.08/lib/pbkdf -I /home/opam/.opam/4.08/lib/pecu -I /home/opam/.opam/4.08/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.08/lib/psq -I /home/opam/.opam/4.08/lib/ptime -I /home/opam/.opam/4.08/lib/ptime/clock/os -I /home/opam/.opam/4.08/lib/randomconv -I /home/opam/.opam/4.08/lib/result -I /home/opam/.opam/4.08/lib/rresult -I /home/opam/.opam/4.08/lib/seq -I /home/opam/.opam/4.08/lib/sexplib -I /home/opam/.opam/4.08/lib/sexplib0 -I /home/opam/.opam/4.08/lib/stdlib-shims -I /home/opam/.opam/4.08/lib/stringext -I /home/opam/.opam/4.08/lib/tcpip -I /home/opam/.opam/4.08/lib/tls -I /home/opam/.opam/4.08/lib/tls-mirage -I /home/opam/.opam/4.08/lib/tls/lwt -I /home/opam/.opam/4.08/lib/uchar -I /home/opam/.opam/4.08/lib/uri -I /home/opam/.opam/4.08/lib/uutf -I /home/opam/.opam/4.08/lib/x509 -I /home/opam/.opam/4.08/lib/zarith -I src/.git_kv.objs/byte -no-alias-deps -opaque -o app/.mgit.eobjs/byte/dune__exe__Mgit.cmo -c -impl app/mgit.ml) File "app/mgit.ml", line 185, characters 45-79: 185 | let () = Mirage_crypto_rng_unix.initialize (module Mirage_crypto_rng.Fortuna) in ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Error: This expression is packed module, but the expected type is unit (cd _build/default && /home/opam/.opam/4.08/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/tests.exe /home/opam/.opam/4.08/lib/hxd/core/hxd.cmxa /home/opam/.opam/4.08/lib/hxd/string/hxd_string.cmxa /home/opam/.opam/4.08/lib/logs/logs.cmxa /home/opam/.opam/4.08/lib/fmt/fmt.cmxa -I /home/opam/.opam/4.08/lib/ocaml /home/opam/.opam/4.08/lib/lwt/lwt.cmxa /home/opam/.opam/4.08/lib/cstruct/cstruct.cmxa -I /home/opam/.opam/4.08/lib/cstruct /home/opam/.opam/4.08/lib/mirage-flow/mirage_flow.cmxa /home/opam/.opam/4.08/lib/mimic/mimic.cmxa /home/opam/.opam/4.08/lib/rresult/rresult.cmxa /home/opam/.opam/4.08/lib/git/nss/sigs/sigs.cmxa /home/opam/.opam/4.08/lib/seq/seq.cmxa /home/opam/.opam/4.08/lib/psq/psq.cmxa /home/opam/.opam/4.08/lib/astring/astring.cmxa /home/opam/.opam/4.08/lib/git/nss/pkt-line/pkt_line.cmxa /home/opam/.opam/4.08/lib/result/result.cmxa /home/opam/.opam/4.08/lib/macaddr/macaddr.cmxa /home/opam/.opam/4.08/lib/domain-name/domain_name.cmxa /home/opam/.opam/4.08/lib/stdlib-shims/stdlib_shims.cmxa /home/opam/.opam/4.08/lib/ipaddr/ipaddr.cmxa /home/opam/.opam/4.08/lib/git/nss/smart/smart.cmxa /home/opam/.opam/4.08/lib/git/nss/pck/pck.cmxa /home/opam/.opam/4.08/lib/optint/optint.cmxa /home/opam/.opam/4.08/lib/ke/ke.cmxa /home/opam/.opam/4.08/lib/duff/duff.cmxa /home/opam/.opam/4.08/lib/checkseum/c/checkseum_c.cmxa -I /home/opam/.opam/4.08/lib/checkseum/c /home/opam/.opam/4.08/lib/decompress/de/de.cmxa /home/opam/.opam/4.08/lib/decompress/zl/zl.cmxa /home/opam/.opam/4.08/lib/bigstringaf/bigstringaf.cmxa -I /home/opam/.opam/4.08/lib/bigstringaf /home/opam/.opam/4.08/lib/carton/carton.cmxa /home/opam/.opam/4.08/lib/git/loose/loose.cmxa /home/opam/.opam/4.08/lib/angstrom/angstrom.cmxa /home/opam/.opam/4.08/lib/base64/base64.cmxa /home/opam/.opam/4.08/lib/git/nss/unixiz/unixiz.cmxa /home/opam/.opam/4.08/lib/uutf/uutf.cmxa /home/opam/.opam/4.08/lib/pecu/pecu.cmxa /home/opam/.opam/4.08/lib/emile/emile.cmxa /home/opam/.opam/4.08/lib/stringext/stringext.cmxa /home/opam/.opam/4.08/lib/uri/uri.cmxa /home/opam/.opam/4.08/lib/git/nss/smart-flow/smart_flow.cmxa /home/opam/.opam/4.08/lib/git/nss/neg/neg.cmxa /home/opam/.opam/4.08/lib/git/nss/nss.cmxa /home/opam/.opam/4.08/lib/eqaf/eqaf.cmxa /home/opam/.opam/4.08/lib/digestif/c/digestif_c.cmxa -I /home/opam/.opam/4.08/lib/digestif/c /home/opam/.opam/4.08/lib/carton/thin/thin.cmxa /home/opam/.opam/4.08/lib/carton-lwt/carton_lwt.cmxa /home/opam/.opam/4.08/lib/git/nss/git/smart_git.cmxa /home/opam/.opam/4.08/lib/git/nss/hkt/hkt.cmxa /home/opam/.opam/4.08/lib/ocamlgraph/graph.cmxa /home/opam/.opam/4.08/lib/fpath/fpath.cmxa /home/opam/.opam/4.08/lib/git/loose-git/loose_git.cmxa /home/opam/.opam/4.08/lib/carton-git/carton_git.cmxa /home/opam/.opam/4.08/lib/encore/encore.cmxa /home/opam/.opam/4.08/lib/git/git.cmxa /home/opam/.opam/4.08/lib/ptime/ptime.cmxa /home/opam/.opam/4.08/lib/mirage-clock/mirage_clock.cmxa /home/opam/.opam/4.08/lib/mirage-kv/mirage_kv.cmxa src/git_kv.cmxa /home/opam/.opam/4.08/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.08/lib/alcotest/stdlib_ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.08/lib/fmt/fmt_cli.cmxa /home/opam/.opam/4.08/lib/re/re.cmxa /home/opam/.opam/4.08/lib/alcotest/engine/alcotest_engine.cmxa /home/opam/.opam/4.08/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.08/lib/ocaml /home/opam/.opam/4.08/lib/fmt/fmt_tty.cmxa /home/opam/.opam/4.08/lib/alcotest/alcotest.cmxa -I /home/opam/.opam/4.08/lib/alcotest /home/opam/.opam/4.08/lib/bos/bos.cmxa /home/opam/.opam/4.08/lib/mirage-clock-unix/mirage_clock_unix.cmxa -I /home/opam/.opam/4.08/lib/mirage-clock-unix /home/opam/.opam/4.08/lib/ocaml/bigarray.cmxa -I /home/opam/.opam/4.08/lib/ocaml /home/opam/.opam/4.08/lib/ocplib-endian/bigstring.cmxa /home/opam/.opam/4.08/lib/ocaml/threads/threads.cmxa -I /home/opam/.opam/4.08/lib/ocaml /home/opam/.opam/4.08/lib/lwt/unix/lwt_unix.cmxa -I /home/opam/.opam/4.08/lib/lwt/unix /home/opam/.opam/4.08/lib/duration/duration.cmxa /home/opam/.opam/4.08/lib/tcpip/tcpip.cmxa -I /home/opam/.opam/4.08/lib/tcpip /home/opam/.opam/4.08/lib/mirage-random/mirage_random.cmxa /home/opam/.opam/4.08/lib/mirage-time/mirage_time.cmxa /home/opam/.opam/4.08/lib/gmap/gmap.cmxa /home/opam/.opam/4.08/lib/metrics/metrics.cmxa /home/opam/.opam/4.08/lib/dns/dns.cmxa /home/opam/.opam/4.08/lib/lru/lru.cmxa /home/opam/.opam/4.08/lib/dns/cache/dns_cache.cmxa /home/opam/.opam/4.08/lib/randomconv/randomconv.cmxa /home/opam/.opam/4.08/lib/dns-client/dns_client.cmxa /home/opam/.opam/4.08/lib/happy-eyeballs/happy_eyeballs.cmxa /home/opam/.opam/4.08/lib/sexplib0/sexplib0.cmxa /home/opam/.opam/4.08/lib/base/caml/caml.cmxa /home/opam/.opam/4.08/lib/parsexp/parsexp.cmxa /home/opam/.opam/4.08/lib/sexplib/sexplib.cmxa /home/opam/.opam/4.08/lib/cstruct-sexp/cstruct_sexp.cmxa /home/opam/.opam/4.08/lib/eqaf/bigstring/eqaf_bigstring.cmxa /home/opam/.opam/4.08/lib/eqaf/cstruct/eqaf_cstruct.cmxa /home/opam/.opam/4.08/lib/mirage-crypto/mirage_crypto.cmxa -I /home/opam/.opam/4.08/lib/mirage-crypto /home/opam/.opam/4.08/lib/hkdf/hkdf.cmxa /home/opam/.opam/4.08/lib/mirage-crypto-rng/mirage_crypto_rng.cmxa /home/opam/.opam/4.08/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.08/lib/zarith /home/opam/.opam/4.08/lib/mirage-crypto-pk/mirage_crypto_pk.cmxa /home/opam/.opam/4.08/lib/asn1-combinators/asn1_combinators.cmxa /home/opam/.opam/4.08/lib/mirage-crypto-ec/mirage_crypto_ec.cmxa -I /home/opam/.opam/4.08/lib/mirage-crypto-ec /home/opam/.opam/4.08/lib/pbkdf/pbkdf.cmxa /home/opam/.opam/4.08/lib/x509/x509.cmxa /home/opam/.opam/4.08/lib/ppx_sexp_conv/runtime-lib/ppx_sexp_conv_lib.cmxa /home/opam/.opam/4.08/lib/ipaddr-sexp/ipaddr_sexp.cmxa /home/opam/.opam/4.08/lib/tls/tls.cmxa /home/opam/.opam/4.08/lib/tls-mirage/tls_mirage.cmxa /home/opam/.opam/4.08/lib/ca-certs-nss/ca_certs_nss.cmxa /home/opam/.opam/4.08/lib/dns-client/mirage/dns_client_mirage.cmxa /home/opam/.opam/4.08/lib/happy-eyeballs-mirage/happy_eyeballs_mirage.cmxa /home/opam/.opam/4.08/lib/mimic-happy-eyeballs/mimic_happy_eyeballs.cmxa /home/opam/.opam/4.08/lib/git-mirage/tcp/git_mirage_tcp.cmxa /home/opam/.opam/4.08/lib/mtime/mtime.cmxa /home/opam/.opam/4.08/lib/awa/awa.cmxa /home/opam/.opam/4.08/lib/awa-mirage/awa_mirage.cmxa /home/opam/.opam/4.08/lib/git-mirage/ssh/git_mirage_ssh.cmxa /home/opam/.opam/4.08/lib/faraday/faraday.cmxa /home/opam/.opam/4.08/lib/paf/paf.cmxa /home/opam/.opam/4.08/lib/httpaf/httpaf.cmxa /home/opam/.opam/4.08/lib/git-paf/git_paf.cmxa /home/opam/.opam/4.08/lib/bigarray-compat/bigarray_compat.cmxa /home/opam/.opam/4.08/lib/hex/hex.cmxa /home/opam/.opam/4.08/lib/git-mirage/http/git_mirage_http.cmxa /home/opam/.opam/4.08/lib/functoria-runtime/functoria_runtime.cmxa /home/opam/.opam/4.08/lib/mirage-runtime/mirage_runtime.cmxa /home/opam/.opam/4.08/lib/io-page/io_page.cmxa -I /home/opam/.opam/4.08/lib/io-page /home/opam/.opam/4.08/lib/mirage-unix/unix_os.cmxa /home/opam/.opam/4.08/lib/dns-client/resolvconf/dns_resolvconv.cmxa /home/opam/.opam/4.08/lib/mtime/os/mtime_clock.cmxa -I /home/opam/.opam/4.08/lib/mtime/os /home/opam/.opam/4.08/lib/mirage-crypto-rng/unix/mirage_crypto_rng_unix.cmxa -I /home/opam/.opam/4.08/lib/mirage-crypto-rng/unix /home/opam/.opam/4.08/lib/mirage-crypto-rng/lwt/mirage_crypto_rng_lwt.cmxa /home/opam/.opam/4.08/lib/ipaddr/unix/ipaddr_unix.cmxa /home/opam/.opam/4.08/lib/ptime/clock/os/ptime_clock.cmxa -I /home/opam/.opam/4.08/lib/ptime/clock/os /home/opam/.opam/4.08/lib/tls/lwt/tls_lwt.cmxa /home/opam/.opam/4.08/lib/ca-certs/ca_certs.cmxa -I /home/opam/.opam/4.08/lib/ca-certs /home/opam/.opam/4.08/lib/dns-client/lwt/dns_client_lwt.cmxa /home/opam/.opam/4.08/lib/happy-eyeballs-lwt/happy_eyeballs_lwt.cmxa /home/opam/.opam/4.08/lib/logs/logs_fmt.cmxa /home/opam/.opam/4.08/lib/git-unix/git_unix.cmxa test/.tests.eobjs/native/dune__exe__Tests.cmx) /usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack /usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker (cd _build/default/test && ./tests.exe) Testing `Git-KV alcotest tests'. This run has ID `FBCDRMMK'. [OK] Basic tests 0 Read in change_and_push. [OK] Basic tests 1 Set outside change_and_push. [OK] Basic tests 2 Remove in change_and_push. [OK] Basic tests 3 Last modified in change_and_push. [OK] Basic tests 4 Digest in change_and_push. [OK] Basic tests 5 Multiple change_and_push. Full test results in `/src/_build/default/test/_build/_tests/Git-KV alcotest tests'. Test Successful in 0.867s. 6 tests run. "/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-03-06 17:05.15: Job failed: Failed: Build failed