Organisationsmbarbinvcs51f8ce ()(lint-doc)

(lint-doc)

Link Copied
Code Copied

Logs

2026-01-27 19:14.24: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (51f8ce3a19fc5910bae0840a5955431a7456cbc6) (linux-x86_64:(lint-doc))
Base: ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
Opam project lint documentation


To reproduce locally:


git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard 51f8ce3a
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
# alpine-3.22-4.14_opam-2.5
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.2 /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 51158b2cc8b1d975be5b32b177da768f0b3357af || git fetch origin master) && git reset -q --hard 51158b2cc8b1d975be5b32b177da768f0b3357af && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam volgo-base-tests.opam vcs-test-helpers.opam ./
RUN opam pin add -yn volgo.dev './' && \
opam pin add -yn volgo-vcs.dev './' && \
opam pin add -yn volgo-tests.dev './' && \
opam pin add -yn volgo-hg-unix.dev './' && \
opam pin add -yn volgo-hg-eio.dev './' && \
opam pin add -yn volgo-hg-backend.dev './' && \
opam pin add -yn volgo-git-unix.dev './' && \
opam pin add -yn volgo-git-eio.dev './' && \
opam pin add -yn volgo-git-backend.dev './' && \
opam pin add -yn volgo-dev.dev './' && \
opam pin add -yn volgo-base.dev './' && \
opam pin add -yn volgo-base-tests.dev './' && \
opam pin add -yn vcs-test-helpers.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.21.0 dyn.3.21.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 loc.0.3.3 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.21.0 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.21.0 top-closure.3.21.0 topkg.1.1.1 yojson.3.0.0"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.2 --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
RUN opam install --yes dune 'odoc>=1.5.0'
COPY --chown=1000:1000 . /src/
RUN ODOC_WARN_ERROR=false opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @doc || (echo "dune build @doc failed"; exit 2)


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


2026-01-27 19:14.24: Using cache hint "mbarbin/vcs-ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216-alpine-3.22-4.14_opam-2.5-f5f3eff14d42c89144561239f1b9b6dc"
2026-01-27 19:14.24: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
(comment alpine-3.22-4.14_opam-2.5)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/bin/opam-2.2 /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 51158b2cc8b1d975be5b32b177da768f0b3357af || git fetch origin master) && git reset -q --hard 51158b2cc8b1d975be5b32b177da768f0b3357af && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam volgo-base-tests.opam vcs-test-helpers.opam)
(dst ./))
(run (network host)
(shell  "opam pin add -yn volgo.dev './' && \
\nopam pin add -yn volgo-vcs.dev './' && \
\nopam pin add -yn volgo-tests.dev './' && \
\nopam pin add -yn volgo-hg-unix.dev './' && \
\nopam pin add -yn volgo-hg-eio.dev './' && \
\nopam pin add -yn volgo-hg-backend.dev './' && \
\nopam pin add -yn volgo-git-unix.dev './' && \
\nopam pin add -yn volgo-git-eio.dev './' && \
\nopam pin add -yn volgo-git-backend.dev './' && \
\nopam pin add -yn volgo-dev.dev './' && \
\nopam pin add -yn volgo-base.dev './' && \
\nopam pin add -yn volgo-base-tests.dev './' && \
\nopam pin add -yn vcs-test-helpers.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.21.0 dyn.3.21.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 loc.0.3.3 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.21.0 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.21.0 top-closure.3.21.0 topkg.1.1.1 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.2 --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"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install --yes dune 'odoc>=1.5.0'"))
(copy (src .) (dst /src/))
(run (shell "ODOC_WARN_ERROR=false opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @doc || (echo \"dune build @doc failed\"; exit 2)"))
)


2026-01-27 19:14.24: Waiting for resource in pool OCluster
2026-01-27 19:14.24: Waiting for worker…
2026-01-27 19:19.13: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 51f8ce3 Upgrade action-gh-release to v2.5.0


(from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
Unable to find image 'ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216' locally
docker.io/ocaml/opam@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216: Pulling from ocaml/opam
2d35ebdb57d9: Already exists
adfc86c1accf: Pulling fs layer
d09377907434: Pulling fs layer
a699cf44908b: Pulling fs layer
c088e74f1f31: Pulling fs layer
adfc86c1accf: Waiting
7e99e6eaa847: Pulling fs layer
db4b89a22482: Pulling fs layer
a699cf44908b: Waiting
d09377907434: Waiting
f1f17593da04: Pulling fs layer
c088e74f1f31: Waiting
db4b89a22482: Waiting
bb79fbf72548: Pulling fs layer
7e99e6eaa847: Waiting
f1f17593da04: Waiting
cf69890848e3: Pulling fs layer
80e325d6146c: Pulling fs layer
66a526c41d4c: Pulling fs layer
347d38b311ac: Pulling fs layer
cf69890848e3: Waiting
80e325d6146c: Waiting
984612fde4c4: Pulling fs layer
66a526c41d4c: Waiting
347d38b311ac: Waiting
0ac0da982daa: Pulling fs layer
209c9bca9b0e: Pulling fs layer
0ac0da982daa: Waiting
3d3356d548ff: Pulling fs layer
c072da09f122: Pulling fs layer
3d3356d548ff: Waiting
209c9bca9b0e: Waiting
4f4fb700ef54: Pulling fs layer
eff3d806a4a8: Pulling fs layer
c072da09f122: Waiting
4f4fb700ef54: Waiting
f5c413f5234b: Pulling fs layer
eff3d806a4a8: Waiting
09ddc5430e22: Pulling fs layer
f5c413f5234b: Waiting
2c7c283b1afc: Pulling fs layer
4af9a971b585: Pulling fs layer
df8d9be3e30d: Pulling fs layer
2c7c283b1afc: Waiting
5e55ae3325a7: Pulling fs layer
4af9a971b585: Waiting
635cb27b4304: Pulling fs layer
5e55ae3325a7: Waiting
898fbde8ad42: Pulling fs layer
09ddc5430e22: Waiting
635cb27b4304: Waiting
df8d9be3e30d: Waiting
66c0ffc92413: Pulling fs layer
898fbde8ad42: Waiting
c8cca855638d: Pulling fs layer
66c0ffc92413: Waiting
45d2501a899c: Pulling fs layer
c8cca855638d: Waiting
10b0fe6926c2: Pulling fs layer
45d2501a899c: Waiting
0a1d7b83a687: Pulling fs layer
10b0fe6926c2: Waiting
2c3441915309: Pulling fs layer
3d1a575b1bb0: Pulling fs layer
2c3441915309: Waiting
6e5fa830b59d: Pulling fs layer
72225f5a6449: Pulling fs layer
5a8b6a59afe3: Pulling fs layer
0a1d7b83a687: Waiting
81299dd100ce: Pulling fs layer
72225f5a6449: Waiting
ad267db4d3a7: Pulling fs layer
5a8b6a59afe3: Waiting
de32f8de692b: Pulling fs layer
81299dd100ce: Waiting
ad267db4d3a7: Waiting
6e5fa830b59d: Waiting
de32f8de692b: Waiting
adfc86c1accf: Verifying Checksum
adfc86c1accf: Download complete
adfc86c1accf: Pull complete
d09377907434: Verifying Checksum
d09377907434: Download complete
d09377907434: Pull complete
c088e74f1f31: Verifying Checksum
c088e74f1f31: Download complete
7e99e6eaa847: Verifying Checksum
7e99e6eaa847: Download complete
db4b89a22482: Verifying Checksum
db4b89a22482: Download complete
a699cf44908b: Verifying Checksum
a699cf44908b: Download complete
f1f17593da04: Verifying Checksum
f1f17593da04: Download complete
bb79fbf72548: Verifying Checksum
bb79fbf72548: Download complete
cf69890848e3: Verifying Checksum
cf69890848e3: Download complete
80e325d6146c: Verifying Checksum
80e325d6146c: Download complete
347d38b311ac: Download complete
66a526c41d4c: Verifying Checksum
66a526c41d4c: Download complete
984612fde4c4: Verifying Checksum
984612fde4c4: Download complete
0ac0da982daa: Verifying Checksum
0ac0da982daa: Download complete
209c9bca9b0e: Download complete
3d3356d548ff: Download complete
c072da09f122: Verifying Checksum
c072da09f122: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
eff3d806a4a8: Verifying Checksum
eff3d806a4a8: Download complete
f5c413f5234b: Download complete
09ddc5430e22: Download complete
2c7c283b1afc: Verifying Checksum
2c7c283b1afc: Download complete
4af9a971b585: Verifying Checksum
4af9a971b585: Download complete
df8d9be3e30d: Verifying Checksum
df8d9be3e30d: Download complete
5e55ae3325a7: Verifying Checksum
5e55ae3325a7: Download complete
635cb27b4304: Download complete
898fbde8ad42: Download complete
66c0ffc92413: Download complete
c8cca855638d: Verifying Checksum
c8cca855638d: Download complete
45d2501a899c: Verifying Checksum
45d2501a899c: Download complete
0a1d7b83a687: Verifying Checksum
0a1d7b83a687: Download complete
a699cf44908b: Pull complete
c088e74f1f31: Pull complete
7e99e6eaa847: Pull complete
db4b89a22482: Pull complete
f1f17593da04: Pull complete
bb79fbf72548: Pull complete
cf69890848e3: Pull complete
80e325d6146c: Pull complete
66a526c41d4c: Pull complete
347d38b311ac: Pull complete
984612fde4c4: Pull complete
0ac0da982daa: Pull complete
209c9bca9b0e: Pull complete
3d3356d548ff: Pull complete
c072da09f122: Pull complete
4f4fb700ef54: Pull complete
eff3d806a4a8: Pull complete
f5c413f5234b: Pull complete
09ddc5430e22: Pull complete
2c7c283b1afc: Pull complete
4af9a971b585: Pull complete
df8d9be3e30d: Pull complete
5e55ae3325a7: Pull complete
635cb27b4304: Pull complete
898fbde8ad42: Pull complete
66c0ffc92413: Pull complete
c8cca855638d: Pull complete
45d2501a899c: Pull complete
10b0fe6926c2: Verifying Checksum
10b0fe6926c2: Download complete
2c3441915309: Verifying Checksum
2c3441915309: Download complete
3d1a575b1bb0: Verifying Checksum
3d1a575b1bb0: Download complete
6e5fa830b59d: Download complete
72225f5a6449: Verifying Checksum
72225f5a6449: Download complete
81299dd100ce: Download complete
ad267db4d3a7: Verifying Checksum
ad267db4d3a7: Download complete
de32f8de692b: Verifying Checksum
de32f8de692b: Download complete
5a8b6a59afe3: Verifying Checksum
5a8b6a59afe3: Download complete
10b0fe6926c2: Pull complete
0a1d7b83a687: Pull complete
2c3441915309: Pull complete
3d1a575b1bb0: Pull complete
6e5fa830b59d: Pull complete
72225f5a6449: Pull complete
5a8b6a59afe3: Pull complete
81299dd100ce: Pull complete
ad267db4d3a7: Pull complete
de32f8de692b: Pull complete
Digest: sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
Status: Downloaded newer image for ocaml/opam@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
2026-01-27 19:19.13 ---> using "d1cef22083ba59d6db4e2f107091c68dd70ebdcc64c3894ad7db7be62ad17f4a" from cache


/: (comment alpine-3.22-4.14_opam-2.5)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))
2026-01-27 19:19.13 ---> using "aa238cb861d3c6c581edbbf37b9748fbb3955a0301f8754f1330522d31bdea95" 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 development 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-27 19:19.13 ---> using "3012e725308508d0de531ee578ee1e8781d13d01e7b7e084a1a8ab6b2e9dfc3c" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-90-generic
The OCaml toplevel, version 4.14.2
2.2.1
2026-01-27 19:19.13 ---> using "49acb3bbc71f8cee0ac24a0653bcca777fc6f3873bc89b90d919182499bf3c26" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2026-01-27 19:19.13 ---> using "834d8ad0726c0946994af4beac26783ef6bb1014f63b7b5e9de6455c8090386e" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 51158b2cc8b1d975be5b32b177da768f0b3357af || git fetch origin master) && git reset -q --hard 51158b2cc8b1d975be5b32b177da768f0b3357af && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
a6b2f19780..51158b2cc8  master     -> origin/master
51158b2cc8 Merge pull request #29283 from mbarbin/opam-publish-loc.0.3.3


<><> 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, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# Run eval $(opam env) to update the current shell environment
2026-01-27 19:19.13 ---> using "f11693c0a7924b45d04d6d092612438386a9aa91a95981c18c8a3b80380e2e98" 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-27 19:19.13 ---> using "b926d60e9986040c6f3cf15cc7b98b6d4be9873e7af920f12e42bfb7cec352ca" 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)
Package volgo-tests does not exist, create as a NEW package? [y/n] y
[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)
Package volgo-dev does not exist, create as a NEW package? [y/n] y
[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)
Package volgo-base-tests does not exist, create as a NEW package? [y/n] y
[volgo-base-tests.dev] synchronised (file:///src)
volgo-base-tests is now pinned to file:///src (version dev)
Package vcs-test-helpers does not exist, create as a NEW package? [y/n] y
[vcs-test-helpers.dev] synchronised (file:///src)
vcs-test-helpers is now pinned to file:///src (version dev)
2026-01-27 19:19.13 ---> using "78790661d2d2c5ab60b22e8f469ea7d9a676ccf3921f824932ceaa35481c637f" from cache


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2026-01-27 19:19.13 ---> using "5e6e303c6a45d9e436da64d9ca333f227425af38d453d61e58f8850ff51ce8e6" from cache


/src: (env DEPS "astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.21.0 dyn.3.21.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.0 loc.0.3.3 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.21.0 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.21.0 top-closure.3.21.0 topkg.1.1.1 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.2 --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 "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.22.2-371-gfc80347242e [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.2-370-g158b6483089 [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v20251224-2242-gc27633a0dba [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20251224-2242-gc27633a0dba [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20251224-2242-gc27633a0dba [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 60822 distinct packages available


<><> 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 "apk" "add" "mercurial"
- (1/2) Installing mercurial (7.0.3-r0)
- (2/2) Installing mercurial-pyc (7.0.3-r0)
- Executing busybox-1.37.0-r20.trigger
- OK: 333 MiB in 104 packages
2026-01-27 19:19.13 ---> using "5ffb83600dac8edb271bbfaeb5f681767cc1fc9be3045a4490f4ad09add8153c" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 28 packages
- install astring                     0.8.5
- install bitv                        2.1
- install cmdlang                     0.0.10
- install cmdlang-cmdliner-err-runner 0.0.16
- install cmdlang-to-cmdliner         0.0.10
- install cmdliner                    2.1.0
- install conf-git                    1.1
- install conf-hg                     1.0
- install csexp                       1.5.2
- install dune                        3.21.0
- install dyn                         3.21.0
- install fpath                       0.7.3
- install fpath-sexp0                 0.4.0
- install fs-io                       3.21.0
- install loc                         0.3.3
- install ocamlbuild                  0.16.1
- install ocamlfind                   1.9.8
- install ordering                    3.21.0
- install parsexp                     v0.16.0
- install pp                          2.0.0
- install pplumbing-err               0.0.16
- install pplumbing-pp-tty            0.0.16
- install sexplib0                    v0.16.0
- install spawn                       v0.17.0
- install stdune                      3.21.0
- install top-closure                 3.21.0
- install topkg                       1.1.1
- install yojson                      3.0.0


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bitv.2.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved cmdlang-cmdliner-err-runner.0.0.16, pplumbing-err.0.0.16, pplumbing-pp-tty.0.0.16  (cached)
-> retrieved cmdlang.0.0.10, cmdlang-to-cmdliner.0.0.10  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-git.1.1
-> retrieved fpath.0.7.3  (cached)
-> retrieved fpath-sexp0.0.4.0  (cached)
-> retrieved loc.0.3.3  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed conf-hg.1.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved spawn.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed cmdliner.2.1.0
[ERROR] The compilation of ocamlfind.1.9.8 failed at "make opt".


#=== ERROR while compiling ocamlfind.1.9.8 ====================================#
# context     2.2.1 | linux/x86_64 | ocaml-base-compiler.4.14.2 | git+file:///home/opam/opam-repository
# path        ~/.opam/4.14/.opam-switch/build/ocamlfind.1.9.8
# command     /usr/bin/make opt
# exit-code   2
# env-file    ~/.opam/log/ocamlfind-1-98469b.env
# output-file ~/.opam/log/ocamlfind-1-98469b.out
### output ###
# for p in findlib; do ( cd src/$p; /usr/bin/make opt ) || exit; done
# make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocamlfind.1.9.8/src/findlib'
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_compat.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_split.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c findlib_config.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_metatoken.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_meta.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_metascanner.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_topo.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_package_base.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c findlib.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_args.ml
# ocamlopt -I +compiler-libs -g -opaque  -I +unix -I +dynlink -c fl_lint.ml
# ocamlopt -I +compiler-libs -g -a -o findlib.cmxa fl_compat.cmx fl_split.cmx findlib_config.cmx fl_metatoken.cmx fl_meta.cmx fl_metascanner.cmx fl_topo.cmx fl_package_base.cmx findlib.cmx fl_args.cmx fl_lint.cmx
# File "_none_", line 1:
# Error: I/O error: findlib.cmxa: No space left on device
# make[1]: *** [Makefile:71: findlib.cmxa] Error 2
# make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocamlfind.1.9.8/src/findlib'
# make: *** [Makefile:18: opt] Error 2


#=== ERROR while fetching sources for dune.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0 and top-closure.3.21.0
OpamSolution.Fetch_fail("Cannot copy /tmp/opam-1-219d59/test/blackbox-tests/test-cases/ocaml-index/project-indexation.t/dune to /home/opam/.opam/4.14/.opam-switch/sources/dyn.3.21.0/test/blackbox-tests/test-cases/ocaml-index/project-indexation.t/dune (/usr/bin/opam: \"open\" failed on /home/opam/.opam/4.14/.opam-switch/sources/dyn.3.21.0/test/blackbox-tests/test-cases/ocaml-index/project-indexation.t/dune: No space left on device).")
-> installed ocamlbuild.0.16.1


<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - fetch dune.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0
| - build ocamlfind                                                                                 1.9.8
+- 
+- The following changes have been performed (the rest was aborted)
| - install cmdliner   2.1.0
| - install conf-git   1.1
| - install conf-hg    1.0
| - install ocamlbuild 0.16.1
+- 
# Run eval $(opam env) to update the current shell environment


The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260127191914.export"
"/usr/bin/env" "bash" "-c" "opam install $DEPS" failed with exit status 31
2026-01-27 19:20.09: Job failed: Failed: Build failed