2026-01-26 08:48.52: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (44dfee2f1e7310e7a6e6c2f9d287b6edfd93e6bb) (linux-x86_64:debian-13-4.14_x86_32_opam-2.5) Base: ocaml/opam:debian-13-ocaml-4.14@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard 44dfee2f cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-13-ocaml-4.14@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5 # debian-13-4.14_x86_32_opam-2.5 USER 1000:1000 SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ] ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.5 /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 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && 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 volgo-base-tests.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 volgo-base-tests.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.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.21.0 dyn.3.21.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 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.21.0 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.21.0 top-closure.3.21.0 topkg.1.1.1" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.5 --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 COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2026-01-26 08:48.52: Using cache hint "mbarbin/vcs-ocaml/opam:debian-13-ocaml-4.14@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5-debian-13-4.14_x86_32_opam-2.5-49d267ecf1fef6fb347947ff14d24822" 2026-01-26 08:48.52: Using OBuilder spec: ((from ocaml/opam:debian-13-ocaml-4.14@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5) (comment debian-13-4.14_x86_32_opam-2.5) (user (uid 1000) (gid 1000)) (shell /usr/bin/linux32 /bin/sh -c) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.5 /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 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && 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 volgo-base-tests.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 volgo-base-tests.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.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.21.0 dyn.3.21.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 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.21.0 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.21.0 top-closure.3.21.0 topkg.1.1.1") (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.5 --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")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @install @check @runtest && rm -rf _build")) ) 2026-01-26 08:48.52: Waiting for resource in pool OCluster 2026-01-26 08:48.52: Waiting for worker… 2026-01-26 08:48.52: Got resource from pool OCluster Building on toxis.caelum.ci.dev All commits already cached HEAD is now at 44dfee2 Merge pull request #131 from mbarbin/hide-node-kind (from ocaml/opam:debian-13-ocaml-4.14@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5) Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5' locally docker.io/ocaml/opam@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5: Pulling from ocaml/opam 7ba68d5e03a0: Already exists 07b8ed5c5fc7: Pulling fs layer 58593d382636: Pulling fs layer 0ac347eff7cb: Pulling fs layer 9e0dce827f6c: Pulling fs layer 59412abebd11: Pulling fs layer 6f40c6b8e49d: Pulling fs layer d425252fe4ce: Pulling fs layer 58593d382636: Waiting 07b8ed5c5fc7: Waiting d2fd5628395f: Pulling fs layer 1afdf15deb97: Pulling fs layer 6f40c6b8e49d: Waiting b0f895c507c7: Pulling fs layer d425252fe4ce: Waiting 008ad3ebfa79: Pulling fs layer d2fd5628395f: Waiting 2c2f57579aeb: Pulling fs layer d53c2fa82d21: Pulling fs layer b0f895c507c7: Waiting e4d849d21609: Pulling fs layer 2c2f57579aeb: Waiting d53c2fa82d21: Waiting 105c7911a399: Pulling fs layer e4d849d21609: Waiting cffce0974ee5: Pulling fs layer 2592e9c0b5c6: Pulling fs layer e781106bd8eb: Pulling fs layer 105c7911a399: Waiting a92c4ad367c1: Pulling fs layer cffce0974ee5: Waiting a5032c647546: Pulling fs layer db024d7ceed7: Pulling fs layer e781106bd8eb: Waiting 4f4fb700ef54: Pulling fs layer b736586eae86: Pulling fs layer 0793122c5463: Pulling fs layer d43d7e0d3789: Pulling fs layer 524f31350c16: Pulling fs layer b736586eae86: Waiting 0793122c5463: Waiting 834542d0184a: Pulling fs layer db024d7ceed7: Waiting d43d7e0d3789: Waiting 92a1bdddbb21: Pulling fs layer 4f4fb700ef54: Waiting db8f6f57c096: Pulling fs layer 524f31350c16: Waiting 834542d0184a: Waiting 8b21ba328ac8: Pulling fs layer b62a644fd3ae: Pulling fs layer db8f6f57c096: Waiting 74df08082153: Pulling fs layer 4544a2d99dec: Pulling fs layer f1c2491fd607: Pulling fs layer 74df08082153: Waiting b65b8b420dec: Pulling fs layer 4544a2d99dec: Waiting f1c2491fd607: Waiting b7d2dd83e3d1: Pulling fs layer 2705612c6e82: Pulling fs layer 296f4af8d4cd: Pulling fs layer 6858402c6fe2: Pulling fs layer a04f04ce7fcc: Pulling fs layer b65b8b420dec: Waiting 5b4901c89fd9: Pulling fs layer 2705612c6e82: Waiting b7d2dd83e3d1: Waiting 6858402c6fe2: Waiting 296f4af8d4cd: Waiting 5ea4f9314f65: Pulling fs layer 76fc04b8943d: Pulling fs layer a04f04ce7fcc: Waiting 3f8bac1f3979: Pulling fs layer 5b4901c89fd9: Waiting 76fc04b8943d: Waiting 3f8bac1f3979: Waiting 07b8ed5c5fc7: Verifying Checksum 07b8ed5c5fc7: Download complete 07b8ed5c5fc7: Pull complete 58593d382636: Download complete 58593d382636: Pull complete 9e0dce827f6c: Download complete 0ac347eff7cb: Verifying Checksum 0ac347eff7cb: Download complete 0ac347eff7cb: Pull complete 9e0dce827f6c: Pull complete 6f40c6b8e49d: Verifying Checksum 6f40c6b8e49d: Download complete d425252fe4ce: Verifying Checksum d425252fe4ce: Download complete d2fd5628395f: Verifying Checksum d2fd5628395f: Download complete 1afdf15deb97: Verifying Checksum 1afdf15deb97: Download complete 59412abebd11: Download complete b0f895c507c7: Verifying Checksum b0f895c507c7: Download complete 2c2f57579aeb: Verifying Checksum 2c2f57579aeb: Download complete 008ad3ebfa79: Verifying Checksum 008ad3ebfa79: Download complete d53c2fa82d21: Verifying Checksum d53c2fa82d21: Download complete e4d849d21609: Download complete 105c7911a399: Verifying Checksum 105c7911a399: Download complete cffce0974ee5: Download complete 2592e9c0b5c6: Download complete e781106bd8eb: Verifying Checksum e781106bd8eb: Download complete a92c4ad367c1: Verifying Checksum a92c4ad367c1: Download complete a5032c647546: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete db024d7ceed7: Verifying Checksum db024d7ceed7: Download complete 0793122c5463: Verifying Checksum 0793122c5463: Download complete b736586eae86: Download complete d43d7e0d3789: Verifying Checksum d43d7e0d3789: Download complete 524f31350c16: Download complete 834542d0184a: Verifying Checksum 834542d0184a: Download complete 92a1bdddbb21: Verifying Checksum 92a1bdddbb21: Download complete 8b21ba328ac8: Verifying Checksum 8b21ba328ac8: Download complete db8f6f57c096: Verifying Checksum db8f6f57c096: Download complete b62a644fd3ae: Verifying Checksum b62a644fd3ae: Download complete 4544a2d99dec: Verifying Checksum 4544a2d99dec: Download complete 74df08082153: Download complete f1c2491fd607: Verifying Checksum f1c2491fd607: Download complete b7d2dd83e3d1: Verifying Checksum b7d2dd83e3d1: Download complete 296f4af8d4cd: Download complete 6858402c6fe2: Download complete a04f04ce7fcc: Verifying Checksum a04f04ce7fcc: Download complete 59412abebd11: Pull complete 5b4901c89fd9: Verifying Checksum 5b4901c89fd9: Download complete b65b8b420dec: Verifying Checksum b65b8b420dec: Download complete 6f40c6b8e49d: Pull complete 5ea4f9314f65: Download complete 2705612c6e82: Verifying Checksum 2705612c6e82: Download complete d425252fe4ce: Pull complete 3f8bac1f3979: Verifying Checksum 3f8bac1f3979: Download complete d2fd5628395f: Pull complete 1afdf15deb97: Pull complete b0f895c507c7: Pull complete 008ad3ebfa79: Pull complete 2c2f57579aeb: Pull complete d53c2fa82d21: Pull complete e4d849d21609: Pull complete 105c7911a399: Pull complete cffce0974ee5: Pull complete 2592e9c0b5c6: Pull complete e781106bd8eb: Pull complete a92c4ad367c1: Pull complete a5032c647546: Pull complete db024d7ceed7: Pull complete 4f4fb700ef54: Pull complete b736586eae86: Pull complete 0793122c5463: Pull complete d43d7e0d3789: Pull complete 524f31350c16: Pull complete 834542d0184a: Pull complete 92a1bdddbb21: Pull complete db8f6f57c096: Pull complete 8b21ba328ac8: Pull complete b62a644fd3ae: Pull complete 74df08082153: Pull complete 4544a2d99dec: Pull complete f1c2491fd607: Pull complete b65b8b420dec: Pull complete b7d2dd83e3d1: Pull complete 2705612c6e82: Pull complete 296f4af8d4cd: Pull complete 6858402c6fe2: Pull complete a04f04ce7fcc: Pull complete 5b4901c89fd9: Pull complete 5ea4f9314f65: Pull complete 76fc04b8943d: Pull complete 3f8bac1f3979: Pull complete Digest: sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5 Status: Downloaded newer image for ocaml/opam@sha256:55d03cd33c22061eed7964284de8b10e18012f2542aac197af25e31f7ea583d5 WARNING: The requested image's platform (linux/386) does not match the detected host platform (linux/amd64) and no specific platform was requested 2026-01-26 08:48.53 ---> using "bf2730aaf7df93ddabe6b4d8c89ba92b2e6829e58850311df4ca9432593a9013" from cache /: (comment debian-13-4.14_x86_32_opam-2.5) /: (user (uid 1000) (gid 1000)) /: (shell /usr/bin/linux32 /bin/sh -c) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) 2026-01-26 08:48.53 ---> using "bbc2bdeb0cdbada570a3aa1700ebe4e17b87b134a5ff77474eb24b3097d0714a" 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 version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted. You may want to back it up before going further. Continue? [Y/n] y Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2026-01-26 08:48.53 ---> using "e52de50ed2ca27754095a1af01fc2e0219c243990283a19710c72be5f10d79d2" from cache /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.5.0 2026-01-26 08:48.53 ---> using "af124018b0c7b27ba80a285511be712f78de8aecaafc997998a1750cd675d93d" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-01-26 08:48.53 ---> using "793e34cfe72a70646355777021c8fbc6661927936a00a38033d49422f95bc208" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 16d9c0eb87..f9f7db30fd master -> origin/master 873cb18c37 Merge pull request #29216 from shonfeder/release-dune-3.21.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 at these versions (e.g. "opam upgrade ocaml.5.4.0"), which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2026-01-26 08:48.53 ---> using "2660e54a3ddebf48a41edd5401f0f14c60abd584d55388a765344e5d8d8dd4ed" from cache /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 volgo-base-tests.opam vcs-test-helpers.opam) (dst ./)) 2026-01-26 08:48.53 ---> using "6b6d9ad5a7da1c15c3dc88c944b4f52997c3c9dd588c6db95de32f1ce81ec52f" from cache /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 volgo-base-tests.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) [NOTE] Package volgo-tests does not exist in opam repositories registered in the current switch. [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) [NOTE] Package volgo-dev does not exist in opam repositories registered in the current switch. [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) [NOTE] Package volgo-base-tests does not exist in opam repositories registered in the current switch. [volgo-base-tests.dev] synchronised (file:///src) volgo-base-tests is now pinned to file:///src (version dev) [NOTE] Package vcs-test-helpers does not exist in opam repositories registered in the current switch. [vcs-test-helpers.dev] synchronised (file:///src) vcs-test-helpers is now pinned to file:///src (version dev) 2026-01-26 08:48.53 ---> using "d4e498f8437709c7e9af7fd4896fcc85af76276b6f1695e5c5ed8bb27ce01f6b" from cache /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-01-26 08:48.53 ---> using "a887a010b7f55fd4e368e1f6792bba24c692ab16d46007dd135f17ee5ca285c9" from cache /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.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.21.0 dyn.3.21.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 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.21.0 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.21.0 top-closure.3.21.0 topkg.1.1.1") /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.5 --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 "apt-get" "update" - Get:1 http://deb.debian.org/debian trixie InRelease [140 kB] - Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB] - Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB] - Get:4 http://deb.debian.org/debian trixie/main i386 Packages [9429 kB] - Get:5 http://deb.debian.org/debian-security trixie-security/main i386 Packages [89.7 kB] - Fetched 9750 kB in 2s (6210 kB/s) - Reading package lists... - <><> 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 "apt-get" "install" "-qq" "-yy" "mercurial" - Preconfiguring packages ... - Selecting previously unselected package libpython3.13-minimal:i386. - (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 ... 20592 files and directories currently installed.) - Preparing to unpack .../libpython3.13-minimal_3.13.5-2_i386.deb ... - Unpacking libpython3.13-minimal:i386 (3.13.5-2) ... - Selecting previously unselected package python3.13-minimal. - Preparing to unpack .../python3.13-minimal_3.13.5-2_i386.deb ... - Unpacking python3.13-minimal (3.13.5-2) ... - Setting up libpython3.13-minimal:i386 (3.13.5-2) ... - Setting up python3.13-minimal (3.13.5-2) ... - Selecting previously unselected package python3-minimal. - (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 ... 20917 files and directories currently installed.) - Preparing to unpack .../0-python3-minimal_3.13.5-1_i386.deb ... - Unpacking python3-minimal (3.13.5-1) ... - Selecting previously unselected package media-types. - Preparing to unpack .../1-media-types_13.0.0_all.deb ... - Unpacking media-types (13.0.0) ... - Selecting previously unselected package readline-common. - Preparing to unpack .../2-readline-common_8.2-6_all.deb ... - Unpacking readline-common (8.2-6) ... - Selecting previously unselected package libreadline8t64:i386. - Preparing to unpack .../3-libreadline8t64_8.2-6_i386.deb ... - Adding 'diversion of /lib/i386-linux-gnu/libhistory.so.8 to /lib/i386-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64' - Adding 'diversion of /lib/i386-linux-gnu/libhistory.so.8.2 to /lib/i386-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64' - Adding 'diversion of /lib/i386-linux-gnu/libreadline.so.8 to /lib/i386-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64' - Adding 'diversion of /lib/i386-linux-gnu/libreadline.so.8.2 to /lib/i386-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64' - Unpacking libreadline8t64:i386 (8.2-6) ... - Selecting previously unselected package libpython3.13-stdlib:i386. - Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_i386.deb ... - Unpacking libpython3.13-stdlib:i386 (3.13.5-2) ... - Selecting previously unselected package python3.13. - Preparing to unpack .../5-python3.13_3.13.5-2_i386.deb ... - Unpacking python3.13 (3.13.5-2) ... - Selecting previously unselected package libpython3-stdlib:i386. - Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_i386.deb ... - Unpacking libpython3-stdlib:i386 (3.13.5-1) ... - Setting up python3-minimal (3.13.5-1) ... - Selecting previously unselected package python3. - (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 ... 21403 files and directories currently installed.) - Preparing to unpack .../0-python3_3.13.5-1_i386.deb ... - Unpacking python3 (3.13.5-1) ... - Selecting previously unselected package sensible-utils. - Preparing to unpack .../1-sensible-utils_0.0.25_all.deb ... - Unpacking sensible-utils (0.0.25) ... - Selecting previously unselected package libtext-charwidth-perl:i386. - Preparing to unpack .../2-libtext-charwidth-perl_0.04-11+b4_i386.deb ... - Unpacking libtext-charwidth-perl:i386 (0.04-11+b4) ... - Selecting previously unselected package libtext-wrapi18n-perl. - Preparing to unpack .../3-libtext-wrapi18n-perl_0.06-10_all.deb ... - Unpacking libtext-wrapi18n-perl (0.06-10) ... - Selecting previously unselected package ucf. - Preparing to unpack .../4-ucf_3.0052_all.deb ... - Moving old data out of the way - Unpacking ucf (3.0052) ... - Selecting previously unselected package mercurial-common. - Preparing to unpack .../5-mercurial-common_7.0.1-2_all.deb ... - Unpacking mercurial-common (7.0.1-2) ... - Selecting previously unselected package mercurial. - Preparing to unpack .../6-mercurial_7.0.1-2_i386.deb ... - Unpacking mercurial (7.0.1-2) ... - Setting up media-types (13.0.0) ... - Setting up libtext-charwidth-perl:i386 (0.04-11+b4) ... - Setting up libtext-wrapi18n-perl (0.06-10) ... - Setting up sensible-utils (0.0.25) ... - Setting up readline-common (8.2-6) ... - Setting up ucf (3.0052) ... - Setting up libreadline8t64:i386 (8.2-6) ... - Setting up libpython3.13-stdlib:i386 (3.13.5-2) ... - Setting up libpython3-stdlib:i386 (3.13.5-1) ... - Setting up python3.13 (3.13.5-2) ... - Setting up python3 (3.13.5-1) ... - running python rtupdate hooks for python3.13... - running python post-rtupdate hooks for python3.13... - Setting up mercurial-common (7.0.1-2) ... - Setting up mercurial (7.0.1-2) ... - Creating config file /etc/mercurial/hgrc.d/hgext.rc with new version - Processing triggers for libc-bin (2.41-12) ... # To update the current shell environment, run: eval $(opam env) 2026-01-26 08:48.53 ---> using "23e3260a880ede439896e188f5e915901ce97d831ed3182368a451c8038e74a4" from cache /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 27 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.1.0 - install conf-git 1.1 - install conf-hg 1.0 - install csexp 1.5.2 - install dune 3.21.0 - install dyn 3.21.0 - install fpath 0.7.3 - install fpath-sexp0 0.4.0 - install fs-io 3.21.0 - install loc 0.2.2 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ordering 3.21.0 - 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.21.0 - install top-closure 3.21.0 - install topkg 1.1.1 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved astring.0.8.5 (cached) -> retrieved bitv.2.1 (cached) -> retrieved cmdlang.0.0.10, cmdlang-to-cmdliner.0.0.10 (cached) -> retrieved cmdlang-cmdliner-err-runner.0.0.16, pplumbing-err.0.0.16, pplumbing-pp-tty.0.0.16 (cached) -> retrieved cmdliner.2.1.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-git.1.1 -> installed conf-hg.1.0 -> retrieved fpath.0.7.3 (cached) -> retrieved fpath-sexp0.0.4.0 (cached) -> retrieved loc.0.2.2 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> 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.1 (cached) -> retrieved dune.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0 (cached) -> installed cmdliner.2.1.0 -> installed ocamlbuild.0.16.1 -> installed ocamlfind.1.9.8 -> installed topkg.1.1.1 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed dune.3.21.0 -> installed bitv.2.1 -> installed cmdlang.0.0.10 -> installed csexp.1.5.2 -> installed pp.2.0.0 -> installed sexplib0.v0.16.0 -> installed spawn.v0.17.0 -> installed cmdlang-to-cmdliner.0.0.10 -> installed fpath-sexp0.0.4.0 -> installed ordering.3.21.0 -> installed parsexp.v0.16.0 -> installed fs-io.3.21.0 -> installed top-closure.3.21.0 -> installed dyn.3.21.0 -> installed stdune.3.21.0 -> 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. # To update the current shell environment, run: eval $(opam env) 2026-01-26 08:48.53 ---> using "ba20738a4d0d87a84a7232a1d724559395e0c2cf6b7be08355d75afcf94721e4" from cache /src: (copy (src .) (dst /src)) 2026-01-26 08:48.53 ---> using "42889615d80f8b5900342d7aa407abd3581aef5de28ed9b8c134d193947453b4" from cache /src: (run (shell "opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @install @check @runtest && rm -rf _build")) 2026-01-26 08:48.53 ---> using "105a8a01fbae91df2f6aa865906347572a7bcb5f739b23e0a44faddba80a09d7" from cache Job succeeded 2026-01-26 08:48.53: Job succeeded