2025-07-31 07:26.48: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (75290ac0f07c28bbaefdbb6e3084f8dfb92e7e72) (linux-x86_64:ubuntu-25.04-4.14_opam-2.4) Base: ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard 75290ac0 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca # ubuntu-25.04-4.14_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.4 /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 e77940d8ff8706305602d0d643bf01c77beef2e7 || git fetch origin master) && git reset -q --hard e77940d8ff8706305602d0d643bf01c77beef2e7 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam vcs-test-helpers.opam ./ RUN opam pin add -yn volgo.dev './' && \ opam pin add -yn volgo-vcs.dev './' && \ opam pin add -yn volgo-tests.dev './' && \ opam pin add -yn volgo-hg-unix.dev './' && \ opam pin add -yn volgo-hg-eio.dev './' && \ opam pin add -yn volgo-hg-backend.dev './' && \ opam pin add -yn volgo-git-unix.dev './' && \ opam pin add -yn volgo-git-eio.dev './' && \ opam pin add -yn volgo-git-backend.dev './' && \ opam pin add -yn volgo-dev.dev './' && \ opam pin add -yn volgo-base.dev './' && \ opam pin add -yn vcs-test-helpers.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="astring.0.8.5 base.v0.16.4 base-bigarray.base base-threads.base base-unix.base cmdlang.0.0.9 cmdlang-to-cmdliner.0.0.9 cmdliner.1.3.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.1 dyn.3.19.1 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.3.1 loc.0.2.2 logs.0.9.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.19.1 parsexp.v0.16.0 pp.2.0.0 pplumbing.0.0.14 ppx_derivers.1.2.1 ppx_enumerate.v0.16.0 ppx_here.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_value.v0.16.0 ppxlib.0.35.0 sexplib0.v0.16.0 spawn.v0.17.0 stdlib-shims.0.3.0 stdune.3.19.1 topkg.1.1.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --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 2025-07-31 07:26.48: Using cache hint "mbarbin/vcs-ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca-ubuntu-25.04-4.14_opam-2.4-1a14e5c7b0cfe263114e45ec7b65f6a7" 2025-07-31 07:26.48: Using OBuilder spec: ((from ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca) (comment ubuntu-25.04-4.14_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.4 /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 e77940d8ff8706305602d0d643bf01c77beef2e7 || git fetch origin master) && git reset -q --hard e77940d8ff8706305602d0d643bf01c77beef2e7 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam vcs-test-helpers.opam) (dst ./)) (run (network host) (shell "opam pin add -yn volgo.dev './' && \ \nopam pin add -yn volgo-vcs.dev './' && \ \nopam pin add -yn volgo-tests.dev './' && \ \nopam pin add -yn volgo-hg-unix.dev './' && \ \nopam pin add -yn volgo-hg-eio.dev './' && \ \nopam pin add -yn volgo-hg-backend.dev './' && \ \nopam pin add -yn volgo-git-unix.dev './' && \ \nopam pin add -yn volgo-git-eio.dev './' && \ \nopam pin add -yn volgo-git-backend.dev './' && \ \nopam pin add -yn volgo-dev.dev './' && \ \nopam pin add -yn volgo-base.dev './' && \ \nopam pin add -yn vcs-test-helpers.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "astring.0.8.5 base.v0.16.4 base-bigarray.base base-threads.base base-unix.base cmdlang.0.0.9 cmdlang-to-cmdliner.0.0.9 cmdliner.1.3.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.1 dyn.3.19.1 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.3.1 loc.0.2.2 logs.0.9.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.19.1 parsexp.v0.16.0 pp.2.0.0 pplumbing.0.0.14 ppx_derivers.1.2.1 ppx_enumerate.v0.16.0 ppx_here.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_value.v0.16.0 ppxlib.0.35.0 sexplib0.v0.16.0 spawn.v0.17.0 stdlib-shims.0.3.0 stdune.3.19.1 topkg.1.1.0") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.4 --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")) ) 2025-07-31 07:26.48: Waiting for resource in pool OCluster 2025-07-31 08:24.11: Waiting for worker… 2025-07-31 08:27.01: Got resource from pool OCluster Building on bremusa.ocamllabs.io All commits already cached HEAD is now at 75290ac Fix some typos about Mercurial (from ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca) Unable to find image 'ocaml/opam:ubuntu-25.04-ocaml-4.14@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca' locally docker.io/ocaml/opam@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca: Pulling from ocaml/opam 60fb2420030a: Already exists 30a5b9bffc59: Already exists e76e7b0fd035: Already exists 87fd98c989d0: Already exists fc31fa993861: Already exists c75b71d41442: Already exists 9f08a6d6f6f5: Already exists 3dfc106a9c15: Already exists 1c3a6d2a01a7: Already exists 2d648021ecec: Already exists ffcf097292c2: Already exists e1bcef442ada: Already exists 61993b76460e: Already exists 929a57e31854: Already exists 826e2c54b1a9: Already exists eec17caf12a0: Already exists eec17caf12a0: Already exists 9259e842febf: Already exists ae77b4e577af: Already exists 61c1d61eb8ba: Already exists d7a0435c7be4: Already exists 4f4fb700ef54: Already exists 67b39cdc1121: Already exists 217bd9b7b99f: Already exists 1c96670814d1: Already exists ccd441a4e677: Already exists 9e7324b47fd8: Already exists 0ec34067023b: Already exists 33125ff80400: Already exists b383373ace10: Already exists 447883287ba9: Already exists cb78f5b619b6: Already exists d52ede671661: Already exists fa458c0e5391: Already exists 6f79814c75aa: Already exists 852246b3a53d: Already exists 8a24940dc348: Already exists 27ffa6c8c05e: Already exists 83b8efa25d5a: Already exists b7a79da3b9f8: Already exists 132e77d73f7f: Pulling fs layer cc12f00dd0be: Pulling fs layer 3312776b6873: Pulling fs layer 6853ba2d9c47: Pulling fs layer cc12f00dd0be: Waiting 132e77d73f7f: Waiting 3312776b6873: Waiting 6853ba2d9c47: Waiting 132e77d73f7f: Verifying Checksum 132e77d73f7f: Download complete cc12f00dd0be: Download complete 3312776b6873: Download complete 6853ba2d9c47: Download complete 132e77d73f7f: Pull complete cc12f00dd0be: Pull complete 3312776b6873: Pull complete 6853ba2d9c47: Pull complete Digest: sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca Status: Downloaded newer image for ocaml/opam@sha256:779fe3e8adee8595b832aced56824d9d13d0be832ef776548413a808dd2134ca 2025-07-31 08:27.02 ---> using "db10c73956f19687df50e70fc2a6ec82e83bd4ced477aa335db11ce5a5ded33d" from cache /: (comment ubuntu-25.04-4.14_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam")) 2025-07-31 08:27.02 ---> using "607f475d86682b8922ca64d778be67777803bdb02a1111a19f7e2368a92640c5" 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] y 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. Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-07-31 08:27.02 ---> using "d5812e409cdf2de6b137a3c943320ca0e0bdc091bd85e44c8cfa24823bf5dd50" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-63-generic The OCaml toplevel, version 4.14.2 2.4.1 2025-07-31 08:27.02 ---> using "e8e07bcdba13a5ac17e8bc4b0a9806f88dc997a3ee2245ba216eb2957362da39" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-07-31 08:27.02 ---> using "3be4daf05c9dcba399fe091401d8741072a8e09673202c2358d57040a95d7cef" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e e77940d8ff8706305602d0d643bf01c77beef2e7 || git fetch origin master) && git reset -q --hard e77940d8ff8706305602d0d643bf01c77beef2e7 && git log --no-decorate -n1 --oneline && opam update -u")) e77940d8ff Merge pull request #28255 from dbuenzli/b0-publish-fmt.0.11.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.3.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) 2025-07-31 08:27.02 ---> using "b94b13afc8fe08fc0638ce3d2910ff4cbd55d8994d0aaeef348d96552cc2025c" 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 vcs-test-helpers.opam) (dst ./)) 2025-07-31 08:27.02 ---> saved as "a0ad21f9bea56680d7bf0b66f56e72b06763431854a3e1a075abbb471322ae56" /src: (run (network host) (shell "opam pin add -yn volgo.dev './' && \ \nopam pin add -yn volgo-vcs.dev './' && \ \nopam pin add -yn volgo-tests.dev './' && \ \nopam pin add -yn volgo-hg-unix.dev './' && \ \nopam pin add -yn volgo-hg-eio.dev './' && \ \nopam pin add -yn volgo-hg-backend.dev './' && \ \nopam pin add -yn volgo-git-unix.dev './' && \ \nopam pin add -yn volgo-git-eio.dev './' && \ \nopam pin add -yn volgo-git-backend.dev './' && \ \nopam pin add -yn volgo-dev.dev './' && \ \nopam pin add -yn volgo-base.dev './' && \ \nopam pin add -yn vcs-test-helpers.dev './'")) [volgo.dev] synchronised (file:///src) volgo is now pinned to file:///src (version dev) [volgo-vcs.dev] synchronised (file:///src) volgo-vcs is now pinned to file:///src (version dev) [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 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) 2025-07-31 08:27.31 ---> saved as "7205773c8cb1ca658dc6d0111758097b1f44d4463c5390aca48fcf2d4fbac706" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-07-31 08:27.32 ---> saved as "2bccfad348cbcce226684064b3c41ed6763d1aacc3e080f8d7011dc815dd7e0b" /src: (env DEPS "astring.0.8.5 base.v0.16.4 base-bigarray.base base-threads.base base-unix.base cmdlang.0.0.9 cmdlang-to-cmdliner.0.0.9 cmdliner.1.3.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.1 dyn.3.19.1 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.3.1 loc.0.2.2 logs.0.9.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.19.1 parsexp.v0.16.0 pp.2.0.0 pplumbing.0.0.14 ppx_derivers.1.2.1 ppx_enumerate.v0.16.0 ppx_here.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_value.v0.16.0 ppxlib.0.35.0 sexplib0.v0.16.0 spawn.v0.17.0 stdlib-shims.0.3.0 stdune.3.19.1 topkg.1.1.0") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.4 --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://archive.ubuntu.com/ubuntu plucky InRelease - Get:2 http://archive.ubuntu.com/ubuntu plucky-updates InRelease [126 kB] - Get:3 http://security.ubuntu.com/ubuntu plucky-security InRelease [126 kB] - Get:4 http://archive.ubuntu.com/ubuntu plucky-backports InRelease [126 kB] - Get:5 http://archive.ubuntu.com/ubuntu plucky-updates/restricted amd64 Packages [181 kB] - Get:6 http://archive.ubuntu.com/ubuntu plucky-updates/main amd64 Packages [333 kB] - Get:7 http://security.ubuntu.com/ubuntu plucky-security/universe amd64 Packages [129 kB] - Get:8 http://archive.ubuntu.com/ubuntu plucky-updates/universe amd64 Packages [231 kB] - Get:9 http://security.ubuntu.com/ubuntu plucky-security/restricted amd64 Packages [163 kB] - Get:10 http://security.ubuntu.com/ubuntu plucky-security/main amd64 Packages [217 kB] - Fetched 1632 kB in 0s (5382 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: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 ... 16503 files and directories currently installed.) - Preparing to unpack .../libpython3.13-minimal_3.13.3-1ubuntu0.2_amd64.deb ... - Unpacking libpython3.13-minimal:amd64 (3.13.3-1ubuntu0.2) ... - Selecting previously unselected package python3.13-minimal. - Preparing to unpack .../python3.13-minimal_3.13.3-1ubuntu0.2_amd64.deb ... - Unpacking python3.13-minimal (3.13.3-1ubuntu0.2) ... - Setting up libpython3.13-minimal:amd64 (3.13.3-1ubuntu0.2) ... - Setting up python3.13-minimal (3.13.3-1ubuntu0.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 ... 16828 files and directories currently installed.) - Preparing to unpack .../0-python3-minimal_3.13.3-1_amd64.deb ... - Unpacking python3-minimal (3.13.3-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 tzdata. - Preparing to unpack .../2-tzdata_2025b-1ubuntu1.1_all.deb ... - Unpacking tzdata (2025b-1ubuntu1.1) ... - Selecting previously unselected package libpython3.13-stdlib:amd64. - Preparing to unpack .../3-libpython3.13-stdlib_3.13.3-1ubuntu0.2_amd64.deb ... - Unpacking libpython3.13-stdlib:amd64 (3.13.3-1ubuntu0.2) ... - Selecting previously unselected package python3.13. - Preparing to unpack .../4-python3.13_3.13.3-1ubuntu0.2_amd64.deb ... - Unpacking python3.13 (3.13.3-1ubuntu0.2) ... - Selecting previously unselected package libpython3-stdlib:amd64. - Preparing to unpack .../5-libpython3-stdlib_3.13.3-1_amd64.deb ... - Unpacking libpython3-stdlib:amd64 (3.13.3-1) ... - Setting up python3-minimal (3.13.3-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 ... 17795 files and directories currently installed.) - Preparing to unpack .../0-python3_3.13.3-1_amd64.deb ... - Unpacking python3 (3.13.3-1) ... - Selecting previously unselected package libtext-charwidth-perl:amd64. - Preparing to unpack .../1-libtext-charwidth-perl_0.04-11build4_amd64.deb ... - Unpacking libtext-charwidth-perl:amd64 (0.04-11build4) ... - Selecting previously unselected package libtext-wrapi18n-perl. - Preparing to unpack .../2-libtext-wrapi18n-perl_0.06-10_all.deb ... - Unpacking libtext-wrapi18n-perl (0.06-10) ... - Selecting previously unselected package ucf. - Preparing to unpack .../3-ucf_3.0050_all.deb ... - Moving old data out of the way - Unpacking ucf (3.0050) ... - Selecting previously unselected package mercurial-common. - Preparing to unpack .../4-mercurial-common_6.9.4-1_all.deb ... - Unpacking mercurial-common (6.9.4-1) ... - Selecting previously unselected package mercurial. - Preparing to unpack .../5-mercurial_6.9.4-1_amd64.deb ... - Unpacking mercurial (6.9.4-1) ... - Setting up media-types (13.0.0) ... - Setting up libtext-charwidth-perl:amd64 (0.04-11build4) ... - Setting up libtext-wrapi18n-perl (0.06-10) ... - Setting up tzdata (2025b-1ubuntu1.1) ... - - Current default time zone: 'Europe/London' - Local time is now: Thu Jul 31 09:28:04 BST 2025. - Universal Time is now: Thu Jul 31 08:28:04 UTC 2025. - Run 'dpkg-reconfigure tzdata' if you wish to change it. - - Setting up ucf (3.0050) ... - Setting up libpython3.13-stdlib:amd64 (3.13.3-1ubuntu0.2) ... - Setting up libpython3-stdlib:amd64 (3.13.3-1) ... - Setting up python3.13 (3.13.3-1ubuntu0.2) ... - Setting up python3 (3.13.3-1) ... - running python rtupdate hooks for python3.13... - running python post-rtupdate hooks for python3.13... - Setting up mercurial-common (6.9.4-1) ... - Setting up mercurial (6.9.4-1) ... - Creating config file /etc/mercurial/hgrc.d/hgext.rc with new version 2025-07-31 08:28.12 ---> saved as "00f0f3340a1c39452f495a1e456055ad7b98872fa3029fe42972ed6cb4201d07" /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 34 packages - install astring 0.8.5 - install base v0.16.4 - install cmdlang 0.0.9 - install cmdlang-to-cmdliner 0.0.9 - install cmdliner 1.3.0 - install conf-git 1.1 - install conf-hg 1.0 - install csexp 1.5.2 - install dune 3.19.1 - install dune-configurator 3.19.1 - install dyn 3.19.1 - install fmt 0.11.0 - install fpath 0.7.3 - install fpath-sexp0 0.3.1 - install loc 0.2.2 - install logs 0.9.0 - install ocaml-compiler-libs v0.12.4 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ordering 3.19.1 - install parsexp v0.16.0 - install pp 2.0.0 - install pplumbing 0.0.14 - install ppx_derivers 1.2.1 - install ppx_enumerate v0.16.0 - install ppx_here v0.16.0 - install ppx_sexp_conv v0.16.0 - install ppx_sexp_value v0.16.0 - install ppxlib 0.35.0 - install sexplib0 v0.16.0 - install spawn v0.17.0 - install stdlib-shims 0.3.0 - install stdune 3.19.1 - install topkg 1.1.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved astring.0.8.5 (cached) -> retrieved base.v0.16.4 (cached) -> retrieved cmdlang.0.0.9, cmdlang-to-cmdliner.0.0.9 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-git.1.1 -> retrieved fmt.0.11.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved fpath-sexp0.0.3.1 (cached) -> retrieved loc.0.2.2 (cached) -> retrieved logs.0.9.0 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved parsexp.v0.16.0 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> installed conf-hg.1.0 -> retrieved pplumbing.0.0.14 (cached) -> retrieved ppx_enumerate.v0.16.0 (cached) -> retrieved ppx_here.v0.16.0 (cached) -> retrieved ppx_sexp_value.v0.16.0 (cached) -> retrieved ppx_sexp_conv.v0.16.0 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved spawn.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved topkg.1.1.0 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved dune.3.19.1, dune-configurator.3.19.1, dyn.3.19.1, ordering.3.19.1, stdune.3.19.1 (cached) -> installed cmdliner.1.3.0 -> installed ocamlbuild.0.16.1 -> installed ocamlfind.1.9.8 -> installed topkg.1.1.0 -> installed fmt.0.11.0 -> installed astring.0.8.5 -> installed logs.0.9.0 -> installed fpath.0.7.3 -> installed dune.3.19.1 -> installed cmdlang.0.0.9 -> installed csexp.1.5.2 -> installed ocaml-compiler-libs.v0.12.4 -> installed pp.2.0.0 -> installed ppx_derivers.1.2.1 -> installed sexplib0.v0.16.0 -> installed spawn.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed cmdlang-to-cmdliner.0.0.9 -> installed fpath-sexp0.0.3.1 -> installed ordering.3.19.1 -> installed parsexp.v0.16.0 -> installed dune-configurator.3.19.1 -> installed dyn.3.19.1 -> installed stdune.3.19.1 -> installed loc.0.2.2 -> installed pplumbing.0.0.14 -> installed base.v0.16.4 -> installed ppxlib.0.35.0 -> installed ppx_enumerate.v0.16.0 -> installed ppx_here.v0.16.0 -> installed ppx_sexp_conv.v0.16.0 -> installed ppx_sexp_value.v0.16.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-31 08:31.49 ---> saved as "b6af62f62aa836268f98a89ec7074a46ca89fe1bb664c1875940cf39f1f40220" /src: (copy (src .) (dst /src)) 2025-07-31 08:31.51 ---> saved as "43d93d9e01e4346f0397c4492f383cdeb782a2aba0c22952c72dd1e54b9e2dac" /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")) 2025-07-31 08:32.07 ---> saved as "b9c4f24935b89393e64ba044e78161d8d9542feadb1fd66421d2ce0bd74bdcab" Job succeeded 2025-07-31 08:32.07: Job succeeded