2026-03-17 19:11.54: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (e93399e413c0acc35c9d88d2fef506e1366e0eb6) (linux-x86_64:debian-12-4.14_opam-2.5) Base: ocaml/opam:debian-12-ocaml-4.14@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard e93399e4 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db # debian-12-4.14_opam-2.5 USER 1000:1000 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 31462e7d24da1419f9eb9099a0b60ea507d91ef6 || git fetch origin master) && git reset -q --hard 31462e7d24da1419f9eb9099a0b60ea507d91ef6 && 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.1 dyn.3.21.1 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.1 loc.0.3.3 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.1 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.1 top-closure.3.21.1 topkg.1.1.1 yojson.3.0.0" 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-03-17 19:11.54: Using cache hint "mbarbin/vcs-ocaml/opam:debian-12-ocaml-4.14@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db-debian-12-4.14_opam-2.5-d56b9dd7256a2078d8e6732436939c48" 2026-03-17 19:11.54: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db) (comment debian-12-4.14_opam-2.5) (user (uid 1000) (gid 1000)) (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 31462e7d24da1419f9eb9099a0b60ea507d91ef6 || git fetch origin master) && git reset -q --hard 31462e7d24da1419f9eb9099a0b60ea507d91ef6 && 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 (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.1 dyn.3.21.1 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.1 loc.0.3.3 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.1 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.1 top-closure.3.21.1 topkg.1.1.1 yojson.3.0.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.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-03-17 19:11.54: Waiting for resource in pool OCluster 2026-03-17 19:11.54: Waiting for worker… 2026-03-17 19:16.15: Got resource from pool OCluster Building on bremusa.ocamllabs.io All commits already cached HEAD is now at e93399e Merge branch 'flatten-stdlib' (from ocaml/opam:debian-12-ocaml-4.14@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db) Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db' locally docker.io/ocaml/opam@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db: Pulling from ocaml/opam 6bc9f599b3ef: Pulling fs layer d58ede61f1ea: Pulling fs layer 59fd7d32ea8a: Pulling fs layer 60d26dc9eed4: Pulling fs layer 98f543d3d01d: Pulling fs layer 161a462e0ee3: Pulling fs layer d63b9e393571: Pulling fs layer 60d26dc9eed4: Waiting 5035b470c5fd: Pulling fs layer 98f543d3d01d: Waiting c044051f86f0: Pulling fs layer 161a462e0ee3: Waiting e46db7eb399e: Pulling fs layer d63b9e393571: Waiting 3e83b7b7fc77: Pulling fs layer 03ea2e79c43c: Pulling fs layer 8d2b9b45eead: Pulling fs layer 5035b470c5fd: Waiting c044051f86f0: Waiting 3e83b7b7fc77: Waiting a3c20940c5b9: Pulling fs layer bbffc2740725: Pulling fs layer 5f27f2e5115b: Pulling fs layer aa26a691a008: Pulling fs layer e46db7eb399e: Waiting bd1d45f5a000: Pulling fs layer 03ea2e79c43c: Waiting 0cc5c7c7516a: Pulling fs layer bd1d45f5a000: Waiting d0b90656e0e8: Pulling fs layer 643825a484d2: Pulling fs layer aa26a691a008: Waiting 67dabf16b113: Pulling fs layer a3c20940c5b9: Waiting 643825a484d2: Waiting 0cc5c7c7516a: Waiting 4f4fb700ef54: Pulling fs layer 67dabf16b113: Waiting bbffc2740725: Waiting 5f27f2e5115b: Waiting d0b90656e0e8: Waiting 8d2b9b45eead: Waiting 9551114336f8: Pulling fs layer 2a7bf6427e8c: Pulling fs layer 4f4fb700ef54: Waiting 9551114336f8: Waiting 1b47d47d94f8: Pulling fs layer 2a7bf6427e8c: Waiting 4be82938ba83: Pulling fs layer 1b47d47d94f8: Waiting 80976f0d06a6: Pulling fs layer 5bbf91e88fcf: Pulling fs layer 4be82938ba83: Waiting 80976f0d06a6: Waiting 10bde5a9d661: Pulling fs layer 5bbf91e88fcf: Waiting 00617c3bf097: Pulling fs layer 10bde5a9d661: Waiting 6dff02c33996: Pulling fs layer 00617c3bf097: Waiting 42aae9593b3f: Pulling fs layer aec72d9c9e64: Pulling fs layer 42aae9593b3f: Waiting 16d1596d51b2: Pulling fs layer aec72d9c9e64: Waiting 9cbb5291df33: Pulling fs layer 11ddb25ececc: Pulling fs layer 16d1596d51b2: Waiting 46139e478336: Pulling fs layer 9cbb5291df33: Waiting 11ddb25ececc: Waiting e852d99175ac: Pulling fs layer 46139e478336: Waiting 8efd7bff796c: Pulling fs layer e852d99175ac: Waiting 49052a37c89a: Pulling fs layer 8efd7bff796c: Waiting 3a99b4ee4231: Pulling fs layer 49052a37c89a: Waiting c75f7bd00dfc: Pulling fs layer 3a99b4ee4231: Waiting 00d438fe307c: Pulling fs layer 0b6b272507f8: Pulling fs layer c75f7bd00dfc: Waiting 00d438fe307c: Waiting 0b6b272507f8: Waiting d58ede61f1ea: Download complete 59fd7d32ea8a: Verifying Checksum 59fd7d32ea8a: Download complete 98f543d3d01d: Verifying Checksum 98f543d3d01d: Download complete 60d26dc9eed4: Verifying Checksum 60d26dc9eed4: Download complete 6bc9f599b3ef: Verifying Checksum 6bc9f599b3ef: Download complete d63b9e393571: Verifying Checksum d63b9e393571: Download complete 5035b470c5fd: Verifying Checksum 5035b470c5fd: Download complete c044051f86f0: Verifying Checksum c044051f86f0: Download complete e46db7eb399e: Verifying Checksum e46db7eb399e: Download complete 3e83b7b7fc77: Verifying Checksum 3e83b7b7fc77: Download complete 03ea2e79c43c: Verifying Checksum 03ea2e79c43c: Download complete 8d2b9b45eead: Verifying Checksum 8d2b9b45eead: Download complete bbffc2740725: Download complete 6bc9f599b3ef: Pull complete d58ede61f1ea: Pull complete 59fd7d32ea8a: Pull complete a3c20940c5b9: Verifying Checksum a3c20940c5b9: Download complete 161a462e0ee3: Verifying Checksum 161a462e0ee3: Download complete 60d26dc9eed4: Pull complete 5f27f2e5115b: Download complete 98f543d3d01d: Pull complete aa26a691a008: Download complete bd1d45f5a000: Verifying Checksum bd1d45f5a000: Download complete 0cc5c7c7516a: Download complete d0b90656e0e8: Download complete 643825a484d2: Download complete 67dabf16b113: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete 9551114336f8: Download complete 1b47d47d94f8: Verifying Checksum 1b47d47d94f8: Download complete 4be82938ba83: Verifying Checksum 4be82938ba83: Download complete 80976f0d06a6: Verifying Checksum 80976f0d06a6: Download complete 5bbf91e88fcf: Verifying Checksum 5bbf91e88fcf: Download complete 10bde5a9d661: Verifying Checksum 10bde5a9d661: Download complete 00617c3bf097: Verifying Checksum 00617c3bf097: Download complete 6dff02c33996: Verifying Checksum 6dff02c33996: Download complete 42aae9593b3f: Verifying Checksum 42aae9593b3f: Download complete aec72d9c9e64: Verifying Checksum aec72d9c9e64: Download complete 16d1596d51b2: Verifying Checksum 16d1596d51b2: Download complete 11ddb25ececc: Verifying Checksum 11ddb25ececc: Download complete e852d99175ac: Download complete 8efd7bff796c: Verifying Checksum 8efd7bff796c: Download complete 49052a37c89a: Verifying Checksum 49052a37c89a: Download complete 9cbb5291df33: Verifying Checksum 9cbb5291df33: Download complete 46139e478336: Verifying Checksum 46139e478336: Download complete c75f7bd00dfc: Verifying Checksum c75f7bd00dfc: Download complete 00d438fe307c: Download complete 0b6b272507f8: Download complete 161a462e0ee3: Pull complete 3a99b4ee4231: Verifying Checksum 3a99b4ee4231: Download complete d63b9e393571: Pull complete 5035b470c5fd: Pull complete c044051f86f0: Pull complete e46db7eb399e: Pull complete 3e83b7b7fc77: Pull complete 03ea2e79c43c: Pull complete 8d2b9b45eead: Pull complete a3c20940c5b9: Pull complete bbffc2740725: Pull complete 5f27f2e5115b: Pull complete aa26a691a008: Pull complete bd1d45f5a000: Pull complete 0cc5c7c7516a: Pull complete d0b90656e0e8: Pull complete 643825a484d2: Pull complete 67dabf16b113: Pull complete 4f4fb700ef54: Pull complete 9551114336f8: Pull complete 2a7bf6427e8c: Pull complete 1b47d47d94f8: Pull complete 4be82938ba83: Pull complete 80976f0d06a6: Pull complete 5bbf91e88fcf: Pull complete 10bde5a9d661: Pull complete 00617c3bf097: Pull complete 6dff02c33996: Pull complete 42aae9593b3f: Pull complete aec72d9c9e64: Pull complete 16d1596d51b2: Pull complete 9cbb5291df33: Pull complete 11ddb25ececc: Pull complete 46139e478336: Pull complete e852d99175ac: Pull complete 8efd7bff796c: Pull complete 49052a37c89a: Pull complete 3a99b4ee4231: Pull complete c75f7bd00dfc: Pull complete 00d438fe307c: Pull complete 0b6b272507f8: Pull complete Digest: sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db Status: Downloaded newer image for ocaml/opam@sha256:2b68d94b19df1225eb104c02ea729f98f15c2923cddd35ac73f883ef1570d4db 2026-03-17 19:17.45 ---> saved as "803d3abb0b30d9111098acbd495ef0082ad79e8f26595cf5193f0fdf5ac7c007" /: (comment debian-12-4.14_opam-2.5) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) 2026-03-17 19:17.45 ---> saved as "be39064392c922316f5e43243de103d15ddc965bc8763a22c341e0c9a34151eb" /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-03-17 19:18.11 ---> saved as "80e163142c89c25bd30d9e4388418870595e3828055a382b322da8351ae2e70f" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-101-generic The OCaml toplevel, version 4.14.2 2.5.0 2026-03-17 19:18.11 ---> saved as "8363f9073e832b63eb1abebdfdb614cae4914b44026cf7c73226e5d4223c2f50" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-03-17 19:18.11 ---> saved as "f3a7d1671b4872c2e2880bfbed5666be41e43f60697fd5e07446f336a2456514" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 31462e7d24da1419f9eb9099a0b60ea507d91ef6 || git fetch origin master) && git reset -q --hard 31462e7d24da1419f9eb9099a0b60ea507d91ef6 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 3109384a92..b1e61d3ad1 master -> origin/master 31462e7d24 Merge pull request #29451 from dra27/relocatable-package <><> 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.5.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-03-17 19:18.31 ---> saved as "e6eaecc9af6299142f317145d628f54b9fd642d9628180c11ecb8e83deb30b53" /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-03-17 19:18.31 ---> saved as "727dc1b3eb83290a715510db7d5fa3737d357fc6577e8fa0733c096677524530" /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-03-17 19:18.51 ---> saved as "a76a7a1bdc5890a9bb6cf33b26d2b9fd907cb4a2318bd7433458d97793fac3d5" /src: (run (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-03-17 19:18.52 ---> saved as "68cc0bca8cc82c710baf21308c473f59399c5ab6979e4d2812a4c9836b3c9f92" /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.1 dyn.3.21.1 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.1 loc.0.3.3 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.1 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.1 top-closure.3.21.1 topkg.1.1.1 yojson.3.0.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.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" - 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 [294 kB] - Fetched 398 kB in 0s (1265 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" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libpython3.11-minimal: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 ... 18755 files and directories currently installed.) - Preparing to unpack .../libpython3.11-minimal_3.11.2-6+deb12u6_amd64.deb ... - Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ... - Selecting previously unselected package python3.11-minimal. - Preparing to unpack .../python3.11-minimal_3.11.2-6+deb12u6_amd64.deb ... - Unpacking python3.11-minimal (3.11.2-6+deb12u6) ... - Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ... - Setting up python3.11-minimal (3.11.2-6+deb12u6) ... - 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 ... 19062 files and directories currently installed.) - Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ... - Unpacking python3-minimal (3.11.2-1+b1) ... - Selecting previously unselected package media-types. - Preparing to unpack .../media-types_10.0.0_all.deb ... - Unpacking media-types (10.0.0) ... - Selecting previously unselected package libpython3.11-stdlib:amd64. - Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u6_amd64.deb ... - Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ... - Selecting previously unselected package python3.11. - Preparing to unpack .../python3.11_3.11.2-6+deb12u6_amd64.deb ... - Unpacking python3.11 (3.11.2-6+deb12u6) ... - Selecting previously unselected package libpython3-stdlib:amd64. - Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ... - Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ... - Setting up python3-minimal (3.11.2-1+b1) ... - 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 ... 19472 files and directories currently installed.) - Preparing to unpack .../python3_3.11.2-1+b1_amd64.deb ... - Unpacking python3 (3.11.2-1+b1) ... - Selecting previously unselected package sensible-utils. - Preparing to unpack .../sensible-utils_0.0.17+nmu1_all.deb ... - Unpacking sensible-utils (0.0.17+nmu1) ... - Selecting previously unselected package ucf. - Preparing to unpack .../ucf_3.0043+nmu1+deb12u1_all.deb ... - Moving old data out of the way - Unpacking ucf (3.0043+nmu1+deb12u1) ... - Selecting previously unselected package mercurial-common. - Preparing to unpack .../mercurial-common_6.3.2-1+deb12u1_all.deb ... - Unpacking mercurial-common (6.3.2-1+deb12u1) ... - Selecting previously unselected package mercurial. - Preparing to unpack .../mercurial_6.3.2-1+deb12u1_amd64.deb ... - Unpacking mercurial (6.3.2-1+deb12u1) ... - Setting up media-types (10.0.0) ... - Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ... - Setting up sensible-utils (0.0.17+nmu1) ... - Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ... - Setting up python3.11 (3.11.2-6+deb12u6) ... - Setting up python3 (3.11.2-1+b1) ... - running python rtupdate hooks for python3.11... - running python post-rtupdate hooks for python3.11... - Setting up ucf (3.0043+nmu1+deb12u1) ... - Setting up mercurial-common (6.3.2-1+deb12u1) ... - Setting up mercurial (6.3.2-1+deb12u1) ... - - Creating config file /etc/mercurial/hgrc.d/hgext.rc with new version # To update the current shell environment, run: eval $(opam env) 2026-03-17 19:19.09 ---> saved as "88e3464a3ab2713f16342c22c088c253a83bcc8702ef69bc8243fe26fa7770b7" /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 28 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.1 - install dyn 3.21.1 - install fpath 0.7.3 - install fpath-sexp0 0.4.0 - install fs-io 3.21.1 - install loc 0.3.3 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ordering 3.21.1 - 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.1 - install top-closure 3.21.1 - install topkg 1.1.1 - install yojson 3.0.0 <><> 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 -> retrieved fpath.0.7.3 (cached) -> retrieved fpath-sexp0.0.4.0 (cached) -> retrieved loc.0.3.3 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> installed conf-hg.1.0 -> 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 yojson.3.0.0 (cached) -> retrieved dune.3.21.1, dyn.3.21.1, fs-io.3.21.1, ordering.3.21.1, stdune.3.21.1, top-closure.3.21.1 (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.1 -> 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.1 -> installed yojson.3.0.0 -> installed parsexp.v0.16.0 -> installed fs-io.3.21.1 -> installed top-closure.3.21.1 -> installed dyn.3.21.1 -> installed stdune.3.21.1 -> installed loc.0.3.3 -> 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-03-17 19:20.01 ---> saved as "8219889f940fdc53a0c970fcf3e05379e1aade6e927785e087e39405c063dc16" /src: (copy (src .) (dst /src)) 2026-03-17 19:20.01 ---> saved as "0b2b058519fe5deb2ed308d8dca4d58ab98a3387d0e1d95637610d1b715b2567" /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-03-17 19:20.03 ---> saved as "c37d5ddd45a06c0ccfc901e273d809f1a5018bc07dce638448260d0e0c00793b" Job succeeded 2026-03-17 19:20.03: Job succeeded