2025-08-20 17:10.47: New job: test mirage/charrua https://github.com/mirage/charrua.git#refs/heads/main (efb8f93144176662567c5e2f6332e9ff51057d3e) (linux-x86_64:(lint-doc))Base: ocaml/opam:alpine-3.21-ocaml-4.14@sha256:acda27c7e9ff770f0e09f53d730162c8ebf0f21b0ddc57f73b4cd1cf27c4af6dOpam project lint documentationTo reproduce locally:git clone --recursive "https://github.com/mirage/charrua.git" -b "main" && cd "charrua" && git reset --hard efb8f931cat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:alpine-3.21-ocaml-4.14@sha256:acda27c7e9ff770f0e09f53d730162c8ebf0f21b0ddc57f73b4cd1cf27c4af6d# alpine-3.21-4.14_opam-2.4USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"WORKDIR /srcRUN sudo ln -f /usr/bin/opam-2.2 /usr/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionWORKDIR /srcRUN sudo chown opam /srcRUN cd ~/opam-repository && (git cat-file -e f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 charrua.opam charrua-unix.opam charrua-server.opam charrua-client.opam ./RUN opam pin add -yn charrua.dev './' && \opam pin add -yn charrua-unix.dev './' && \opam pin add -yn charrua-server.dev './' && \opam pin add -yn charrua-client.dev './'RUN echo '(lang dune 3.0)' > './dune-project'ENV DEPS="alcotest.1.9.0 arp.4.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.3.0 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 cstruct-lwt.6.2.0 cstruct-unix.6.2.0 digestif.1.3.0 domain-name.0.4.1 dune.3.20.0 dune-configurator.3.20.0 duration.0.2.1 eqaf.0.10 ethernet.3.2.0 fmt.0.11.0 ipaddr.5.6.1 ipaddr-cstruct.5.6.1 logs.0.9.0 lru.0.3.1 lwt.5.9.1 lwt-dllist.1.1.0 lwt_log.1.1.2 macaddr.5.6.1 macaddr-cstruct.5.6.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 metrics.0.5.0 mirage-crypto.2.0.1 mirage-crypto-rng.2.0.1 mirage-flow.5.0.0 mirage-mtime.5.0.0 mirage-net.4.0.0 mirage-sleep.4.0.0 mtime.2.1.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.16.0 ppx_cstruct.6.2.0 ppx_derivers.1.2.1 ppxlib.0.36.0 psq.0.2.1 randomconv.0.2.0 rawlink.2.1 rawlink-lwt.2.1 re.1.13.2 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdlib-shims.0.3.0 tcpip.9.0.1 topkg.1.1.0 tuntap.2.0.1 uutf.1.0.4"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.2 --depext-only -y charrua.dev charrua-unix.dev charrua-server.dev charrua-client.dev $DEPSRUN opam install $DEPSRUN opam install --yes dune 'odoc>=1.5.0'COPY --chown=1000:1000 . /src/RUN ODOC_WARN_ERROR=false opam exec -- dune build @doc || (echo "dune build @doc failed"; exit 2)END-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2025-08-20 17:10.47: Using cache hint "mirage/charrua-ocaml/opam:alpine-3.21-ocaml-4.14@sha256:acda27c7e9ff770f0e09f53d730162c8ebf0f21b0ddc57f73b4cd1cf27c4af6d-alpine-3.21-4.14_opam-2.4-4475d033acdef7fa7f60d567b85c3334"2025-08-20 17:10.47: Using OBuilder spec:((from ocaml/opam:alpine-3.21-ocaml-4.14@sha256:acda27c7e9ff770f0e09f53d730162c8ebf0f21b0ddc57f73b4cd1cf27c4af6d)(comment alpine-3.21-4.14_opam-2.4)(user (uid 1000) (gid 1000))(env CLICOLOR_FORCE 1)(env OPAMCOLOR always)(workdir /src)(run (shell "sudo ln -f /usr/bin/opam-2.2 /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 f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -u"))(copy (src charrua.opam charrua-unix.opam charrua-server.opam charrua-client.opam)(dst ./))(run (network host)(shell "opam pin add -yn charrua.dev './' && \\nopam pin add -yn charrua-unix.dev './' && \\nopam pin add -yn charrua-server.dev './' && \\nopam pin add -yn charrua-client.dev './'"))(run (network host)(shell "echo '(lang dune 3.0)' > './dune-project'"))(env DEPS "alcotest.1.9.0 arp.4.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.3.0 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 cstruct-lwt.6.2.0 cstruct-unix.6.2.0 digestif.1.3.0 domain-name.0.4.1 dune.3.20.0 dune-configurator.3.20.0 duration.0.2.1 eqaf.0.10 ethernet.3.2.0 fmt.0.11.0 ipaddr.5.6.1 ipaddr-cstruct.5.6.1 logs.0.9.0 lru.0.3.1 lwt.5.9.1 lwt-dllist.1.1.0 lwt_log.1.1.2 macaddr.5.6.1 macaddr-cstruct.5.6.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 metrics.0.5.0 mirage-crypto.2.0.1 mirage-crypto-rng.2.0.1 mirage-flow.5.0.0 mirage-mtime.5.0.0 mirage-net.4.0.0 mirage-sleep.4.0.0 mtime.2.1.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.16.0 ppx_cstruct.6.2.0 ppx_derivers.1.2.1 ppxlib.0.36.0 psq.0.2.1 randomconv.0.2.0 rawlink.2.1 rawlink-lwt.2.1 re.1.13.2 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdlib-shims.0.3.0 tcpip.9.0.1 topkg.1.1.0 tuntap.2.0.1 uutf.1.0.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.2 --depext-only -y charrua.dev charrua-unix.dev charrua-server.dev charrua-client.dev $DEPS"))(run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam install $DEPS"))(run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam install --yes dune 'odoc>=1.5.0'"))(copy (src .) (dst /src/))(run (shell "ODOC_WARN_ERROR=false opam exec -- dune build @doc || (echo \"dune build @doc failed\"; exit 2)")))2025-08-20 17:10.47: Waiting for resource in pool OCluster2025-08-20 19:57.41: Waiting for worker…2025-08-20 20:00.26: Got resource from pool OClusterBuilding on odawa.caelum.ci.devAll commits already cachedHEAD is now at efb8f93 changes for 2.0.0(from ocaml/opam:alpine-3.21-ocaml-4.14@sha256:acda27c7e9ff770f0e09f53d730162c8ebf0f21b0ddc57f73b4cd1cf27c4af6d)2025-08-20 20:00.27 ---> using "ea47f485ac5e3de6005676b139eead37b27580d3656da4cbc3286dafdec05f07" from cache/: (comment alpine-3.21-4.14_opam-2.4)/: (user (uid 1000) (gid 1000))/: (env CLICOLOR_FORCE 1)/: (env OPAMCOLOR always)/: (workdir /src)/src: (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))2025-08-20 20:00.27 ---> using "0a410955a2e3decb2c3c7c43536c0bf9017ce0d65727376b0091f906550447e5" from cache/src: (run (shell "opam init --reinit -ni"))Configuring from /home/opam/.opamrc and then from built-in defaults.Checking for available remotes: rsync and local, git.- you won't be able to use mercurial repositories unless you install the hg command on your system.- you won't be able to use darcs repositories unless you install the darcs command on your system.This 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.Continue? [y/n] yFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2025-08-20 20:00.27 ---> using "c75d1552cf10fa116baa6062a0e580c244e157fe15416960b25666d40121d3d6" from cache/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Linux 6.8.0-60-genericThe OCaml toplevel, version 4.14.22.2.12025-08-20 20:00.27 ---> using "6e6019031024ba74fba436abe33c519f223fc24c973f4b0550eef41adeb77209" from cache/src: (workdir /src)/src: (run (shell "sudo chown opam /src"))2025-08-20 20:00.27 ---> using "a38ff493994e0d70ad73f381e536174a68bf479d76a34bf99172c88d2df40008" from cache/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "cd ~/opam-repository && (git cat-file -e f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 || git fetch origin master) && git reset -q --hard f9d23e5cb169337cdf0aac6321e4ec46f6f64a74 && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEADee8b9193dd..0978bfceb7 master -> origin/masterf9d23e5cb1 Merge pull request #28357 from maiste/release-dune-3.20.0<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///home/opam/opam-repositoryEverything 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.# Run eval $(opam env) to update the current shell environment2025-08-20 20:00.27 ---> using "8fcb87c6a24ba5d5985b1b99b0ba9d575f19e75fb06f9882477d2dcdd743bb44" from cache/src: (copy (src charrua.opam charrua-unix.opam charrua-server.opam charrua-client.opam)(dst ./))2025-08-20 20:00.27 ---> saved as "19be563909104e7531f4754a55c9f64ac1252647b0e30d9c0d0962aaf5c61e81"/src: (run (network host)(shell "opam pin add -yn charrua.dev './' && \\nopam pin add -yn charrua-unix.dev './' && \\nopam pin add -yn charrua-server.dev './' && \\nopam pin add -yn charrua-client.dev './'"))[charrua.dev] synchronised (file:///src)charrua is now pinned to file:///src (version dev)[charrua-unix.dev] synchronised (file:///src)charrua-unix is now pinned to file:///src (version dev)[charrua-server.dev] synchronised (file:///src)charrua-server is now pinned to file:///src (version dev)[charrua-client.dev] synchronised (file:///src)charrua-client is now pinned to file:///src (version dev)2025-08-20 20:00.34 ---> saved as "f689dfeb7c3330e26ba4fc24a5082f730979b544ab5092d5ee6ae595f99be514"/src: (run (network host)(shell "echo '(lang dune 3.0)' > './dune-project'"))2025-08-20 20:00.34 ---> saved as "c3c772ea5525490969b7b720e1ba357e33960b86d464dbbdac6dfd0499597a47"/src: (env DEPS "alcotest.1.9.0 arp.4.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.3.0 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 cstruct-lwt.6.2.0 cstruct-unix.6.2.0 digestif.1.3.0 domain-name.0.4.1 dune.3.20.0 dune-configurator.3.20.0 duration.0.2.1 eqaf.0.10 ethernet.3.2.0 fmt.0.11.0 ipaddr.5.6.1 ipaddr-cstruct.5.6.1 logs.0.9.0 lru.0.3.1 lwt.5.9.1 lwt-dllist.1.1.0 lwt_log.1.1.2 macaddr.5.6.1 macaddr-cstruct.5.6.1 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 metrics.0.5.0 mirage-crypto.2.0.1 mirage-crypto-rng.2.0.1 mirage-flow.5.0.0 mirage-mtime.5.0.0 mirage-net.4.0.0 mirage-sleep.4.0.0 mtime.2.1.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 parsexp.v0.16.0 ppx_cstruct.6.2.0 ppx_derivers.1.2.1 ppxlib.0.36.0 psq.0.2.1 randomconv.0.2.0 rawlink.2.1 rawlink-lwt.2.1 re.1.13.2 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 stdlib-shims.0.3.0 tcpip.9.0.1 topkg.1.1.0 tuntap.2.0.1 uutf.1.0.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.2 --depext-only -y charrua.dev charrua-unix.dev charrua-server.dev charrua-client.dev $DEPS"))+ /usr/bin/sudo "apk" "update"- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/main/x86_64/APKINDEX.tar.gz- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/community/x86_64/APKINDEX.tar.gz- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz- v3.21.4-59-geb0cdb4e743 [https://dl-cdn.alpinelinux.org/alpine/v3.21/main]- v3.21.4-54-g305cb9724dc [https://dl-cdn.alpinelinux.org/alpine/v3.21/community]- v3.23.0_alpha20250612-4825-g58f606fe683 [https://dl-cdn.alpinelinux.org/alpine/edge/main]- v3.23.0_alpha20250612-4825-g58f606fe683 [https://dl-cdn.alpinelinux.org/alpine/edge/community]- v3.23.0_alpha20250612-4814-g5179ebb6491 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]- OK: 59362 distinct packages available<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>[charrua.dev] synchronised (file:///src)[charrua-client.dev] synchronised (file:///src)[charrua-server.dev] synchronised (file:///src)[charrua-unix.dev] synchronised (file:///src)[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).[NOTE] Package ocaml-config is already installed (current version is 2).[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).[NOTE] Package ocaml is already installed (current version is 4.14.2).[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:linux-headers<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>+ /usr/bin/sudo "apk" "add" "linux-headers"- (1/1) Installing linux-headers (6.6-r1)- OK: 311 MiB in 102 packages2025-08-20 20:00.44 ---> saved as "868717a5ec6f5d81b07614c47b93828c9c7372150c02b842a9a83f2546b72e29"/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam install $DEPS"))[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).[NOTE] Package ocaml-config is already installed (current version is 2).[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).[NOTE] Package ocaml is already installed (current version is 4.14.2).[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 63 packages- install alcotest 1.9.0- install arp 4.0.0- install astring 0.8.5- install base-bytes base- install cmdliner 1.3.0- install cppo 1.8.0- install csexp 1.5.2- install cstruct 6.2.0- install cstruct-lwt 6.2.0- install cstruct-unix 6.2.0- install digestif 1.3.0- install domain-name 0.4.1- install dune 3.20.0- install dune-configurator 3.20.0- install duration 0.2.1- install eqaf 0.10- install ethernet 3.2.0- install fmt 0.11.0- install ipaddr 5.6.1- install ipaddr-cstruct 5.6.1- install logs 0.9.0- install lru 0.3.1- install lwt 5.9.1- install lwt-dllist 1.1.0- install lwt_log 1.1.2- install macaddr 5.6.1- install macaddr-cstruct 5.6.1- install menhir 20240715- install menhirCST 20240715- install menhirLib 20240715- install menhirSdk 20240715- install metrics 0.5.0- install mirage-crypto 2.0.1- install mirage-crypto-rng 2.0.1- install mirage-flow 5.0.0- install mirage-mtime 5.0.0- install mirage-net 4.0.0- install mirage-sleep 4.0.0- install mtime 2.1.0- install num 1.6- install ocaml-compiler-libs v0.12.4- install ocaml-syntax-shims 1.0.0- install ocamlbuild 0.16.1- install ocamlfind 1.9.8- install ocplib-endian 1.2- install ohex 0.2.0- install parsexp v0.16.0- install ppx_cstruct 6.2.0- install ppx_derivers 1.2.1- install ppxlib 0.36.0- install psq 0.2.1- install randomconv 0.2.0- install rawlink 2.1- install rawlink-lwt 2.1- install re 1.13.2- install seq base- install sexplib v0.16.0- install sexplib0 v0.16.0- install stdlib-shims 0.3.0- install tcpip 9.0.1- install topkg 1.1.0- install tuntap 2.0.1- install uutf 1.0.4<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved arp.4.0.0 (cached)-> retrieved astring.0.8.5 (cached)-> retrieved cmdliner.1.3.0 (cached)-> retrieved alcotest.1.9.0 (cached)-> retrieved cppo.1.8.0 (cached)-> retrieved csexp.1.5.2 (cached)-> retrieved domain-name.0.4.1 (cached)-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0, cstruct-unix.6.2.0, ppx_cstruct.6.2.0 (cached)-> retrieved duration.0.2.1 (cached)-> retrieved eqaf.0.10 (cached)-> retrieved ethernet.3.2.0 (cached)-> retrieved fmt.0.11.0 (cached)-> retrieved ipaddr.5.6.1, ipaddr-cstruct.5.6.1, macaddr.5.6.1, macaddr-cstruct.5.6.1 (cached)-> retrieved logs.0.9.0 (cached)-> retrieved lru.0.3.1 (cached)-> retrieved lwt.5.9.1 (cached)-> retrieved lwt-dllist.1.1.0 (cached)-> retrieved lwt_log.1.1.2 (cached)-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)-> retrieved digestif.1.3.0 (cached)-> retrieved dune.3.20.0, dune-configurator.3.20.0 (cached)-> retrieved metrics.0.5.0 (cached)-> retrieved mirage-crypto.2.0.1, mirage-crypto-rng.2.0.1 (cached)-> retrieved mirage-flow.5.0.0 (cached)-> retrieved mirage-mtime.5.0.0 (cached)-> retrieved mirage-net.4.0.0 (cached)-> retrieved mirage-sleep.4.0.0 (cached)-> retrieved mtime.2.1.0 (cached)-> retrieved num.1.6 (cached)-> installed cmdliner.1.3.0-> retrieved ocaml-compiler-libs.v0.12.4 (cached)-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved ocamlbuild.0.16.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ocplib-endian.1.2 (cached)-> retrieved ohex.0.2.0 (cached)-> retrieved parsexp.v0.16.0 (cached)-> retrieved ppx_derivers.1.2.1 (cached)-> retrieved psq.0.2.1 (cached)-> retrieved randomconv.0.2.0 (cached)-> retrieved rawlink.2.1, rawlink-lwt.2.1 (cached)-> retrieved seq.base (cached)-> installed seq.base-> retrieved re.1.13.2 (cached)-> retrieved sexplib.v0.16.0 (cached)-> retrieved sexplib0.v0.16.0 (cached)-> retrieved stdlib-shims.0.3.0 (cached)-> retrieved tcpip.9.0.1 (cached)-> retrieved ppxlib.0.36.0 (cached)-> retrieved topkg.1.1.0 (cached)-> retrieved tuntap.2.0.1 (cached)-> retrieved uutf.1.0.4 (cached)-> installed num.1.6-> installed ocamlfind.1.9.8-> installed base-bytes.base-> installed ocamlbuild.0.16.1-> installed topkg.1.1.0-> installed uutf.1.0.4-> installed mtime.2.1.0-> installed fmt.0.11.0-> installed astring.0.8.5-> installed dune.3.20.0-> installed csexp.1.5.2-> installed cppo.1.8.0-> installed cstruct.6.2.0-> installed domain-name.0.4.1-> installed duration.0.2.1-> installed eqaf.0.10-> installed lwt-dllist.1.1.0-> installed macaddr.5.6.1-> installed menhirCST.20240715-> installed menhirLib.20240715-> installed menhirSdk.20240715-> installed metrics.0.5.0-> installed mirage-mtime.5.0.0-> installed ocaml-compiler-libs.v0.12.4-> installed ocaml-syntax-shims.1.0.0-> installed ohex.0.2.0-> installed ppx_derivers.1.2.1-> installed psq.0.2.1-> installed randomconv.0.2.0-> installed re.1.13.2-> installed sexplib0.v0.16.0-> installed stdlib-shims.0.3.0-> installed ocplib-endian.1.2-> installed cstruct-unix.6.2.0-> installed ipaddr.5.6.1-> installed macaddr-cstruct.5.6.1-> installed lru.0.3.1-> installed ipaddr-cstruct.5.6.1-> installed digestif.1.3.0-> installed tuntap.2.0.1-> installed alcotest.1.9.0-> installed parsexp.v0.16.0-> installed dune-configurator.3.20.0-> installed sexplib.v0.16.0-> installed mirage-crypto.2.0.1-> installed lwt.5.9.1-> installed mirage-flow.5.0.0-> installed cstruct-lwt.6.2.0-> installed mirage-net.4.0.0-> installed mirage-sleep.4.0.0-> installed lwt_log.1.1.2-> installed logs.0.9.0-> installed ethernet.3.2.0-> installed mirage-crypto-rng.2.0.1-> installed arp.4.0.0-> installed tcpip.9.0.1-> installed menhir.20240715-> installed ppxlib.0.36.0-> installed ppx_cstruct.6.2.0-> installed rawlink.2.1-> installed rawlink-lwt.2.1Done.# Run eval $(opam env) to update the current shell environment2025-08-20 20:01.29 ---> saved as "663c876eb08bb81dc8b3c9d6543ac7634e34b7a6aeb1cd88b018251cc60801d3"/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam install --yes dune 'odoc>=1.5.0'"))[NOTE] Package dune is already installed (current version is 3.20.0).The following actions will be performed:=== install 7 packages- install camlp-streams 5.0.1 [required by odoc-parser]- install crunch 4.0.0 [required by odoc]- install fpath 0.7.3 [required by odoc]- install odoc 3.1.0- install odoc-parser 3.1.0 [required by odoc]- install ptime 1.2.0 [required by crunch]- install tyxml 4.6.0 [required by odoc]<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved camlp-streams.5.0.1 (cached)-> retrieved crunch.4.0.0 (cached)-> retrieved fpath.0.7.3 (cached)-> retrieved ptime.1.2.0 (cached)-> retrieved tyxml.4.6.0 (cached)-> installed camlp-streams.5.0.1-> retrieved odoc.3.1.0, odoc-parser.3.1.0 (cached)-> installed fpath.0.7.3-> installed ptime.1.2.0-> installed crunch.4.0.0-> installed odoc-parser.3.1.0-> installed tyxml.4.6.0-> installed odoc.3.1.0Done.# Run eval $(opam env) to update the current shell environment2025-08-20 20:01.44 ---> saved as "98957336c2514c777c65f150358e6953cffce404f45869ef6ca1f7842b6561dc"/src: (copy (src .) (dst /src/))2025-08-20 20:01.44 ---> saved as "277d749cdc7761e1fd0155761268e041b4cc7139ca2d98e4e0612b658dfbba95"/src: (run (shell "ODOC_WARN_ERROR=false opam exec -- dune build @doc || (echo \"dune build @doc failed\"; exit 2)"))(cd _build/default/_doc/_html && /home/opam/.opam/4.14/bin/odoc link -I ../_odoc/pkg/charrua -I ../../lib/.dhcp_wire.objs/byte -o ../_odocls/charrua/dhcp_wire.odocl ../../lib/.dhcp_wire.objs/byte/dhcp_wire.odoc)File "lib/dhcp_wire.mli", line 179, characters 19-27:Warning: Reference to 'flags' is ambiguous. Please specify its kind: field-flags, type-flags.File "lib/dhcp_wire.mli", line 169, characters 19-27:Warning: Reference to 'htype' is ambiguous. Please specify its kind: field-htype, type-htype.File "lib/dhcp_wire.mli", line 65, characters 4-60:Warning: Failed to resolve reference unresolvedroot(Invalid_argument) Couldn't find "Invalid_argument"File "lib/dhcp_wire.mli", line 35, characters 34-79:Warning: Failed to resolve reference unresolvedroot(Invalid_argument) Couldn't find "Invalid_argument"File "lib/dhcp_wire.mli", line 31, characters 19-25:Warning: Reference to 'op' is ambiguous. Please specify its kind: field-op, type-op.2025-08-20 20:01.45 ---> saved as "14da2932a2c6a1635a765f0fb3076a3c8d85231065977b13c45c25fe3ae7a8bd"Job succeeded2025-08-20 20:01.45: Job succeeded