2026-04-03 11:35.33: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/main (c4dcd169686ea7594fa967b47fca83a625cef36b) (linux-x86_64:ubuntu-24.04-4.14_opam-2.5) Base: ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:378b80130a8565c501d060ebe277e1585177fb5caf23983614eeb4d30378ddea Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/vcs.git" -b "main" && cd "vcs" && git reset --hard c4dcd169 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:378b80130a8565c501d060ebe277e1585177fb5caf23983614eeb4d30378ddea # ubuntu-24.04-4.14_opam-2.5 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e d06cfb1853afceb1dc127f88edaac3f8110bf6cc || git fetch origin master) && git reset -q --hard d06cfb1853afceb1dc127f88edaac3f8110bf6cc && 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.22.1 dune-build-info.3.22.1 dyn.3.22.1 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.22.1 loc.0.3.3 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.22.1 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.22.1 top-closure.3.22.1 topkg.1.1.1 yojson.3.0.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.5 --depext-only -y volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2026-04-03 11:35.33: Using cache hint "mbarbin/vcs-ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:378b80130a8565c501d060ebe277e1585177fb5caf23983614eeb4d30378ddea-ubuntu-24.04-4.14_opam-2.5-0d6788c2d6e7b92ec347823fc5167674" 2026-04-03 11:35.33: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:378b80130a8565c501d060ebe277e1585177fb5caf23983614eeb4d30378ddea) (comment ubuntu-24.04-4.14_opam-2.5) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e d06cfb1853afceb1dc127f88edaac3f8110bf6cc || git fetch origin master) && git reset -q --hard d06cfb1853afceb1dc127f88edaac3f8110bf6cc && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam volgo-base-tests.opam vcs-test-helpers.opam) (dst ./)) (run (network host) (shell "opam pin add -yn volgo.dev './' && \ \nopam pin add -yn volgo-vcs.dev './' && \ \nopam pin add -yn volgo-tests.dev './' && \ \nopam pin add -yn volgo-hg-unix.dev './' && \ \nopam pin add -yn volgo-hg-eio.dev './' && \ \nopam pin add -yn volgo-hg-backend.dev './' && \ \nopam pin add -yn volgo-git-unix.dev './' && \ \nopam pin add -yn volgo-git-eio.dev './' && \ \nopam pin add -yn volgo-git-backend.dev './' && \ \nopam pin add -yn volgo-dev.dev './' && \ \nopam pin add -yn volgo-base.dev './' && \ \nopam pin add -yn volgo-base-tests.dev './' && \ \nopam pin add -yn vcs-test-helpers.dev './'")) (run (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bitv.2.1 cmdlang.0.0.10 cmdlang-cmdliner-err-runner.0.0.16 cmdlang-to-cmdliner.0.0.10 cmdliner.2.1.0 conf-git.1.1 conf-hg.1.0 csexp.1.5.2 dune.3.22.1 dune-build-info.3.22.1 dyn.3.22.1 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.22.1 loc.0.3.3 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.22.1 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.22.1 top-closure.3.22.1 topkg.1.1.1 yojson.3.0.0") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-backend,volgo-git-unix,volgo-git-backend @install @check @runtest && rm -rf _build")) ) 2026-04-03 11:35.33: Waiting for resource in pool OCluster 2026-04-03 11:48.19: Waiting for worker… 2026-04-03 11:50.47: Got resource from pool OCluster Building on phoebe.caelum.ci.dev All commits already cached HEAD is now at c4dcd16 Add setup mdexp step to main ci (from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:378b80130a8565c501d060ebe277e1585177fb5caf23983614eeb4d30378ddea) 2026-04-03 11:50.47 ---> using "ea8d72b3575eca98b89c48a4da7927bcdb82725502d2ac0615817875479dfe5d" from cache /: (comment ubuntu-24.04-4.14_opam-2.5) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) 2026-04-03 11:50.47 ---> using "57fe826c4cda6eaa6b11381783c9525d7921b5e90796ab1d3423a3a40e1ee953" 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 Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2026-04-03 11:50.47 ---> using "55a2f6dfe7a6290730525b3a4346ce960918d715c2bdbaeb5a4b7e33780adb10" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-106-generic The OCaml toplevel, version 4.14.2 2.5.0 2026-04-03 11:50.47 ---> using "defa03e276e0c2b0cec70b115b3a595fb4615d03b5da0739dd2698dea1a3bf33" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-04-03 11:50.47 ---> using "4130f1cefdaf8d88e4eba48981cb16b1f82735c22f891280afafcafba369761a" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e d06cfb1853afceb1dc127f88edaac3f8110bf6cc || git fetch origin master) && git reset -q --hard d06cfb1853afceb1dc127f88edaac3f8110bf6cc && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 76bf2ed944..d06cfb1853 master -> origin/master d06cfb1853 Merge pull request #29632 from shonfeder/release-dune-3.22.1 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.5.0"), which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2026-04-03 11:50.47 ---> using "d0767114e69d555172248900b1dda8f27eb471196b6c1e91af3268792dad2ce9" 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-04-03 11:50.47 ---> saved as "30bb1ae1789dfba1d86ed187ebd799851237cd0c6ce6ff194b642ae3bd38032a" /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-04-03 11:51.36 ---> saved as "0b775a6e67371710269baa1cea03f371c84038a4eb85ad5d44765318b6b4637c" /src: (run (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-04-03 11:51.36 ---> saved as "4a32e6443f94ebfb2fd9708fcfac34970910e44757c220b60d9d3b17117a2f54" /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.22.1 dune-build-info.3.22.1 dyn.3.22.1 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.22.1 loc.0.3.3 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.22.1 parsexp.v0.16.0 pp.2.0.0 pplumbing-err.0.0.16 pplumbing-pp-tty.0.0.16 sexplib0.v0.16.0 spawn.v0.17.0 stdune.3.22.1 top-closure.3.22.1 topkg.1.1.1 yojson.3.0.0") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB] - Get:2 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [3499 kB] - Get:3 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [1985 kB] - Hit:4 http://archive.ubuntu.com/ubuntu noble InRelease - Get:5 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1504 kB] - Get:6 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] - Get:7 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] - Get:8 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2153 kB] - Ign:8 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages - Ign:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages - Ign:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages - Ign:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages - Ign:12 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages - Ign:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages - Ign:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages - Ign:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages - Ign:12 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages - Ign:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages - Ign:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages - Ign:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages - Ign:12 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages - Ign:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages - Ign:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages - Ign:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages - Ign:12 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages - Ign:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages - Ign:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages - Ign:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages - Ign:12 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages - Err:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages - Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.24). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.23). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.81). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::16). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::17). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::18). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.22). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.81). - connect (101: Network is unreachable) [IP: 2620:2d:4002:1::103 80] - Ign:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages - Ign:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages - Err:12 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages - Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.24). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.23). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.81). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::16). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::17). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::18). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.22). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.81). - connect (101: Network is unreachable) [IP: 2620:2d:4002:1::103 80] - Fetched 7367 kB in 44s (167 kB/s) - Reading package lists... - - E: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/noble-updates/multiverse/binary-amd64/Packages Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.24). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.23). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.81). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::16). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::17). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::18). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.22). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.81). - connect (101: Network is unreachable) [IP: 2620:2d:4002:1::103 80] - E: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/noble-backports/universe/binary-amd64/Packages Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.24). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.23). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::101). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.81). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4000:1::103). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.82). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::16). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.91.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::17). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.83). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2a06:bc80:0:1000::18). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (91.189.92.22). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (2620:2d:4002:1::102). - connect (101: Network is unreachable) Cannot initiate the connection to archive.ubuntu.com:80 (185.125.190.81). - connect (101: Network is unreachable) [IP: 2620:2d:4002:1::103 80] - E: Some index files failed to download. They have been ignored, or old ones used instead. Fatal error: System package update failed with exit code 100 at command: sudo apt-get update "/usr/bin/env" "bash" "-c" "opam update --depexts && opam install --cli=2.5 --depext-only -y volgo.dev volgo-vcs.dev volgo-hg-unix.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-backend.dev $DEPS" failed with exit status 99 2026-04-03 11:52.28: Job failed: Failed: Build failed