2026-02-27 18:47.09: New job: test mbarbin/vcs https://github.com/mbarbin/vcs.git#refs/heads/dependabot/github_actions/actions/checkout-6.0.2 (f99d284cec1b8855c0ac57832008b7b24b30e590) (windows-x86_64:windows-server-mingw-ltsc2025-5.4_opam-2.5)Base: ocaml/opam:windows-server-mingw-ltsc2025-ocaml-5.4@sha256:fedecf8e7810af08d566e6e877bd4ed7ad4c107b8cc32164f71632fffceb8869Opam project buildTo reproduce locally:git clone --recursive "https://github.com/mbarbin/vcs.git" -b "dependabot/github_actions/actions/checkout-6.0.2" && cd "vcs" && git reset --hard f99d284ccat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:windows-server-mingw-ltsc2025-ocaml-5.4@sha256:fedecf8e7810af08d566e6e877bd4ed7ad4c107b8cc32164f71632fffceb8869# windows-server-mingw-ltsc2025-5.4_opam-2.5USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"RUN ln -f /usr/local/bin/opam-2.5 /usr/local/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionRUN cd ~/opam-repository && (git cat-file -e 302e116c4009da2f5a31c350a57c8b3c9b27289e || git fetch origin master) && git reset -q --hard 302e116c4009da2f5a31c350a57c8b3c9b27289e && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 volgo.opam volgo-vcs.opam volgo-tests.opam volgo-hg-unix.opam volgo-hg-eio.opam volgo-hg-backend.opam volgo-git-unix.opam volgo-git-eio.opam volgo-git-backend.opam volgo-dev.opam volgo-base.opam volgo-base-tests.opam vcs-test-helpers.opam /home/opam/src/./RUN opam pin add -yn volgo.dev '/home/opam/src/./' && \opam pin add -yn volgo-vcs.dev '/home/opam/src/./' && \opam pin add -yn volgo-tests.dev '/home/opam/src/./' && \opam pin add -yn volgo-hg-unix.dev '/home/opam/src/./' && \opam pin add -yn volgo-hg-eio.dev '/home/opam/src/./' && \opam pin add -yn volgo-hg-backend.dev '/home/opam/src/./' && \opam pin add -yn volgo-git-unix.dev '/home/opam/src/./' && \opam pin add -yn volgo-git-eio.dev '/home/opam/src/./' && \opam pin add -yn volgo-git-backend.dev '/home/opam/src/./' && \opam pin add -yn volgo-dev.dev '/home/opam/src/./' && \opam pin add -yn volgo-base.dev '/home/opam/src/./' && \opam pin add -yn volgo-base-tests.dev '/home/opam/src/./' && \opam pin add -yn vcs-test-helpers.dev '/home/opam/src/./'RUN mkdir -p '/home/opam/src'RUN echo '(lang dune 3.0)' > '/home/opam/src/./dune-project'ENV DEPS="arch-x86_64.1 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 conf-mingw-w64-gcc-x86_64.1 csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1 dune.3.21.1 dune-configurator.3.21.1 dyn.3.21.1 eio.1.3 eio_main.1.3 eio_windows.1.3 flexdll.0.44 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.1 hmap.0.8.1 host-arch-x86_64.1 host-system-mingw.1 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.3.3 lwt-dllist.1.1.0 mingw-w64-shims.0.2.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-env-mingw64.1 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.1 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.1 system-mingw.1 thread-table.1.0.0 time_now.v0.17.0 top-closure.3.21.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-eio.dev volgo-hg-backend.dev volgo-git-unix.dev volgo-git-eio.dev volgo-git-backend.dev volgo-base.dev volgo-base-tests.dev vcs-test-helpers.dev $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . /home/opam/srcRUN cd /home/opam/src && opam exec -- dune build --only-packages=volgo,volgo-vcs,volgo-hg-unix,volgo-hg-eio,volgo-hg-backend,volgo-git-unix,volgo-git-eio,volgo-git-backend,volgo-base,volgo-base-tests,vcs-test-helpers @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2026-02-27 18:47.09: Using cache hint "mbarbin/vcs-ocaml/opam:windows-server-mingw-ltsc2025-ocaml-5.4@sha256:fedecf8e7810af08d566e6e877bd4ed7ad4c107b8cc32164f71632fffceb8869-windows-server-mingw-ltsc2025-5.4_opam-2.5-2e476dc1a93b270fa2351dd795b6fb4d"2026-02-27 18:47.09: Using OBuilder spec:((from ocaml/opam:windows-server-mingw-ltsc2025-ocaml-5.4@sha256:fedecf8e7810af08d566e6e877bd4ed7ad4c107b8cc32164f71632fffceb8869)(comment windows-server-mingw-ltsc2025-5.4_opam-2.5)(user (uid 1000) (gid 1000))(env CLICOLOR_FORCE 1)(env OPAMCOLOR always)(run (shell "ln -f /usr/local/bin/opam-2.5 /usr/local/bin/opam"))(run (shell "opam init --reinit -ni"))(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))(run (cache (opam-archives (target "c:\\opam\\.opam\\download-cache")))(network host)(shell "cd ~/opam-repository && (git cat-file -e 302e116c4009da2f5a31c350a57c8b3c9b27289e || git fetch origin master) && git reset -q --hard 302e116c4009da2f5a31c350a57c8b3c9b27289e && 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 /home/opam/src/./))(run (network host)(shell "opam pin add -yn volgo.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-vcs.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-tests.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-hg-unix.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-hg-eio.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-hg-backend.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-git-unix.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-git-eio.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-git-backend.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-dev.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-base.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-base-tests.dev '/home/opam/src/./' && \\nopam pin add -yn vcs-test-helpers.dev '/home/opam/src/./'"))(run (shell "mkdir -p '/home/opam/src'"))(run (shell "echo '(lang dune 3.0)' > '/home/opam/src/./dune-project'"))(env DEPS "arch-x86_64.1 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 conf-mingw-w64-gcc-x86_64.1 csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1 dune.3.21.1 dune-configurator.3.21.1 dyn.3.21.1 eio.1.3 eio_main.1.3 eio_windows.1.3 flexdll.0.44 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.1 hmap.0.8.1 host-arch-x86_64.1 host-system-mingw.1 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.3.3 lwt-dllist.1.1.0 mingw-w64-shims.0.2.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-env-mingw64.1 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.1 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.1 system-mingw.1 thread-table.1.0.0 time_now.v0.17.0 top-closure.3.21.1 topkg.1.1.1 yojson.3.0.0")(env CI true)(env OCAMLCI true)(run (cache (opam-archives (target "c:\\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 "c:\\opam\\.opam\\download-cache")))(network host)(shell "opam install $DEPS"))(copy (src .) (dst /home/opam/src))(run (shell "cd /home/opam/src && 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-02-27 18:47.09: Waiting for resource in pool OCluster2026-02-27 18:47.13: Waiting for worker…2026-02-27 20:33.47: Got resource from pool OClusterBuilding on ltsc2025-2Initialized empty Git repository in C:/state/git/vcs.git-042288f8803bf267221796852ff8c157abd5f180/.git/HEAD is now at f99d284 Bump actions/checkout from 6.0.1 to 6.0.2(from ocaml/opam:windows-server-mingw-ltsc2025-ocaml-5.4@sha256:fedecf8e7810af08d566e6e877bd4ed7ad4c107b8cc32164f71632fffceb8869)2026-02-27 20:34.07 ---> using "a21c3d6a5c8ade59b5718498d4946f2d30bc2f15b3081890bc8673cc20de69f7" from cacheC:/: (comment windows-server-mingw-ltsc2025-5.4_opam-2.5)C:/: (user (uid 1000) (gid 1000))C:/: (env CLICOLOR_FORCE 1)C:/: (env OPAMCOLOR always)C:/: (run (shell "ln -f /usr/local/bin/opam-2.5 /usr/local/bin/opam"))2026-02-27 20:34.07 ---> using "ba707ce1f62b585e8ecb40306d921206316b14fded440e6c49f33aa7897cc9c7" from cacheC:/: (run (shell "opam init --reinit -ni"))No configuration file found, using built-in defaults.<><> Unix support infrastructure ><><><><><><><><><><><><><><><><><><><><><><><>opam and the OCaml ecosystem in general require various Unix tools in order to operate correctly. At present, this requires the installation of Cygwin to provide these tools.How should opam obtain Unix tools?> 1. Use tools found in PATH (Cygwin installation at C:\cygwin64)2. Automatically create an internal Cygwin installation that will be managed by opam (recommended)3. Use Cygwin installation found in C:\cygwin644. Use another existing Cygwin/MSYS2 installation5. Abort initialisation[1/2/3/4/5] 1Checking 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.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2026-02-27 20:34.07 ---> using "dd67e9cc18682a923590cd564dd7cd6177b4afe1c25b1d53bacf8ae6b5b2364f" from cacheC:/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))CYGWIN_NT-10.0-26100 3.6.6-1.x86_64The OCaml toplevel, version 5.4.02.5.02026-02-27 20:34.07 ---> using "c97059ecb6d76caa6ea35cf8e41cecaa775dc323c43ea7e5cc23418742ce7876" from cacheC:/: (run (cache (opam-archives (target "c:\\opam\\.opam\\download-cache")))(network host)(shell "cd ~/opam-repository && (git cat-file -e 302e116c4009da2f5a31c350a57c8b3c9b27289e || git fetch origin master) && git reset -q --hard 302e116c4009da2f5a31c350a57c8b3c9b27289e && git log --no-decorate -n1 --oneline && opam update -u"))302e116c40 Merge pull request #29374 from shonfeder/release-dune-3.21.1<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file://C:/cygwin64/home/opam/opam-repositoryAlready up-to-date.Nothing to do.# To update the current shell environment, run: eval $(opam env)2026-02-27 20:34.07 ---> using "a0d9e0d7c9d5b32fb7d724ee470675e47ec362564b5a242a8fabe787c66973e7" from cacheC:/: (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 /home/opam/src/./))2026-02-27 20:35.30 ---> saved as "b2a93ecd7a356e1bd1d750ffe025904876dcaddbcf63ebb76fd8d739ae1ff9f5"C:/: (run (network host)(shell "opam pin add -yn volgo.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-vcs.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-tests.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-hg-unix.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-hg-eio.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-hg-backend.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-git-unix.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-git-eio.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-git-backend.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-dev.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-base.dev '/home/opam/src/./' && \\nopam pin add -yn volgo-base-tests.dev '/home/opam/src/./' && \\nopam pin add -yn vcs-test-helpers.dev '/home/opam/src/./'"))[volgo.dev] synchronised (file://C:/home/opam/src)volgo is now pinned to file://C:/home/opam/src (version dev)[volgo-vcs.dev] synchronised (file://C:/home/opam/src)volgo-vcs is now pinned to file://C:/home/opam/src (version dev)[NOTE] Package volgo-tests does not exist in opam repositories registered in the current switch.[volgo-tests.dev] synchronised (file://C:/home/opam/src)volgo-tests is now pinned to file://C:/home/opam/src (version dev)[volgo-hg-unix.dev] synchronised (file://C:/home/opam/src)volgo-hg-unix is now pinned to file://C:/home/opam/src (version dev)[volgo-hg-eio.dev] synchronised (file://C:/home/opam/src)volgo-hg-eio is now pinned to file://C:/home/opam/src (version dev)[volgo-hg-backend.dev] synchronised (file://C:/home/opam/src)volgo-hg-backend is now pinned to file://C:/home/opam/src (version dev)[volgo-git-unix.dev] synchronised (file://C:/home/opam/src)volgo-git-unix is now pinned to file://C:/home/opam/src (version dev)[volgo-git-eio.dev] synchronised (file://C:/home/opam/src)volgo-git-eio is now pinned to file://C:/home/opam/src (version dev)[volgo-git-backend.dev] synchronised (file://C:/home/opam/src)volgo-git-backend is now pinned to file://C:/home/opam/src (version dev)[NOTE] Package volgo-dev does not exist in opam repositories registered in the current switch.[volgo-dev.dev] synchronised (file://C:/home/opam/src)volgo-dev is now pinned to file://C:/home/opam/src (version dev)[volgo-base.dev] synchronised (file://C:/home/opam/src)volgo-base is now pinned to file://C:/home/opam/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://C:/home/opam/src)volgo-base-tests is now pinned to file://C:/home/opam/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://C:/home/opam/src)vcs-test-helpers is now pinned to file://C:/home/opam/src (version dev)2026-02-27 20:38.00 ---> saved as "91f218c00e00b34354e64eac0727de0264d345443509c8f9cb5dc5f39c96827d"C:/: (run (shell "mkdir -p '/home/opam/src'"))2026-02-27 20:39.10 ---> saved as "94b13b89f71c343b01ae4123a523bb2f42a6e5abaf8b118aade68af1ff169f23"C:/: (run (shell "echo '(lang dune 3.0)' > '/home/opam/src/./dune-project'"))2026-02-27 20:40.00 ---> saved as "245c7dd0e23140be1e74daef7f5125baee869bc0645b9651352f56832893a604"C:/: (env DEPS "arch-x86_64.1 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 conf-mingw-w64-gcc-x86_64.1 csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1 dune.3.21.1 dune-configurator.3.21.1 dyn.3.21.1 eio.1.3 eio_main.1.3 eio_windows.1.3 flexdll.0.44 fmt.0.11.0 fpath.0.7.3 fpath-sexp0.0.4.0 fs-io.3.21.1 hmap.0.8.1 host-arch-x86_64.1 host-system-mingw.1 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.3.3 lwt-dllist.1.1.0 mingw-w64-shims.0.2.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-env-mingw64.1 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.1 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.1 system-mingw.1 thread-table.1.0.0 time_now.v0.17.0 top-closure.3.21.1 topkg.1.1.1 yojson.3.0.0")C:/: (env CI true)C:/: (env OCAMLCI true)C:/: (run (cache (opam-archives (target "c:\\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"))<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>[vcs-test-helpers.dev] synchronised (no changes)[volgo.dev] synchronised (no changes)[volgo-base.dev] synchronised (no changes)[volgo-base-tests.dev] synchronised (no changes)[volgo-git-backend.dev] synchronised (no changes)[volgo-git-eio.dev] synchronised (no changes)[volgo-git-unix.dev] synchronised (no changes)[volgo-hg-backend.dev] synchronised (no changes)[volgo-hg-eio.dev] synchronised (no changes)[volgo-hg-unix.dev] synchronised (no changes)[volgo-vcs.dev] synchronised (no changes)[NOTE] Package system-mingw is already installed (current version is 1).[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).[NOTE] Package ocaml-env-mingw64 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 mingw-w64-shims is already installed (current version is 0.2.0).[NOTE] Package host-system-mingw is already installed (current version is 1).[NOTE] Package host-arch-x86_64 is already installed (current version is 1).[NOTE] Package flexdll is already installed (current version is 0.44).[NOTE] Package conf-mingw-w64-gcc-x86_64 is already installed (current version is 1).[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).[NOTE] Package arch-x86_64 is already installed (current version is 1).The following system packages will first need to be installed:mercurial<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>+ C:\opam\.opam\.cygwin\setup-x86_64.exe "--root" "C:\\cygwin64" "--quiet-mode" "unattended" "--no-shortcuts" "--no-startmenu" "--no-desktop" "--no-admin" "--no-version-check" "--no-write-registry" "--packages" "mercurial"- Starting cygwin install, version 2.935- User has backup/restore rights- User has symlink creation right- Current Directory: C:\TEMP\cache- root: C:\cygwin64 system- Changing gid to Administrators- Selected local directory: C:\TEMP\cache- net: Preconfig- site: https://mirrors.kernel.org/sourceware/cygwin/- solving: 1 tasks, update: no, use test packages: no- solving: 55 tasks, update: no, use test packages: no- Augmented Transaction List:- 0 install binutils 2.46-1- 1 install gsettings-desktop-schemas 3.24.1-1- 2 install libXau6 1.0.12-1- 3 install libXdmcp6 1.1.5-1- 4 install libdeflate0 1.25-1- 5 install libfribidi0 1.0.16-1- 6 install libgomp1 13.4.0-1- 7 install libgraphite2_3 1.3.14-1- 8 install libjbig2 2.1-2- 9 install libjpeg8 3.1.3-1- 10 install liblcms2_2 2.16-1- 11 install libpng16 1.6.47-2- 12 install libwebp7 1.6.0-1- 13 install libxml2 2.10.4-2- 14 install python39 3.9.16-1- 15 install python39-zipp 3.23.0-1- 16 install desktop-file-utils 0.28-1- 17 install libglib2.0_0 2.87.0-1- 18 install shared-mime-info 2.4-1- 19 install libxcb1 1.17.0-2- 20 install libimagequant0 2.10.0-1- 21 install libfreetype6 2.13.3-1- 22 install libwebpmux3 1.6.0-1- 23 install libwebpdemux2 1.6.0-1- 24 install libtiff7 4.7.1-1- 25 install python39-typing_extension 4.15.0-1- 26 install python39-toml 0.10.2-3- 27 install python39-platformdirs 4.4.0-1- 28 install python39-packaging 25.0-1- 29 install python39-iniconfig 2.0.0-2- 30 install python39-importlib-metadata 8.7.1-1- 31 install python39-filelock 3.17.0-1- 32 install libharfbuzz0 11.0.1-2- 33 install python39-pluggy 1.6.0-1- 34 install libraqm0 0.7.0-1- 35 install python39-pytest 8.3.4-1- 36 install python39-setuptools 80.9.0-1- 37 install python39-wheel 0.45.1-1- 38 install python39-urllib3 2.6.2-1- 39 install python39-snowballstemmer 2.2.0-1- 40 install python39-olefile 0.47-1- 41 install python39-markupsafe 3.0.3-1- 42 install python39-imagesize 1.3.0-1- 43 install python39-idna 3.11-1- 44 install python39-chardet 5.2.0-1- 45 install python39-babel 2.17.0-1- 46 install python39-jinja2 3.1.6-1- 47 install python39-requests 2.32.5-1- 48 install python39-imaging 11.3.0-1- 49 install python39-pygments 2.19.2-1- 50 install python39-docutils 0.22.4-1- 51 install python39-sphinx 4.4.0-1- 52 install python39-pip 26.0.1-1- 53 install python39-sphinxcontrib-serializinghtml 1.1.5-1- 54 install mercurial 6.9.4-1- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/binutils/binutils-2.46-1-x86_64.tar.zst- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libXau/libXau6/libXau6-1.0.12-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libXdmcp/libXdmcp6/libXdmcp6-1.1.5-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libdeflate/libdeflate0/libdeflate0-1.25-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/fribidi/libfribidi0/libfribidi0-1.0.16-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libgomp1/libgomp1-13.4.0-1-x86_64.tar.zst- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/graphite2/libgraphite2_3/libgraphite2_3-1.3.14-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/jbigkit/libjbig2/libjbig2-2.1-2.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libjpeg-turbo/libjpeg8/libjpeg8-3.1.3-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/lcms2/liblcms2_2/liblcms2_2-2.16-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libpng/libpng16/libpng16-1.6.47-2-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libwebp/libwebp7/libwebp7-1.6.0-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libxml2/libxml2-2.10.4-2.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/python39/python39-3.9.16-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-zipp/python39-zipp/python39-zipp-3.23.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/desktop-file-utils/desktop-file-utils-0.28-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/glib2.0/libglib2.0_0/libglib2.0_0-2.87.0-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/shared-mime-info/shared-mime-info-2.4-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libxcb/libxcb1/libxcb1-1.17.0-2-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libimagequant/libimagequant0/libimagequant0-2.10.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/freetype2/libfreetype6/libfreetype6-2.13.3-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libwebp/libwebpmux3/libwebpmux3-1.6.0-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libwebp/libwebpdemux2/libwebpdemux2-1.6.0-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tiff/libtiff7/libtiff7-4.7.1-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-typing_extension/python39-typing_extension/python39-typing_extension-4.15.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-toml/python39-toml/python39-toml-0.10.2-3.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-platformdirs/python39-platformdirs/python39-platformdirs-4.4.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-packaging/python39-packaging/python39-packaging-25.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-iniconfig/python39-iniconfig/python39-iniconfig-2.0.0-2.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-importlib-metadata/python39-importlib-metadata/python39-importlib-metadata-8.7.1-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-filelock/python39-filelock/python39-filelock-3.17.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/harfbuzz/libharfbuzz0/libharfbuzz0-11.0.1-2-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pluggy/python39-pluggy/python39-pluggy-1.6.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/raqm/libraqm0/libraqm0-0.7.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pytest/python39-pytest/python39-pytest-8.3.4-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-setuptools/python39-setuptools/python39-setuptools-80.9.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-wheel/python39-wheel/python39-wheel-0.45.1-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-urllib3/python39-urllib3/python39-urllib3-2.6.2-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-snowballstemmer/python39-snowballstemmer/python39-snowballstemmer-2.2.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-olefile/python39-olefile/python39-olefile-0.47-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/python-markupsafe/python39-markupsafe/python39-markupsafe-3.0.3-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-imagesize/python39-imagesize/python39-imagesize-1.3.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-idna/python39-idna/python39-idna-3.11-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-chardet/python39-chardet/python39-chardet-5.2.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-babel/python39-babel/python39-babel-2.17.0-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-jinja2/python39-jinja2/python39-jinja2-3.1.6-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-requests/python39-requests/python39-requests-2.32.5-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/python-imaging/python39-imaging/python39-imaging-11.3.0-1-x86_64.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pygments/python39-pygments/python39-pygments-2.19.2-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-docutils/python39-docutils/python39-docutils-0.22.4-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-sphinx/python39-sphinx/python39-sphinx-4.4.0-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pip/python39-pip/python39-pip-26.0.1-1-noarch.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-sphinxcontrib-serializinghtml/python39-sphinxcontrib-serializinghtml/python39-sphinxcontrib-serializinghtml-1.1.5-1.tar.xz- Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/mercurial/mercurial-6.9.4-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/binutils/binutils-2.46-1-x86_64.tar.zst- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libXau/libXau6/libXau6-1.0.12-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libXdmcp/libXdmcp6/libXdmcp6-1.1.5-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libdeflate/libdeflate0/libdeflate0-1.25-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/fribidi/libfribidi0/libfribidi0-1.0.16-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libgomp1/libgomp1-13.4.0-1-x86_64.tar.zst- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/graphite2/libgraphite2_3/libgraphite2_3-1.3.14-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/jbigkit/libjbig2/libjbig2-2.1-2.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libjpeg-turbo/libjpeg8/libjpeg8-3.1.3-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/lcms2/liblcms2_2/liblcms2_2-2.16-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libpng/libpng16/libpng16-1.6.47-2-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libwebp/libwebp7/libwebp7-1.6.0-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libxml2/libxml2-2.10.4-2.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/python39/python39-3.9.16-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-zipp/python39-zipp/python39-zipp-3.23.0-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/desktop-file-utils/desktop-file-utils-0.28-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/glib2.0/libglib2.0_0/libglib2.0_0-2.87.0-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/shared-mime-info/shared-mime-info-2.4-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libxcb/libxcb1/libxcb1-1.17.0-2-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libimagequant/libimagequant0/libimagequant0-2.10.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/freetype2/libfreetype6/libfreetype6-2.13.3-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libwebp/libwebpmux3/libwebpmux3-1.6.0-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libwebp/libwebpdemux2/libwebpdemux2-1.6.0-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tiff/libtiff7/libtiff7-4.7.1-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-typing_extension/python39-typing_extension/python39-typing_extension-4.15.0-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-toml/python39-toml/python39-toml-0.10.2-3.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-platformdirs/python39-platformdirs/python39-platformdirs-4.4.0-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-packaging/python39-packaging/python39-packaging-25.0-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-iniconfig/python39-iniconfig/python39-iniconfig-2.0.0-2.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-importlib-metadata/python39-importlib-metadata/python39-importlib-metadata-8.7.1-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-filelock/python39-filelock/python39-filelock-3.17.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/harfbuzz/libharfbuzz0/libharfbuzz0-11.0.1-2-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pluggy/python39-pluggy/python39-pluggy-1.6.0-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/raqm/libraqm0/libraqm0-0.7.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pytest/python39-pytest/python39-pytest-8.3.4-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirring: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/python39.sh"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_desktop-file-utils.sh"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_glib2.0.sh"- running: C:\cygwin64\bin\dash.exe "/etc/postinstall/zp_man-db-update-index.dash"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_shared-mime-info.sh"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_zcygsympathy.sh"- Ending cygwin installelease/python-snowballstemmer/python39-snowballstemmer/python39-snowballstemmer-2.2.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-olefile/python39-olefile/python39-olefile-0.47-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/python-markupsafe/python39-markupsafe/python39-markupsafe-3.0.3-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-imagesize/python39-imagesize/python39-imagesize-1.3.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-idna/python39-idna/python39-idna-3.11-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-chardet/python39-chardet/python39-chardet-5.2.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-babel/python39-babel/python39-babel-2.17.0-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-jinja2/python39-jinja2/python39-jinja2-3.1.6-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-requests/python39-requests/python39-requests-2.32.5-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/python-imaging/python39-imaging/python39-imaging-11.3.0-1-x86_64.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pygments/python39-pygments/python39-pygments-2.19.2-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-docutils/python39-docutils/python39-docutils-0.22.4-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-sphinx/python39-sphinx/python39-sphinx-4.4.0-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-pip/python39-pip/python39-pip-26.0.1-1-noarch.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/python-sphinxcontrib-serializinghtml/python39-sphinxcontrib-serializinghtml/python39-sphinxcontrib-serializinghtml-1.1.5-1.tar.xz- Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/mercurial/mercurial-6.9.4-1.tar.xz- running: C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_000_autorebase.dash"- running: C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_update-info-dir.dash"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/libxml2.sh"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/python39-sphinx.sh"- running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/python39-pip.sh"- runnUncaught exception: Unix.Unix_error(Unix.EUNKNOWNERR -38, "pread", "")2026-02-27 20:53.52: Job failed: Failed: Internal error