2025-10-15 18:31.40: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (f27ae3461f568dc400841a51bec3de7730338f39) (linux-x86_64:(lint-doc)) Base: ocaml/opam:alpine-3.22-ocaml-4.14@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e Opam project lint documentation To reproduce locally: git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard f27ae346 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:alpine-3.22-ocaml-4.14@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e # alpine-3.22-4.14_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.2 /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 dbd126f1b3e13b70b1010ac087a896c6f0d80bc5 || git fetch origin master) && git reset -q --hard dbd126f1b3e13b70b1010ac087a896c6f0d80bc5 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam vcs-test-helpers.opam ./ RUN opam pin add -yn volgo.dev './' && \ opam pin add -yn volgo-vcs.dev './' && \ opam pin add -yn volgo-tests.dev './' && \ opam pin add -yn volgo-hg-unix.dev './' && \ opam pin add -yn volgo-hg-eio.dev './' && \ opam pin add -yn volgo-hg-backend.dev './' && \ opam pin add -yn volgo-git-unix.dev './' && \ opam pin add -yn volgo-git-eio.dev './' && \ opam pin add -yn volgo-git-backend.dev './' && \ opam pin add -yn volgo-dev.dev './' && \ opam pin add -yn volgo-base.dev './' && \ opam pin add -yn vcs-test-helpers.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.0.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.20.2 dyn.3.20.2 fpath.0.7.3 fpath-sexp0.0.3.1 loc.0.2.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.20.2 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.20.2 topkg.1.1.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.2 --depext-only -y volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.dev $DEPS RUN opam install $DEPS RUN opam install --yes dune 'odoc>=1.5.0' COPY --chown=1000:1000 . /src/ RUN ODOC_WARN_ERROR=false opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @doc || (echo "dune build @doc failed"; exit 2) END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-10-15 18:31.40: Using cache hint "mbarbin/vcs-ocaml/opam:alpine-3.22-ocaml-4.14@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e-alpine-3.22-4.14_opam-2.4-d7a669149a4c0b8251b3958aaa5c9e9d" 2025-10-15 18:31.40: Using OBuilder spec: ((from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e) (comment alpine-3.22-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 dbd126f1b3e13b70b1010ac087a896c6f0d80bc5 || git fetch origin master) && git reset -q --hard dbd126f1b3e13b70b1010ac087a896c6f0d80bc5 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam vcs-test-helpers.opam) (dst ./)) (run (network host) (shell "opam pin add -yn volgo.dev './' && \ \nopam pin add -yn volgo-vcs.dev './' && \ \nopam pin add -yn volgo-tests.dev './' && \ \nopam pin add -yn volgo-hg-unix.dev './' && \ \nopam pin add -yn volgo-hg-eio.dev './' && \ \nopam pin add -yn volgo-hg-backend.dev './' && \ \nopam pin add -yn volgo-git-unix.dev './' && \ \nopam pin add -yn volgo-git-eio.dev './' && \ \nopam pin add -yn volgo-git-backend.dev './' && \ \nopam pin add -yn volgo-dev.dev './' && \ \nopam pin add -yn volgo-base.dev './' && \ \nopam pin add -yn vcs-test-helpers.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.0.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.20.2 dyn.3.20.2 fpath.0.7.3 fpath-sexp0.0.3.1 loc.0.2.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.20.2 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.20.2 topkg.1.1.0") (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 volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.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 --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @doc || (echo \"dune build @doc failed\"; exit 2)")) ) 2025-10-15 18:31.40: Waiting for resource in pool OCluster 2025-10-15 18:32.00: Waiting for worker… 2025-10-15 18:32.00: Got resource from pool OCluster Building on toxis.caelum.ci.dev All commits already cached HEAD is now at f27ae34 Merge pull request #108 from mbarbin/upgrade-crs.0.0.20251014 (from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e) Unable to find image 'ocaml/opam:alpine-3.22-ocaml-4.14@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e' locally docker.io/ocaml/opam@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e: Pulling from ocaml/opam 2d35ebdb57d9: Already exists 4eef589852a3: Pulling fs layer 9bcbf19aa70e: Pulling fs layer c27157cc8c0d: Pulling fs layer 8eb40fc9ec7b: Pulling fs layer cf28fbda269d: Pulling fs layer bdb05ad1bb03: Pulling fs layer 14b089059d7b: Pulling fs layer 8fba92877dbb: Pulling fs layer b46b8c2b2e76: Pulling fs layer 8eb40fc9ec7b: Waiting c5fe84151a2d: Pulling fs layer cf28fbda269d: Waiting d69ebb2cea14: Pulling fs layer 8987930d7936: Pulling fs layer 8fba92877dbb: Waiting b46b8c2b2e76: Waiting 07e0ebe0bb32: Pulling fs layer bdb05ad1bb03: Waiting a8a8cd8bbc43: Pulling fs layer 0eee052a54e0: Pulling fs layer 14b089059d7b: Waiting 8987930d7936: Waiting 07e0ebe0bb32: Waiting 9d0f02e69e08: Pulling fs layer c5fe84151a2d: Waiting 4f4fb700ef54: Pulling fs layer a8a8cd8bbc43: Waiting a90897db75ef: Pulling fs layer 678b7f997d9a: Pulling fs layer 4f4fb700ef54: Waiting 55a17ca9d235: Pulling fs layer a90897db75ef: Waiting b0fc237f6c26: Pulling fs layer 4a9f9668ab4a: Pulling fs layer f4048786242d: Pulling fs layer 55a17ca9d235: Waiting 4a9f9668ab4a: Waiting 322480b4b1d3: Pulling fs layer eda2d7da1b04: Pulling fs layer 83325a5b2b26: Pulling fs layer eda2d7da1b04: Waiting 322480b4b1d3: Waiting 09b67e1d956f: Pulling fs layer 2adafa4b73e4: Pulling fs layer 8e04b3ec100b: Pulling fs layer 83325a5b2b26: Waiting 7eac41d73ac6: Pulling fs layer 477769be07d7: Pulling fs layer 7eac41d73ac6: Waiting 1121e0452bac: Pulling fs layer a7433c286e2f: Pulling fs layer d11ef3af080f: Pulling fs layer 595e38b8edfd: Pulling fs layer 3b6068bfc654: Pulling fs layer e91a772be517: Pulling fs layer 595e38b8edfd: Waiting d11ef3af080f: Waiting 7ab96ec90fc2: Pulling fs layer e91a772be517: Waiting 9da6f0039b9b: Pulling fs layer 7ab96ec90fc2: Waiting 4eef589852a3: Verifying Checksum 4eef589852a3: Download complete 4eef589852a3: Pull complete 8eb40fc9ec7b: Verifying Checksum 8eb40fc9ec7b: Download complete 9bcbf19aa70e: Verifying Checksum 9bcbf19aa70e: Download complete 9bcbf19aa70e: Pull complete bdb05ad1bb03: Verifying Checksum bdb05ad1bb03: Download complete 14b089059d7b: Verifying Checksum 14b089059d7b: Download complete cf28fbda269d: Download complete 8fba92877dbb: Verifying Checksum 8fba92877dbb: Download complete c5fe84151a2d: Verifying Checksum c5fe84151a2d: Download complete b46b8c2b2e76: Verifying Checksum b46b8c2b2e76: Download complete d69ebb2cea14: Verifying Checksum d69ebb2cea14: Download complete 07e0ebe0bb32: Download complete a8a8cd8bbc43: Verifying Checksum a8a8cd8bbc43: Download complete 0eee052a54e0: Download complete 8987930d7936: Verifying Checksum 8987930d7936: Download complete 9d0f02e69e08: Verifying Checksum 9d0f02e69e08: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete a90897db75ef: Verifying Checksum a90897db75ef: Download complete 678b7f997d9a: Download complete 55a17ca9d235: Download complete b0fc237f6c26: Download complete 4a9f9668ab4a: Download complete f4048786242d: Verifying Checksum f4048786242d: Download complete 322480b4b1d3: Download complete eda2d7da1b04: Verifying Checksum eda2d7da1b04: Download complete 83325a5b2b26: Verifying Checksum 83325a5b2b26: Download complete 09b67e1d956f: Verifying Checksum 09b67e1d956f: Download complete 2adafa4b73e4: Verifying Checksum 2adafa4b73e4: Download complete 8e04b3ec100b: Verifying Checksum 8e04b3ec100b: Download complete 477769be07d7: Download complete 1121e0452bac: Verifying Checksum 1121e0452bac: Download complete a7433c286e2f: Verifying Checksum a7433c286e2f: Download complete d11ef3af080f: Download complete 595e38b8edfd: Download complete 3b6068bfc654: Verifying Checksum 3b6068bfc654: Download complete e91a772be517: Verifying Checksum e91a772be517: Download complete 7ab96ec90fc2: Verifying Checksum 7ab96ec90fc2: Download complete c27157cc8c0d: Verifying Checksum c27157cc8c0d: Download complete 9da6f0039b9b: Download complete 7eac41d73ac6: Verifying Checksum 7eac41d73ac6: Download complete c27157cc8c0d: Pull complete 8eb40fc9ec7b: Pull complete cf28fbda269d: Pull complete bdb05ad1bb03: Pull complete 14b089059d7b: Pull complete 8fba92877dbb: Pull complete b46b8c2b2e76: Pull complete c5fe84151a2d: Pull complete d69ebb2cea14: Pull complete 8987930d7936: Pull complete 07e0ebe0bb32: Pull complete a8a8cd8bbc43: Pull complete 0eee052a54e0: Pull complete 9d0f02e69e08: Pull complete 4f4fb700ef54: Pull complete a90897db75ef: Pull complete 678b7f997d9a: Pull complete 55a17ca9d235: Pull complete b0fc237f6c26: Pull complete 4a9f9668ab4a: Pull complete f4048786242d: Pull complete 322480b4b1d3: Pull complete eda2d7da1b04: Pull complete 83325a5b2b26: Pull complete 09b67e1d956f: Pull complete 2adafa4b73e4: Pull complete 8e04b3ec100b: Pull complete 7eac41d73ac6: Pull complete 477769be07d7: Pull complete 1121e0452bac: Pull complete a7433c286e2f: Pull complete d11ef3af080f: Pull complete 595e38b8edfd: Pull complete 3b6068bfc654: Pull complete e91a772be517: Pull complete 7ab96ec90fc2: Pull complete 9da6f0039b9b: Pull complete Digest: sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e Status: Downloaded newer image for ocaml/opam@sha256:7061e4d210c551f55328c75cfe57a1297de774a191b5ef915d0cd2547319e29e 2025-10-15 18:33.34 ---> saved as "764276640f5b3f4ce6b610321003cb55f6545c42846dc0b360f6be7a346afe65" /: (comment alpine-3.22-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-10-15 18:33.34 ---> saved as "6720e54ae64afbb9960c6424bcdad63017c40b4d7d6d4b4cddab855f9e547dfb" /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] y [NOTE] The 'jobs' option was reset, its value was 255 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=255 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-10-15 18:33.58 ---> saved as "491d46b321a60684e70ba78e8db58638ff14fd8a9fd56c82c70e400c4fccae72" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-134-generic The OCaml toplevel, version 4.14.2 2.2.1 2025-10-15 18:33.58 ---> saved as "52a7f9418945eb9d3ce95ee8ffa06e22aca6dcb329d067c80a924b63b04e60fa" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-10-15 18:33.58 ---> saved as "73a15f0b31d765b8abc13f90f4829410080243cbd172c0dae4cd1714bb2eb89d" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e dbd126f1b3e13b70b1010ac087a896c6f0d80bc5 || git fetch origin master) && git reset -q --hard dbd126f1b3e13b70b1010ac087a896c6f0d80bc5 && git log --no-decorate -n1 --oneline && opam update -u")) dbd126f1b3 Merge pull request #28599 from dbuenzli/b0-publish-cmdliner.2.0.0 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+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. # Run eval $(opam env) to update the current shell environment 2025-10-15 18:34.19 ---> saved as "9a76ef89505d47e1ed3dc99a398ae169df7e0c1e24bf82befe0fa00c3d9178a9" /src: (copy (src volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam vcs-test-helpers.opam) (dst ./)) 2025-10-15 18:34.19 ---> saved as "b6cee58bf7c77dd4c793595e65208aedf76be641ec90a02a074540f5014828ba" /src: (run (network host) (shell "opam pin add -yn volgo.dev './' && \ \nopam pin add -yn volgo-vcs.dev './' && \ \nopam pin add -yn volgo-tests.dev './' && \ \nopam pin add -yn volgo-hg-unix.dev './' && \ \nopam pin add -yn volgo-hg-eio.dev './' && \ \nopam pin add -yn volgo-hg-backend.dev './' && \ \nopam pin add -yn volgo-git-unix.dev './' && \ \nopam pin add -yn volgo-git-eio.dev './' && \ \nopam pin add -yn volgo-git-backend.dev './' && \ \nopam pin add -yn volgo-dev.dev './' && \ \nopam pin add -yn volgo-base.dev './' && \ \nopam pin add -yn vcs-test-helpers.dev './'")) [volgo.dev] synchronised (file:///src) volgo is now pinned to file:///src (version dev) [volgo-vcs.dev] synchronised (file:///src) volgo-vcs is now pinned to file:///src (version dev) Package volgo-tests does not exist, create as a NEW package? [y/n] y [volgo-tests.dev] synchronised (file:///src) volgo-tests is now pinned to file:///src (version dev) [volgo-hg-unix.dev] synchronised (file:///src) volgo-hg-unix is now pinned to file:///src (version dev) [volgo-hg-eio.dev] synchronised (file:///src) volgo-hg-eio is now pinned to file:///src (version dev) [volgo-hg-backend.dev] synchronised (file:///src) volgo-hg-backend is now pinned to file:///src (version dev) [volgo-git-unix.dev] synchronised (file:///src) volgo-git-unix is now pinned to file:///src (version dev) [volgo-git-eio.dev] synchronised (file:///src) volgo-git-eio is now pinned to file:///src (version dev) [volgo-git-backend.dev] synchronised (file:///src) volgo-git-backend is now pinned to file:///src (version dev) Package volgo-dev does not exist, create as a NEW package? [y/n] y [volgo-dev.dev] synchronised (file:///src) volgo-dev is now pinned to file:///src (version dev) [volgo-base.dev] synchronised (file:///src) volgo-base is now pinned to file:///src (version dev) Package vcs-test-helpers does not exist, create as a NEW package? [y/n] y [vcs-test-helpers.dev] synchronised (file:///src) vcs-test-helpers is now pinned to file:///src (version dev) 2025-10-15 18:34.49 ---> saved as "dbb65d628c3008e6d8e946d68580df5cbfca3a2a6d2948418a08258a3da80d4e" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-10-15 18:34.49 ---> saved as "d069f4715cf141ed59be812cf99f7ee82a89a248b2d7968af22e8c211627e9c1" /src: (env DEPS "astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.0.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.20.2 dyn.3.20.2 fpath.0.7.3 fpath-sexp0.0.3.1 loc.0.2.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.20.2 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.20.2 topkg.1.1.0") /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 volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.dev $DEPS")) + /usr/bin/sudo "apk" "update" - fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz - fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/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.22.2-33-g117b503544a [https://dl-cdn.alpinelinux.org/alpine/v3.22/main] - v3.22.2-38-g69132b0c9b4 [https://dl-cdn.alpinelinux.org/alpine/v3.22/community] - v3.23.0_alpha20250612-8269-gfe44dcd9829 [https://dl-cdn.alpinelinux.org/alpine/edge/main] - v3.23.0_alpha20250612-8294-g0b869b460ac [https://dl-cdn.alpinelinux.org/alpine/edge/community] - v3.23.0_alpha20250612-8295-g1cafec2f0fe [https://dl-cdn.alpinelinux.org/alpine/edge/testing] - OK: 59568 distinct packages available <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [volgo.dev] synchronised (file:///src) [volgo-git-backend.dev] synchronised (file:///src) [volgo-git-unix.dev] synchronised (file:///src) [volgo-hg-backend.dev] synchronised (file:///src) [volgo-hg-unix.dev] synchronised (file:///src) [volgo-vcs.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: mercurial <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apk" "add" "mercurial" - (1/2) Installing mercurial (7.0.3-r0) - (2/2) Installing mercurial-pyc (7.0.3-r0) - Executing busybox-1.37.0-r19.trigger - OK: 333 MiB in 104 packages 2025-10-15 18:35.17 ---> saved as "c6fca939d95ecf246b522dc6bafc553b85f73e0aabe4f31baaf2ee41d9c3a337" /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 25 packages - install astring 0.8.5 - install bitv 2.1 - install cmdlang 0.0.10 - install cmdlang-cmdliner-err-runner 0.0.16 - install cmdlang-to-cmdliner 0.0.10 - install cmdliner 2.0.0 - install conf-git 1.1 - install conf-hg 1.0 - install csexp 1.5.2 - install dune 3.20.2 - install dyn 3.20.2 - install fpath 0.7.3 - install fpath-sexp0 0.3.1 - install loc 0.2.2 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ordering 3.20.2 - install parsexp v0.16.0 - install pp 2.0.0 - install pplumbing-err 0.0.16 - install pplumbing-pp-tty 0.0.16 - install sexplib0 v0.16.0 - install spawn v0.17.0 - install stdune 3.20.2 - install topkg 1.1.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved astring.0.8.5 (cached) -> retrieved bitv.2.1 (cached) -> retrieved cmdlang-cmdliner-err-runner.0.0.16, pplumbing-err.0.0.16, pplumbing-pp-tty.0.0.16 (cached) -> retrieved cmdlang.0.0.10, cmdlang-to-cmdliner.0.0.10 (cached) -> retrieved cmdliner.2.0.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-git.1.1 -> retrieved fpath.0.7.3 (cached) -> retrieved fpath-sexp0.0.3.1 (cached) -> retrieved loc.0.2.2 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> installed conf-hg.1.0 -> retrieved parsexp.v0.16.0 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved spawn.v0.17.0 (cached) -> retrieved topkg.1.1.0 (cached) -> retrieved dune.3.20.2, dyn.3.20.2, ordering.3.20.2, stdune.3.20.2 (cached) -> installed cmdliner.2.0.0 -> installed ocamlbuild.0.16.1 -> installed ocamlfind.1.9.8 -> installed topkg.1.1.0 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed dune.3.20.2 -> installed bitv.2.1 -> installed cmdlang.0.0.10 -> installed csexp.1.5.2 -> installed pp.2.0.0 -> installed cmdlang-to-cmdliner.0.0.10 -> installed spawn.v0.17.0 -> installed sexplib0.v0.16.0 -> installed fpath-sexp0.0.3.1 -> installed ordering.3.20.2 -> installed parsexp.v0.16.0 -> installed dyn.3.20.2 -> installed stdune.3.20.2 -> installed loc.0.2.2 -> installed pplumbing-pp-tty.0.0.16 -> installed pplumbing-err.0.0.16 -> installed cmdlang-cmdliner-err-runner.0.0.16 Done. # Run eval $(opam env) to update the current shell environment 2025-10-15 18:37.01 ---> saved as "d8c82aa38fdefbf85c19d7e05c73395a18962559e7bc414de08f9e706709b54f" /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.2). The following actions will be performed: === install 11 packages - install camlp-streams 5.0.1 [required by odoc-parser] - install cppo 1.8.0 [required by odoc] - install crunch 4.0.0 [required by odoc] - install fmt 0.11.0 [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 re 1.14.0 [required by tyxml] - install seq base [required by tyxml] - install tyxml 4.6.0 [required by odoc] - install uutf 1.0.4 [required by tyxml] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved camlp-streams.5.0.1 (cached) -> retrieved cppo.1.8.0 (cached) -> retrieved crunch.4.0.0 (cached) -> retrieved fmt.0.11.0 (cached) -> retrieved re.1.14.0 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved ptime.1.2.0 (cached) -> retrieved tyxml.4.6.0 (cached) -> retrieved uutf.1.0.4 (cached) -> installed camlp-streams.5.0.1 -> retrieved odoc.3.1.0, odoc-parser.3.1.0 (cached) -> installed cppo.1.8.0 -> installed uutf.1.0.4 -> installed fmt.0.11.0 -> installed re.1.14.0 -> installed ptime.1.2.0 -> installed odoc-parser.3.1.0 -> installed crunch.4.0.0 -> installed tyxml.4.6.0 -> installed odoc.3.1.0 Done. # Run eval $(opam env) to update the current shell environment 2025-10-15 18:37.59 ---> saved as "a5be696240fea6992aaf0b949ae70825ac20be4d0a9324fb88e0a05e6cfac4bc" /src: (copy (src .) (dst /src/)) 2025-10-15 18:38.00 ---> saved as "d1b8fb3a016f86fb1be9eeca202e3ace029a169c6d97c0ab5c85f3568707a275" /src: (run (shell "ODOC_WARN_ERROR=false opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @doc || (echo \"dune build @doc failed\"; exit 2)")) 2025-10-15 18:38.05 ---> saved as "f7497132d749686cb495a5a855430396cd440bc1909c597b2d6df7eda1bff573" Job succeeded 2025-10-15 18:38.06: Job succeeded