2026-01-26 18:50.23: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (f0f0a6f394b4f0601ac5c629b60756bd5dcc59b1) (linux-x86_64:ubuntu-22.04-5.4_opam-2.5)Base: ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edfOpam project buildTo reproduce locally:git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard f0f0a6f3cat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf# ubuntu-22.04-5.4_opam-2.5USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"WORKDIR /srcRUN sudo ln -f /usr/bin/opam-2.5 /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 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && git log --no-decorate -n1 --oneline && opam update -uCOPY --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.v0.17.3 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigstringaf.0.10.0 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 cstruct.6.2.0 domain-local-await.1.0.1 dune.3.21.0 dune-configurator.3.21.0 dyn.3.21.0 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 hmap.0.8.1 iomux.0.4 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.2.2 lwt-dllist.1.1.0 mtime.2.1.0 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 ordering.3.21.0 parsexp.v0.17.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_derivers.1.2.1 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_inline_test.v0.17.1 ppx_optcomp.v0.17.1 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 seq.base sexplib0.v0.17.0 spawn.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 stdune.3.21.0 thread-table.1.0.0 time_now.v0.17.0 top-closure.3.21.0 topkg.1.1.1 uring.2.7.0 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-eio.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-eio.dev volgo-git-backend.dev volgo-base.dev volgo-base-tests.dev vcs-test-helpers.dev $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . /srcRUN opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-eio,volgo-hg-backend,volgo-git-unix,volgo-git-eio,volgo-git-backend,volgo-base,volgo-base-tests,vcs-test-helpers @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2026-01-26 18:50.23: Using cache hint "mbarbin/vcs-ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf-ubuntu-22.04-5.4_opam-2.5-be65c61154d064e4c673dc00fa7ac6fa"2026-01-26 18:50.23: Using OBuilder spec:((from ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf)(comment ubuntu-22.04-5.4_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 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.v0.17.3 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigstringaf.0.10.0 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 cstruct.6.2.0 domain-local-await.1.0.1 dune.3.21.0 dune-configurator.3.21.0 dyn.3.21.0 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 hmap.0.8.1 iomux.0.4 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.2.2 lwt-dllist.1.1.0 mtime.2.1.0 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 ordering.3.21.0 parsexp.v0.17.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_derivers.1.2.1 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_inline_test.v0.17.1 ppx_optcomp.v0.17.1 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 seq.base sexplib0.v0.17.0 spawn.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 stdune.3.21.0 thread-table.1.0.0 time_now.v0.17.0 top-closure.3.21.0 topkg.1.1.1 uring.2.7.0 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-eio.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-eio.dev volgo-git-backend.dev volgo-base.dev volgo-base-tests.dev vcs-test-helpers.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-eio,volgo-hg-backend,volgo-git-unix,volgo-git-eio,volgo-git-backend,volgo-base,volgo-base-tests,vcs-test-helpers @install @check @runtest && rm -rf _build")))2026-01-26 18:50.23: Waiting for resource in pool OCluster2026-01-26 18:50.24: Waiting for worker…2026-01-26 18:50.24: Got resource from pool OClusterBuilding on bremusa.ocamllabs.ioHEAD is now at 46399fe Merge pull request #135 from mbarbin/cli-output-formatHEAD is now at f0f0a6f Wip adapt release workflow(from ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf)Unable to find image 'ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf' locallydocker.io/ocaml/opam@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf: Pulling from ocaml/opam7e49dc6156b0: Already exists65bdcb90cd9a: Pulling fs layer8a57a4c399f1: Pulling fs layer59c09820d352: Pulling fs layer0b0f4f66ef34: Pulling fs layere90294888346: Pulling fs layerce0c8e352950: Pulling fs layere1c547e72f55: Pulling fs layerf65f7d0d5a6b: Pulling fs layer5bf8f7b5ae47: Pulling fs layer4c0063a04a4f: Pulling fs layer8f78cdfec5cd: Pulling fs layer576b7ada738c: Pulling fs layer08e02ba26792: Pulling fs layer2178ec162f17: Pulling fs layer0b0f4f66ef34: Waiting1e3cdad8c2cf: Pulling fs layerb8bc66c50efe: Pulling fs layer4f4fb700ef54: Pulling fs layere1c547e72f55: Waitingc97176e241e4: Pulling fs layer4e3fb299a44e: Pulling fs layer4c0063a04a4f: Waiting918a18accca5: Pulling fs layera67fbef18c3b: Pulling fs layer493e62f841d2: Pulling fs layer63f963a03809: Pulling fs layer11fba2bf1c32: Pulling fs layer5bf8f7b5ae47: Waitinge90294888346: Waiting6566e414ef98: Pulling fs layerce0c8e352950: Waiting4e3fb299a44e: Waiting242773756c53: Pulling fs layer347353cb20e5: Pulling fs layer2178ec162f17: Waiting918a18accca5: Waitinga3406a4edb0c: Pulling fs layer410a36612209: Pulling fs layer576b7ada738c: Waiting2d65b6db5b4b: Pulling fs layerf3e3808d15ca: Pulling fs layer7acec8b986fd: Pulling fs layer11fba2bf1c32: Waiting242773756c53: Waitinga6c7dcc7803f: Pulling fs layer92d000ad2eb2: Pulling fs layera9b5fc1c0e92: Pulling fs layer8bc304301dd4: Pulling fs layer0712946836c1: Pulling fs layer47bb5b5c05ac: Pulling fs layerb8bc66c50efe: Waitingd05226ef3202: Pulling fs layer9204c000513f: Pulling fs layer1e3cdad8c2cf: Waitinga6c7dcc7803f: Waiting19ed4e99d5ff: Pulling fs layer08e02ba26792: Waitingbfa9cec314e2: Pulling fs layerf3e3808d15ca: Waitingace257d32dbc: Pulling fs layerd05226ef3202: Waitingd6fdef0c42fe: Pulling fs layer2bd2e738cdab: Pulling fs layer63f963a03809: Waitingbfa9cec314e2: Waitingace257d32dbc: Waitingd6fdef0c42fe: Waiting2bd2e738cdab: Waiting92d000ad2eb2: Waitinga67fbef18c3b: Waitinga9b5fc1c0e92: Waiting47bb5b5c05ac: Waiting410a36612209: Waiting347353cb20e5: Waiting4f4fb700ef54: Waiting2d65b6db5b4b: Waiting8bc304301dd4: Waiting19ed4e99d5ff: Waiting0712946836c1: Waiting8a57a4c399f1: Verifying Checksum8a57a4c399f1: Download complete65bdcb90cd9a: Download complete65bdcb90cd9a: Pull complete8a57a4c399f1: Pull complete59c09820d352: Verifying Checksum59c09820d352: Download complete0b0f4f66ef34: Verifying Checksum0b0f4f66ef34: Download completee1c547e72f55: Verifying Checksume1c547e72f55: Download complete59c09820d352: Pull complete0b0f4f66ef34: Pull completece0c8e352950: Verifying Checksumce0c8e352950: Download complete5bf8f7b5ae47: Verifying Checksum5bf8f7b5ae47: Download completee90294888346: Verifying Checksume90294888346: Download completef65f7d0d5a6b: Verifying Checksumf65f7d0d5a6b: Download complete8f78cdfec5cd: Verifying Checksum8f78cdfec5cd: Download complete4c0063a04a4f: Verifying Checksum4c0063a04a4f: Download complete576b7ada738c: Verifying Checksum576b7ada738c: Download complete2178ec162f17: Verifying Checksum2178ec162f17: Download complete1e3cdad8c2cf: Verifying Checksum1e3cdad8c2cf: Download complete08e02ba26792: Verifying Checksum08e02ba26792: Download completeb8bc66c50efe: Verifying Checksumb8bc66c50efe: Download complete4f4fb700ef54: Download completec97176e241e4: Verifying Checksumc97176e241e4: Download complete4e3fb299a44e: Verifying Checksum4e3fb299a44e: Download complete918a18accca5: Verifying Checksum918a18accca5: Download completea67fbef18c3b: Verifying Checksuma67fbef18c3b: Download complete493e62f841d2: Verifying Checksum493e62f841d2: Download complete63f963a03809: Verifying Checksum63f963a03809: Download complete11fba2bf1c32: Verifying Checksum11fba2bf1c32: Download complete6566e414ef98: Download complete242773756c53: Verifying Checksum242773756c53: Download complete347353cb20e5: Verifying Checksum347353cb20e5: Download completea3406a4edb0c: Verifying Checksuma3406a4edb0c: Download complete410a36612209: Verifying Checksum410a36612209: Download complete2d65b6db5b4b: Download completef3e3808d15ca: Verifying Checksumf3e3808d15ca: Download complete7acec8b986fd: Verifying Checksum7acec8b986fd: Download complete92d000ad2eb2: Download complete8bc304301dd4: Verifying Checksum8bc304301dd4: Download complete0712946836c1: Download complete47bb5b5c05ac: Download completed05226ef3202: Verifying Checksumd05226ef3202: Download complete9204c000513f: Verifying Checksum9204c000513f: Download completea6c7dcc7803f: Verifying Checksuma6c7dcc7803f: Download completee90294888346: Pull completece0c8e352950: Pull completee1c547e72f55: Pull complete19ed4e99d5ff: Verifying Checksum19ed4e99d5ff: Download completef65f7d0d5a6b: Pull completeace257d32dbc: Verifying Checksumace257d32dbc: Download complete5bf8f7b5ae47: Pull complete4c0063a04a4f: Pull completed6fdef0c42fe: Download complete8f78cdfec5cd: Pull completea9b5fc1c0e92: Verifying Checksuma9b5fc1c0e92: Download complete2bd2e738cdab: Verifying Checksum2bd2e738cdab: Download complete576b7ada738c: Pull complete08e02ba26792: Pull complete2178ec162f17: Pull complete1e3cdad8c2cf: Pull completeb8bc66c50efe: Pull complete4f4fb700ef54: Pull completec97176e241e4: Pull complete4e3fb299a44e: Pull complete918a18accca5: Pull completea67fbef18c3b: Pull complete493e62f841d2: Pull complete63f963a03809: Pull complete11fba2bf1c32: Pull complete6566e414ef98: Pull complete242773756c53: Pull complete347353cb20e5: Pull completea3406a4edb0c: Pull complete410a36612209: Pull complete2d65b6db5b4b: Pull completef3e3808d15ca: Pull complete7acec8b986fd: Pull completebfa9cec314e2: Verifying Checksumbfa9cec314e2: Download completea6c7dcc7803f: Pull complete92d000ad2eb2: Pull completea9b5fc1c0e92: Pull complete8bc304301dd4: Pull complete0712946836c1: Pull complete47bb5b5c05ac: Pull completed05226ef3202: Pull complete9204c000513f: Pull complete19ed4e99d5ff: Pull completebfa9cec314e2: Pull completeace257d32dbc: Pull completed6fdef0c42fe: Pull complete2bd2e738cdab: Pull completeDigest: sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edfStatus: Downloaded newer image for ocaml/opam@sha256:d4a27ab95df84adf31c981e5685c02ea85ca52f32f7984c6c442c99dc13b2edf2026-01-26 18:50.24 ---> using "7a9f40bfd6eae0cbe23271c7b8d132ab75e85de213c7201e41623cbd6253ba55" from cache/: (comment ubuntu-22.04-5.4_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-01-26 18:50.24 ---> using "b319cbce2e5705e4fb1f92cb4b1e300392daf9d5c0a365811116903b52ef003b" from cache/src: (run (shell "opam init --reinit -ni"))Configuring from /home/opam/.opamrc and then from built-in defaults.Checking for available remotes: rsync and local, git.- you won't be able to use mercurial repositories unless you install the hg command on your system.- you won't be able to use darcs repositories unless you install the darcs command on your system.Continue? [Y/n] yThis version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.You may want to back it up before going further.Format upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2026-01-26 18:50.24 ---> using "cbc98d5810fbee3548b36119d392c05238b7cc66ed66e48cd90cc2787f9d646c" from cache/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Linux 6.8.0-90-genericThe OCaml toplevel, version 5.4.02.5.02026-01-26 18:50.24 ---> using "9288545b90511a0a602819257c8eb0739b9dea6623a0f0619c6a9dd8ef570a92" from cache/src: (workdir /src)/src: (run (shell "sudo chown opam /src"))2026-01-26 18:50.24 ---> using "69ca65ba44feda7c5f5d730d820704de55c243e0d7f002705bf5d264fa34fb9e" 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_HEADa6b2f19780..f9f7db30fd master -> origin/master873cb18c37 Merge pull request #29216 from shonfeder/release-dune-3.21.0<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///home/opam/opam-repositoryAlready up-to-date.Nothing to do.# To update the current shell environment, run: eval $(opam env)2026-01-26 18:50.24 ---> using "0bca0cf3b4b7bd54868b1b6dc6a97d6efafdec63801daf44c7690b4cdbc27a7d" 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 18:50.24 ---> using "5f475ca9ece790f79d5c9f8b016fa57e3d986c5a889ef197e88be5a94d8b2f04" 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 18:50.24 ---> using "f4cfc8a6cdd605d8d6e6a4661f04d34f900a319a2d735101b9b5f0dfeddc8bfa" from cache/src: (run (network host)(shell "echo '(lang dune 3.0)' > './dune-project'"))2026-01-26 18:50.24 ---> using "de9f043fea7d5845b053b5637b23b02fe60db1051a732b630bd3be5b23eea007" from cache/src: (env DEPS "astring.0.8.5 base.v0.17.3 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigstringaf.0.10.0 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 cstruct.6.2.0 domain-local-await.1.0.1 dune.3.21.0 dune-configurator.3.21.0 dyn.3.21.0 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 hmap.0.8.1 iomux.0.4 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.2.2 lwt-dllist.1.1.0 mtime.2.1.0 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 ordering.3.21.0 parsexp.v0.17.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_derivers.1.2.1 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_inline_test.v0.17.1 ppx_optcomp.v0.17.1 ppx_sexp_conv.v0.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 seq.base sexplib0.v0.17.0 spawn.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 stdune.3.21.0 thread-table.1.0.0 time_now.v0.17.0 top-closure.3.21.0 topkg.1.1.1 uring.2.7.0 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-eio.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-eio.dev volgo-git-backend.dev volgo-base.dev volgo-base-tests.dev vcs-test-helpers.dev $DEPS"))+ /usr/bin/sudo "apt-get" "update"- Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease- Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]- Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]- Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]- Get:5 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1293 kB]- Get:6 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [61.5 kB]- Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3640 kB]- Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1604 kB]- Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [6486 kB]- Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3971 kB]- Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [86.7 kB]- Fetched 17.5 MB in 1s (12.3 MB/s)- Reading package lists...-<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>[vcs-test-helpers.dev] synchronised (file:///src)[volgo.dev] synchronised (file:///src)[volgo-base.dev] synchronised (file:///src)[volgo-base-tests.dev] synchronised (file:///src)[volgo-git-backend.dev] synchronised (file:///src)[volgo-git-eio.dev] synchronised (file:///src)[volgo-git-unix.dev] synchronised (file:///src)[volgo-hg-backend.dev] synchronised (file:///src)[volgo-hg-eio.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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.0).[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-nnp is already installed (current version is base).[NOTE] Package base-effects is already installed (current version is base).[NOTE] Package base-domains 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.10-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 ... 15669 files and directories currently installed.)- Preparing to unpack .../libpython3.10-minimal_3.10.12-1~22.04.13_amd64.deb ...- Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.13) ...- Selecting previously unselected package python3.10-minimal.- Preparing to unpack .../python3.10-minimal_3.10.12-1~22.04.13_amd64.deb ...- Unpacking python3.10-minimal (3.10.12-1~22.04.13) ...- Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.13) ...- Setting up python3.10-minimal (3.10.12-1~22.04.13) ...- 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 ... 15965 files and directories currently installed.)- Preparing to unpack .../0-python3-minimal_3.10.6-1~22.04.1_amd64.deb ...- Unpacking python3-minimal (3.10.6-1~22.04.1) ...- Selecting previously unselected package media-types.- Preparing to unpack .../1-media-types_7.0.0_all.deb ...- Unpacking media-types (7.0.0) ...- Selecting previously unselected package libmpdec3:amd64.- Preparing to unpack .../2-libmpdec3_2.5.1-2build2_amd64.deb ...- Unpacking libmpdec3:amd64 (2.5.1-2build2) ...- Selecting previously unselected package libpython3.10-stdlib:amd64.- Preparing to unpack .../3-libpython3.10-stdlib_3.10.12-1~22.04.13_amd64.deb ...- Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.13) ...- Selecting previously unselected package python3.10.- Preparing to unpack .../4-python3.10_3.10.12-1~22.04.13_amd64.deb ...- Unpacking python3.10 (3.10.12-1~22.04.13) ...- Selecting previously unselected package libpython3-stdlib:amd64.- Preparing to unpack .../5-libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb ...- Unpacking libpython3-stdlib:amd64 (3.10.6-1~22.04.1) ...- Setting up python3-minimal (3.10.6-1~22.04.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 ... 16367 files and directories currently installed.)- Preparing to unpack .../python3_3.10.6-1~22.04.1_amd64.deb ...- Unpacking python3 (3.10.6-1~22.04.1) ...- Selecting previously unselected package mercurial-common.- Preparing to unpack .../mercurial-common_6.1.1-1ubuntu1_all.deb ...- Unpacking mercurial-common (6.1.1-1ubuntu1) ...- Selecting previously unselected package mercurial.- Preparing to unpack .../mercurial_6.1.1-1ubuntu1_amd64.deb ...- Unpacking mercurial (6.1.1-1ubuntu1) ...- Setting up media-types (7.0.0) ...- Setting up libmpdec3:amd64 (2.5.1-2build2) ...- Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.13) ...- Setting up libpython3-stdlib:amd64 (3.10.6-1~22.04.1) ...- Setting up python3.10 (3.10.12-1~22.04.13) ...- Setting up python3 (3.10.6-1~22.04.1) ...- running python rtupdate hooks for python3.10...- running python post-rtupdate hooks for python3.10...- Setting up mercurial-common (6.1.1-1ubuntu1) ...- Setting up mercurial (6.1.1-1ubuntu1) ...-- Creating config file /etc/mercurial/hgrc.d/hgext.rc with new version- Processing triggers for libc-bin (2.35-0ubuntu3.11) ...# To update the current shell environment, run: eval $(opam env)2026-01-26 18:50.24 ---> using "10a8952f4e44db861b0bfaf3557c26860a9603800569c000a1c41c26502eb235" 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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.0).[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-nnp is already installed (current version is base).[NOTE] Package base-effects is already installed (current version is base).[NOTE] Package base-domains 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 69 packages- install astring 0.8.5- install base v0.17.3- install bigstringaf 0.10.0- 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 cstruct 6.2.0- install domain-local-await 1.0.1- install dune 3.21.0- install dune-configurator 3.21.0- install dyn 3.21.0- install eio 1.3- install eio_linux 1.3- install eio_main 1.3- install eio_posix 1.3- install fmt 0.11.0- install fpath 0.7.3- install fpath-sexp0 0.4.0- install fs-io 3.21.0- install hmap 0.8.1- install iomux 0.4- install jane-street-headers v0.17.0- install jst-config v0.17.0- install loc 0.2.2- install lwt-dllist 1.1.0- install mtime 2.1.0- install ocaml-compiler-libs v0.17.0- install ocaml_intrinsics_kernel v0.17.1- install ocamlbuild 0.16.1- install ocamlfind 1.9.8- install optint 0.3.0- install ordering 3.21.0- install parsexp v0.17.0- install pp 2.0.0- install pplumbing-err 0.0.16- install pplumbing-pp-tty 0.0.16- install ppx_assert v0.17.0- install ppx_base v0.17.0- install ppx_cold v0.17.0- install ppx_compare v0.17.0- install ppx_derivers 1.2.1- install ppx_enumerate v0.17.0- install ppx_expect v0.17.3- install ppx_globalize v0.17.2- install ppx_hash v0.17.0- install ppx_here v0.17.0- install ppx_inline_test v0.17.1- install ppx_optcomp v0.17.1- install ppx_sexp_conv v0.17.1- install ppxlib 0.37.0- install ppxlib_jane v0.17.4- install psq 0.2.1- install seq base- install sexplib0 v0.17.0- install spawn v0.17.0- install stdio v0.17.0- install stdlib-shims 0.3.0- install stdune 3.21.0- install thread-table 1.0.0- install time_now v0.17.0- install top-closure 3.21.0- install topkg 1.1.1- install uring 2.7.0- install yojson 3.0.0<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>-> retrieved astring.0.8.5 (cached)-> retrieved bitv.2.1 (cached)-> retrieved bigstringaf.0.10.0 (https://opam.ocaml.org/cache)-> retrieved base.v0.17.3 (https://opam.ocaml.org/cache)-> 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 domain-local-await.1.0.1 (https://opam.ocaml.org/cache)-> retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)-> retrieved eio.1.3, eio_linux.1.3, eio_main.1.3, eio_posix.1.3 (https://opam.ocaml.org/cache)-> retrieved fpath.0.7.3 (cached)-> retrieved fpath-sexp0.0.4.0 (cached)-> retrieved dune.3.21.0, dune-configurator.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)-> retrieved hmap.0.8.1 (https://opam.ocaml.org/cache)-> retrieved iomux.0.4 (https://opam.ocaml.org/cache)-> retrieved jane-street-headers.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved loc.0.2.2 (cached)-> installed cmdliner.2.1.0-> retrieved jst-config.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved lwt-dllist.1.1.0 (https://opam.ocaml.org/cache)-> retrieved mtime.2.1.0 (https://opam.ocaml.org/cache)-> retrieved ocamlbuild.0.16.1 (cached)-> retrieved ocamlfind.1.9.8 (cached)-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ocaml_intrinsics_kernel.v0.17.1 (https://opam.ocaml.org/cache)-> retrieved pp.2.0.0 (cached)-> retrieved optint.0.3.0 (https://opam.ocaml.org/cache)-> retrieved ppx_assert.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved parsexp.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_base.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_cold.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)-> retrieved ppx_compare.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_enumerate.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_globalize.v0.17.2 (https://opam.ocaml.org/cache)-> retrieved ppx_expect.v0.17.3 (https://opam.ocaml.org/cache)-> retrieved ppx_hash.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_here.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved ppx_inline_test.v0.17.1 (https://opam.ocaml.org/cache)-> retrieved ppx_optcomp.v0.17.1 (https://opam.ocaml.org/cache)-> retrieved ppx_sexp_conv.v0.17.1 (https://opam.ocaml.org/cache)-> retrieved ppxlib_jane.v0.17.4 (https://opam.ocaml.org/cache)-> retrieved psq.0.2.1 (https://opam.ocaml.org/cache)-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)-> retrieved spawn.v0.17.0 (cached)-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved seq.base (2 extra sources)-> retrieved seq.base (2 extra sources)-> installed seq.base-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)-> retrieved stdio.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved topkg.1.1.1 (cached)-> retrieved time_now.v0.17.0 (https://opam.ocaml.org/cache)-> retrieved thread-table.1.0.0 (https://opam.ocaml.org/cache)-> retrieved yojson.3.0.0 (cached)-> retrieved uring.2.7.0 (https://opam.ocaml.org/cache)-> installed ocamlfind.1.9.8-> installed ocamlbuild.0.16.1-> installed topkg.1.1.1-> installed hmap.0.8.1-> installed mtime.2.1.0-> installed fmt.0.11.0-> 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 cstruct.6.2.0-> installed jane-street-headers.v0.17.0-> installed lwt-dllist.1.1.0-> installed ocaml-compiler-libs.v0.17.0-> installed ocaml_intrinsics_kernel.v0.17.1-> installed optint.0.3.0-> installed pp.2.0.0-> installed ppx_derivers.1.2.1-> installed psq.0.2.1-> installed sexplib0.v0.17.0-> installed spawn.v0.17.0-> installed stdlib-shims.0.3.0-> installed thread-table.1.0.0-> installed yojson.3.0.0-> installed cmdlang-to-cmdliner.0.0.10-> installed fpath-sexp0.0.4.0-> installed domain-local-await.1.0.1-> installed ordering.3.21.0-> installed parsexp.v0.17.0-> installed fs-io.3.21.0-> installed top-closure.3.21.0-> installed dune-configurator.3.21.0-> installed bigstringaf.0.10.0-> installed iomux.0.4-> installed dyn.3.21.0-> installed eio.1.3-> installed uring.2.7.0-> installed eio_linux.1.3-> installed eio_posix.1.3-> installed eio_main.1.3-> 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-> installed base.v0.17.3-> installed stdio.v0.17.0-> installed ppxlib.0.37.0-> installed ppxlib_jane.v0.17.4-> installed ppx_optcomp.v0.17.1-> installed ppx_cold.v0.17.0-> installed ppx_here.v0.17.0-> installed ppx_enumerate.v0.17.0-> installed ppx_globalize.v0.17.2-> installed ppx_compare.v0.17.0-> installed ppx_sexp_conv.v0.17.1-> installed ppx_hash.v0.17.0-> installed ppx_assert.v0.17.0-> installed ppx_base.v0.17.0-> installed jst-config.v0.17.0-> installed time_now.v0.17.0-> installed ppx_inline_test.v0.17.1-> installed ppx_expect.v0.17.3Done.# To update the current shell environment, run: eval $(opam env)2026-01-26 18:50.24 ---> using "a552ab8db8abf05d0b4d022654aa24ef205761159e4e1ee24086dd010d605199" from cache/src: (copy (src .) (dst /src))2026-01-26 18:50.25 ---> saved as "a12ed4933c582fbee18d89d05389e66253156118623216cf416201a1695688cf"/src: (run (shell "opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-eio,volgo-hg-backend,volgo-git-unix,volgo-git-eio,volgo-git-backend,volgo-base,volgo-base-tests,vcs-test-helpers @install @check @runtest && rm -rf _build"))2026-01-26 18:50.34 ---> saved as "faa06a8ea6698f5a0889aa802f9bc6dceb7d548258cb366df3a51eefbc555d8c"Job succeeded2026-01-26 18:50.35: Job succeeded