Organisationsmbarbinvcs08c01c ()opensuse-16.0-5.4_opam-2.5

opensuse-16.0-5.4_opam-2.5

Link Copied
Code Copied

Logs

2026-01-26 20:25.45: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/retrieve-cli-output-default (08c01cf51f7fdf47935184c1eed405675f9c7201) (linux-x86_64:opensuse-16.0-5.4_opam-2.5)
Base: ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/mbarbin/vcs.git" -b "retrieve-cli-output-default" && cd "vcs" && git reset --hard 08c01cf5
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a
# opensuse-16.0-5.4_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 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam volgo-base-tests.opam vcs-test-helpers.opam ./
RUN opam pin add -yn volgo.dev './' && \
opam pin add -yn volgo-vcs.dev './' && \
opam pin add -yn volgo-tests.dev './' && \
opam pin add -yn volgo-hg-unix.dev './' && \
opam pin add -yn volgo-hg-eio.dev './' && \
opam pin add -yn volgo-hg-backend.dev './' && \
opam pin add -yn volgo-git-unix.dev './' && \
opam pin add -yn volgo-git-eio.dev './' && \
opam pin add -yn volgo-git-backend.dev './' && \
opam pin add -yn volgo-dev.dev './' && \
opam pin add -yn volgo-base.dev './' && \
opam pin add -yn volgo-base-tests.dev './' && \
opam pin add -yn vcs-test-helpers.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="astring.0.8.5 base.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 $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-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


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2026-01-26 20:25.45: Using cache hint "mbarbin/vcs-ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a-opensuse-16.0-5.4_opam-2.5-be65c61154d064e4c673dc00fa7ac6fa"
2026-01-26 20:25.45: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a)
(comment opensuse-16.0-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 20:25.45: Waiting for resource in pool OCluster
2026-01-26 20:25.45: Waiting for worker…
2026-01-26 20:25.45: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at 08c01cf Acually include the guide


(from ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a)
Unable to find image 'ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a' locally
docker.io/ocaml/opam@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a: Pulling from ocaml/opam
64cfa2a65095: Pulling fs layer
1edcfb1efe19: Pulling fs layer
3ddbff1fae48: Pulling fs layer
6f97b42e121d: Pulling fs layer
35edc2941e66: Pulling fs layer
664494e6aa3b: Pulling fs layer
1edcfb1efe19: Waiting
3ddbff1fae48: Waiting
6e72e374834b: Pulling fs layer
6f97b42e121d: Waiting
9897d53e41d9: Pulling fs layer
64cfa2a65095: Waiting
5955f0d634c5: Pulling fs layer
664494e6aa3b: Waiting
39569ccf3df4: Pulling fs layer
6e72e374834b: Waiting
9897d53e41d9: Waiting
3835c4318084: Pulling fs layer
549825d0ab03: Pulling fs layer
39569ccf3df4: Waiting
5955f0d634c5: Waiting
6e7368d99114: Pulling fs layer
cb6191f3eef1: Pulling fs layer
6e7368d99114: Waiting
188d98a9d457: Pulling fs layer
d034bf0e16e1: Pulling fs layer
cb6191f3eef1: Waiting
188d98a9d457: Waiting
8cb90b8f1fc2: Pulling fs layer
5fad6a4c52b5: Pulling fs layer
debd84a910b3: Pulling fs layer
debd84a910b3: Waiting
4f4fb700ef54: Pulling fs layer
8cb90b8f1fc2: Waiting
d034bf0e16e1: Waiting
152a68323944: Pulling fs layer
1f7f98a5f0d2: Pulling fs layer
667866023596: Pulling fs layer
474d64aaa83a: Pulling fs layer
5fad6a4c52b5: Waiting
4f4fb700ef54: Waiting
81e9448f8d7d: Pulling fs layer
667866023596: Waiting
8f7471ae6f30: Pulling fs layer
ba1c9d522099: Pulling fs layer
81e9448f8d7d: Waiting
8f7471ae6f30: Waiting
847d9b38068d: Pulling fs layer
474d64aaa83a: Waiting
6c1cb3b3dd7c: Pulling fs layer
ba1c9d522099: Waiting
30a81ee5e9b7: Pulling fs layer
b395d300d073: Pulling fs layer
689e54a1bb6f: Pulling fs layer
847d9b38068d: Waiting
6c1cb3b3dd7c: Waiting
cfba20ff1fbb: Pulling fs layer
d6503c133859: Pulling fs layer
cfba20ff1fbb: Waiting
b395d300d073: Waiting
30a81ee5e9b7: Waiting
3dcf084af38f: Pulling fs layer
22043404df4c: Pulling fs layer
689e54a1bb6f: Waiting
780f53a6c5cb: Pulling fs layer
38b848127537: Pulling fs layer
3dcf084af38f: Waiting
780f53a6c5cb: Waiting
22043404df4c: Waiting
7d097aa57719: Pulling fs layer
6d4fee4093bd: Pulling fs layer
923f8d6aefab: Pulling fs layer
7d097aa57719: Waiting
ffa955d5e936: Pulling fs layer
38b848127537: Waiting
39bed0558f8a: Pulling fs layer
6d4fee4093bd: Waiting
7bc20d60116c: Pulling fs layer
ffa955d5e936: Waiting
923f8d6aefab: Waiting
39bed0558f8a: Waiting
9abb721d7658: Pulling fs layer
7bc20d60116c: Waiting
9abb721d7658: Waiting
64cfa2a65095: Verifying Checksum
64cfa2a65095: Download complete
1edcfb1efe19: Verifying Checksum
1edcfb1efe19: Download complete
64cfa2a65095: Pull complete
1edcfb1efe19: Pull complete
6f97b42e121d: Verifying Checksum
6f97b42e121d: Download complete
35edc2941e66: Download complete
3ddbff1fae48: Verifying Checksum
3ddbff1fae48: Download complete
664494e6aa3b: Verifying Checksum
664494e6aa3b: Download complete
6e72e374834b: Verifying Checksum
6e72e374834b: Download complete
9897d53e41d9: Verifying Checksum
9897d53e41d9: Download complete
5955f0d634c5: Verifying Checksum
5955f0d634c5: Download complete
3835c4318084: Verifying Checksum
3835c4318084: Download complete
549825d0ab03: Verifying Checksum
549825d0ab03: Download complete
39569ccf3df4: Verifying Checksum
39569ccf3df4: Download complete
6e7368d99114: Verifying Checksum
6e7368d99114: Download complete
cb6191f3eef1: Verifying Checksum
cb6191f3eef1: Download complete
d034bf0e16e1: Verifying Checksum
d034bf0e16e1: Download complete
188d98a9d457: Verifying Checksum
188d98a9d457: Download complete
8cb90b8f1fc2: Verifying Checksum
8cb90b8f1fc2: Download complete
5fad6a4c52b5: Verifying Checksum
5fad6a4c52b5: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
debd84a910b3: Download complete
152a68323944: Verifying Checksum
152a68323944: Download complete
667866023596: Download complete
1f7f98a5f0d2: Verifying Checksum
1f7f98a5f0d2: Download complete
81e9448f8d7d: Download complete
474d64aaa83a: Verifying Checksum
474d64aaa83a: Download complete
8f7471ae6f30: Verifying Checksum
8f7471ae6f30: Download complete
ba1c9d522099: Download complete
6c1cb3b3dd7c: Verifying Checksum
6c1cb3b3dd7c: Download complete
847d9b38068d: Verifying Checksum
847d9b38068d: Download complete
b395d300d073: Verifying Checksum
b395d300d073: Download complete
30a81ee5e9b7: Download complete
689e54a1bb6f: Verifying Checksum
689e54a1bb6f: Download complete
d6503c133859: Verifying Checksum
d6503c133859: Download complete
22043404df4c: Download complete
3ddbff1fae48: Pull complete
780f53a6c5cb: Download complete
38b848127537: Download complete
7d097aa57719: Download complete
3dcf084af38f: Verifying Checksum
3dcf084af38f: Download complete
923f8d6aefab: Verifying Checksum
923f8d6aefab: Download complete
cfba20ff1fbb: Verifying Checksum
cfba20ff1fbb: Download complete
39bed0558f8a: Download complete
7bc20d60116c: Verifying Checksum
7bc20d60116c: Download complete
9abb721d7658: Download complete
6d4fee4093bd: Verifying Checksum
6d4fee4093bd: Download complete
ffa955d5e936: Verifying Checksum
ffa955d5e936: Download complete
6f97b42e121d: Pull complete
35edc2941e66: Pull complete
664494e6aa3b: Pull complete
6e72e374834b: Pull complete
9897d53e41d9: Pull complete
5955f0d634c5: Pull complete
39569ccf3df4: Pull complete
3835c4318084: Pull complete
549825d0ab03: Pull complete
6e7368d99114: Pull complete
cb6191f3eef1: Pull complete
188d98a9d457: Pull complete
d034bf0e16e1: Pull complete
8cb90b8f1fc2: Pull complete
5fad6a4c52b5: Pull complete
debd84a910b3: Pull complete
4f4fb700ef54: Pull complete
152a68323944: Pull complete
1f7f98a5f0d2: Pull complete
667866023596: Pull complete
474d64aaa83a: Pull complete
81e9448f8d7d: Pull complete
8f7471ae6f30: Pull complete
ba1c9d522099: Pull complete
847d9b38068d: Pull complete
6c1cb3b3dd7c: Pull complete
30a81ee5e9b7: Pull complete
b395d300d073: Pull complete
689e54a1bb6f: Pull complete
cfba20ff1fbb: Pull complete
d6503c133859: Pull complete
3dcf084af38f: Pull complete
22043404df4c: Pull complete
780f53a6c5cb: Pull complete
38b848127537: Pull complete
7d097aa57719: Pull complete
6d4fee4093bd: Pull complete
923f8d6aefab: Pull complete
ffa955d5e936: Pull complete
39bed0558f8a: Pull complete
7bc20d60116c: Pull complete
9abb721d7658: Pull complete
Digest: sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a
Status: Downloaded newer image for ocaml/opam@sha256:b4c4078273e87bccedd39788dec2f1547d525cdade7f23d755aa37113ddc398a
2026-01-26 20:25.46 ---> using "b406375448d05c740c3dfe01a84fe3cd4b6f40cee7cc2d77fc552f60deaa28cc" from cache


/: (comment opensuse-16.0-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 20:25.46 ---> using "e52efa2e417126b2cc9ca6b06ee06ca2cf19f79eb01abf7549797e638e948965" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-26 20:25.46 ---> using "49aca0de9152a0b0cbe38070c29ee47f5eb8e632702fc4f07f3a7ff8d4681d19" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-90-generic
The OCaml toplevel, version 5.4.0
2.5.0
2026-01-26 20:25.46 ---> using "14c58864aff76dfab37c499a5a3ac973d232b7c895985e383b7693f2531fa5e9" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2026-01-26 20:25.46 ---> using "38c76ef71d1eae91b92930f133bce9bdf458edda72e0592684a30bf74a9e77ad" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
a6b2f19780..f9f7db30fd  master     -> origin/master
873cb18c37 Merge pull request #29216 from shonfeder/release-dune-3.21.0


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository


Already up-to-date.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2026-01-26 20:25.46 ---> using "38c182274331f2ee5ebce1107b46d7522fe77568d30f456d50b579eb324a6b0c" 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 20:25.46 ---> using "14056e9f89af8db40e158fe9c733e6444cacd24a799e29773d228df5c5392a42" 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 20:25.46 ---> using "f80f5d00f867fa6e8641998c5df2f3176450c261aad2e1748271db7d5b417eb3" from cache


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2026-01-26 20:25.46 ---> using "dd57ab68d31785bce699bb8884c5e643bf436ed75d0c98e4e41948160951d9a4" 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 "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [..
- Looking for gpg keys in repository repo-oss (16.0).
-   gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ..
- 
- Note: Received 1 new package signing key from repository "repo-oss (16.0)":
- 
-   Those additional keys are usually used to sign packages shipped by the repository. In order to
-   validate those packages upon download and installation the new keys will be imported into the rpm
-   database.
- 
-   New:
-   Key Fingerprint:  F044 C2C5 07A1 262B 538A AADD 8A49 EB03 25DB 7AE0
-   Key Name:         openSUSE:Backports OBS Project <openSUSE:Backports@build.opensuse.org>
-   Key Algorithm:    RSA 4096
-   Key Created:      Wed May 10 14:46:12 2023
-   Key Expires:      Sun May  9 14:46:12 2027
-   Rpm Name:         gpg-pubkey-25db7ae0-645bae34
- 
-   The repository metadata introducing the new keys have been signed and validated by the trusted
-   key:
- 
-   Repository:       repo-oss (16.0)
-   Key Fingerprint:  AD48 5664 E901 B867 051A B15F 35A2 F86E 29B7 00A4
-   Key Name:         openSUSE Project Signing Key <opensuse@opensuse.org>
-   Key Algorithm:    RSA 4096
-   Key Created:      Mon Jun 20 14:03:14 2022
-   Key Expires:      Fri Jun 19 14:03:14 2026
-   Rpm Name:         gpg-pubkey-29b700a4-62b07e22
- 
- .
- .
- ..........done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.


<><> 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 "zypper" "--non-interactive" "install" "mercurial"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 19 NEW packages are going to be installed:
-   fontconfig libXext6 libXft2 libXmuu1 libXrender1 libXss1 libfontconfig1 libfreetype6 libmpdec4 libpng16-16 libpython3_13-1_0 mercurial python313 python313-base python313-curses sqlite3-tcl tcl tk xhost
- 
- 19 new packages to install.
- 
- Package download size:    24.3 MiB
- 
- Package install size change:
-               |      86.0 MiB  required by packages that will be installed
-     86.0 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [.
- .
- Preloading: libfontconfig1-2.16.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXft2-2.3.8-160000.2.2.x86_64.rpm [done]
- .
- Preloading: fontconfig-2.16.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: tk-8.6.13-160000.2.2.x86_64.rpm [done]
- .
- Preloading: python313-curses-3.13.11-160000.1.1.x86_64.rpm [done]
- .
- Preloading: python313-3.13.11-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libXext6-1.3.6-160000.3.2.x86_64.rpm [done]
- .
- Preloading: tcl-8.6.15-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libpython3_13-1_0-3.13.11-160000.1.1.x86_64.rpm [done]
- .
- Preloading: xhost-1.0.9-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXss1-1.2.4-160000.3.2.x86_64.rpm [done]
- .
- 
- Preloading: libpng16-16-1.6.44-160000.4.1.x86_64.rpm [done]
- .
- Preloading: libmpdec4-4.0.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXrender1-0.9.11-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXmuu1-1.2.1-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: sqlite3-tcl-3.50.4-160000.1.2.x86_64.rpm [done]
- .
- Preloading: python313-base-3.13.11-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libfreetype6-2.13.3-160000.3.1.x86_64.rpm [done]
- .
- 
- Preloading: mercurial-7.0.1-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- .
- Preloading: mercurial-7.0.1-160000.2.2.x86_64.rpm [done]
- .done]
- Retrieving: libXext6-1.3.6-160000.3.2.x86_64 (repo-oss (16.0)) (1/19),  37.3 KiB
- Retrieving: libXmuu1-1.2.1-160000.3.2.x86_64 (repo-oss (16.0)) (2/19),  17.0 KiB
- Retrieving: libXrender1-0.9.11-160000.2.2.x86_64 (repo-oss (16.0)) (3/19),  27.5 KiB
- Retrieving: libmpdec4-4.0.1-160000.2.2.x86_64 (repo-oss (16.0)) (4/19),  85.2 KiB
- Retrieving: libpng16-16-1.6.44-160000.4.1.x86_64 (repo-oss (16.0)) (5/19), 186.5 KiB
- Retrieving: sqlite3-tcl-3.50.4-160000.1.2.x86_64 (repo-oss (16.0)) (6/19), 899.1 KiB
- Retrieving: libXss1-1.2.4-160000.3.2.x86_64 (repo-oss (16.0)) (7/19),  12.9 KiB
- Retrieving: xhost-1.0.9-160000.2.2.x86_64 (repo-oss (16.0)) (8/19),  31.7 KiB
- Retrieving: libpython3_13-1_0-3.13.11-160000.1.1.x86_64 (repo-oss (16.0)) (9/19),   2.0 MiB
- Retrieving: python313-base-3.13.11-160000.1.1.x86_64 (repo-oss (16.0)) (10/19),   9.2 MiB
- Retrieving: python313-3.13.11-160000.1.1.x86_64 (repo-oss (16.0)) (11/19), 530.6 KiB
- Retrieving: python313-curses-3.13.11-160000.1.1.x86_64 (repo-oss (16.0)) (12/19), 525.2 KiB
- Retrieving: libfreetype6-2.13.3-160000.3.1.x86_64 (repo-oss (16.0)) (13/19), 564.1 KiB
- Retrieving: tcl-8.6.15-160000.2.2.x86_64 (repo-oss (16.0)) (14/19),   2.4 MiB
- Retrieving: fontconfig-2.16.0-160000.2.2.x86_64 (repo-oss (16.0)) (15/19), 137.4 KiB
- Retrieving: libfontconfig1-2.16.0-160000.2.2.x86_64 (repo-oss (16.0)) (16/19), 199.5 KiB
- Retrieving: libXft2-2.3.8-160000.2.2.x86_64 (repo-oss (16.0)) (17/19),  51.8 KiB
- Retrieving: tk-8.6.13-160000.2.2.x86_64 (repo-oss (16.0)) (18/19),   1.8 MiB
- Retrieving: mercurial-7.0.1-160000.2.2.x86_64 (repo-oss (16.0)) (19/19),   5.7 MiB
- 
- Checking for file conflicts: [...done]
- ( 1/19) Installing: libXext6-1.3.6-160000.3.2.x86_64 [.
- .done]
- ( 2/19) Installing: libXmuu1-1.2.1-160000.3.2.x86_64 [..done]
- ( 3/19) Installing: libXrender1-0.9.11-160000.2.2.x86_64 [..done]
- ( 4/19) Installing: libmpdec4-4.0.1-160000.2.2.x86_64 [..done]
- ( 5/19) Installing: libpng16-16-1.6.44-160000.4.1.x86_64 [..done]
- ( 6/19) Installing: sqlite3-tcl-3.50.4-160000.1.2.x86_64 [..done]
- ( 7/19) Installing: libXss1-1.2.4-160000.3.2.x86_64 [..done]
- ( 8/19) Installing: xhost-1.0.9-160000.2.2.x86_64 [..done]
- ( 9/19) Installing: libpython3_13-1_0-3.13.11-160000.1.1.x86_64 [..done]
- (10/19) Installing: python313-base-3.13.11-160000.1.1.x86_64 [......done]
- (11/19) Installing: python313-3.13.11-160000.1.1.x86_64 [..
- done]
- (12/19) Installing: python313-curses-3.13.11-160000.1.1.x86_64 [..done]
- (13/19) Installing: libfreetype6-2.13.3-160000.3.1.x86_64 [..done]
- (14/19) Installing: tcl-8.6.15-160000.2.2.x86_64 [...done]
- (15/19) Installing: fontconfig-2.16.0-160000.2.2.x86_64 [..done]
- (16/19) Installing: libfontconfig1-2.16.0-160000.2.2.x86_64 [..done]
- (17/19) Installing: libXft2-2.3.8-160000.2.2.x86_64 [..done]
- (18/19) Installing: tk-8.6.13-160000.2.2.x86_64 [..done]
- (19/19) Installing: mercurial-7.0.1-160000.2.2.x86_64 [.....done]
- Running post-transaction scripts [..
- .done]
# To update the current shell environment, run: eval $(opam env)
2026-01-26 20:25.46 ---> using "aeb1775d0561895361ca574910aee1a0cd35f6f460af063f93dd2ef62f9f5612" 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 bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved bitv.2.1  (https://opam.ocaml.org/cache)
-> retrieved cmdlang.0.0.10, cmdlang-to-cmdliner.0.0.10  (https://opam.ocaml.org/cache)
-> installed conf-git.1.1
-> retrieved cmdlang-cmdliner-err-runner.0.0.16, pplumbing-err.0.0.16, pplumbing-pp-tty.0.0.16  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> 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 eio.1.3, eio_linux.1.3, eio_main.1.3, eio_posix.1.3  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved fpath-sexp0.0.4.0  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved iomux.0.4  (https://opam.ocaml.org/cache)
-> retrieved hmap.0.8.1  (https://opam.ocaml.org/cache)
-> 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  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved loc.0.2.2  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> retrieved lwt-dllist.1.1.0  (https://opam.ocaml.org/cache)
-> retrieved mtime.2.1.0  (https://opam.ocaml.org/cache)
-> 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 ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved optint.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved pp.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.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_compare.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_expect.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.17.2  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.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 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 spawn.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved thread-table.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> 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_posix.1.3
-> installed eio_linux.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 base.v0.17.3
-> installed pplumbing-err.0.0.16
-> installed cmdlang-cmdliner-err-runner.0.0.16
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> 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.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-26 20:25.46 ---> using "c53f7193d14cad4cb7cb4e682ae935f7416f97e5790f3f580fcd93edd140c774" from cache


/src: (copy (src .) (dst /src))
2026-01-26 20:25.47 ---> saved as "f463947a6354923e4d892659bce2c15ef5b4b7dc162f40c4e66c5bf2017b7d91"


/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 20:25.51 ---> saved as "0ac3c1baeece2ba2a1b912cde4bd4b281aa366fd304d704178863bafb8bcb708"
Job succeeded
2026-01-26 20:25.52: Job succeeded