Build:
  1. 3
  2. 2
  3. 1
  4. 0
2024-10-10 06:34.35: New job: Build using windows-x86_64 in
                                [https://github.com/ocaml-opam/opam-repository-mingw#sunset (69dbd0eda2e75b7085cff45755111c73a7a42d1a)]
2024-10-10 06:34.35: Will push staging image to ocurrent/opam-staging:windows-server-msvc-ltsc2022-opam-amd64

Dockerfile:

# escape=`

# Autogenerated by OCaml-Dockerfile scripts
FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as winget-builder
USER ContainerAdministrator
ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ]
RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
RUN mkdir "C:\Program Files\winget-cli" && `
  move "C:\TEMP\winget-cli\\winget.exe" "C:\Program Files\winget-cli\" && `
  move "C:\TEMP\winget-cli\\WindowsPackageManager.dll" "C:\Program Files\winget-cli\" && `
  move "C:\TEMP\winget-cli\\resources.pri" "C:\Program Files\winget-cli\"

FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as cygwin-msvc
USER ContainerAdministrator
RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "\\$"') do `
          for /f "delims=" %l in ('cmd /v:on /c "set v=%c&& echo !v:~0,-1!"') do `
            reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l"
ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ]
ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ]
ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ]
RUN curl -SL --output C:\TEMP\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe `
    && (call C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache install `
        --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools" `
        --channelUri C:\TEMP\VisualStudio.chman `
        --installChannelUri C:\TEMP\VisualStudio.chman `
        --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 `
        --add Microsoft.VisualStudio.Component.Windows10SDK.18362 `
        --remove Microsoft.VisualStudio.Component.Windows10SDK.10240 `
        --remove Microsoft.VisualStudio.Component.Windows10SDK.10586 `
        --remove Microsoft.VisualStudio.Component.Windows10SDK.14393 `
        --remove Microsoft.VisualStudio.Component.Windows81SDK) `
    && del /q C:\TEMP\vs_buildtools.exe
ENV CYGWIN="nodosfilewarning winsymlinks:native"
RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do `
        reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;%c"
ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]
RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]
ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ]
RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages diffutils,git,make,patch && `
  powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
ADD [ "https://github.com/metastack/msvs-tools/archive/refs/heads/master.tar.gz", "C:\\TEMP\\msvs-tools.tar.gz" ]
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp && tar -xf /cygdrive/c/TEMP/msvs-tools.tar.gz && cp msvs-tools-master/msvs-detect msvs-tools-master/msvs-promote-path /bin && rm -rf /cygdrive/c/TEMP/msvs-tools/*"
RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab

FROM cygwin-msvc as opam-builder
ENV HOME="C:\cygwin64\home\opam"
RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /tmp/opam-sources"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && git checkout 787553cb90238021cd4d5a5af4a6468427caeb17 && make compiler OCAML_PORT=msvc64"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.2 && cd /tmp/opam-build-2.2 && git config --global --add safe.directory /tmp/opam-build-2.2 && git checkout 01e9a24a61e23e42d513b4b775d8c30c807439b2"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.2 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-2.2.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-master && cd /tmp/opam-build-master && git config --global --add safe.directory /tmp/opam-build-master && git checkout 787553cb90238021cd4d5a5af4a6468427caeb17"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-master && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check  --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-master.exe"

FROM cygwin-msvc
LABEL distro_style="windows"
USER ContainerAdministrator
RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages curl,diffutils,git,m4,make,patch,perl,rsync,unzip && `
  powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
ADD [ "https://github.com/fdopen/opam-repository-mingw/releases/download/0.0.0.2/opam64.tar.xz", "C:\\TEMP\\" ]
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp && tar -xf /cygdrive/c/TEMP/opam64.tar.xz && ./opam64/install.sh --prefix=/usr && rm -rf opam64 opam64.tar.xz"
ADD [ "https://aka.ms/vs/17/release/vc_redist.x64.exe", "C:\\TEMP\\" ]
RUN C:\TEMP\vc_redist.x64.exe /install /passive /norestart /log C:\TEMP\vc_redist.log && `
  powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
COPY --from=winget-builder [ "C:\\Program Files\\winget-cli", "C:\\Program Files\\winget-cli" ]
RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do `
        reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\Program Files\winget-cli;%c"
RUN powershell -Command "$path=(Join-Path $env:LOCALAPPDATA 'Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState'); New-Item $path -ItemType Directory -Force; '{ """"$schema"""": """"https://aka.ms/winget-settings.schema.json"""", """"telemetry"""": { """"disable"""": """"true"""" } }' | Out-File -encoding ASCII (Join-Path $path 'settings.json')"
RUN winget install --exact --accept-source-agreements --accept-package-agreements Git.Git
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.2.exe", "C:\\opam-2.2.exe" ]
RUN move C:\opam-2.2.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-master.exe", "C:\\opam-dev.exe" ]
RUN move C:\opam-dev.exe C:\cygwin64\usr\local\bin
WORKDIR C:\cygwin64\home\opam
ENV HOME="C:\cygwin64\home\opam"
RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /home/opam/opam-repository"
COPY [ ".", "C:\\cygwin64\\home\\opam\\opam-repository" ]
ENV OPAMROOT="C:\opam\.opam"
RUN opam init -k local -a "C:\cygwin64\home\opam\opam-repository" --bare --disable-sandboxing
RUN opam repo add ocurrent-overlay git+https://github.com/ocurrent/opam-repository-mingw#514541c9957ded860594146061738a060d3138e9 --set-default
RUN C:\cygwin64\bin\bash.exe --login -c "rm -rf /cygdrive/c/opam/.opam/repo/default/.git"
COPY [ "Dockerfile", "/Dockerfile.opam" ]


2024-10-10 06:34.35: Using cache hint "opam-windows-server-msvc-ltsc2022"
2024-10-10 06:34.35: Waiting for resource in pool OCluster
2024-10-10 06:34.35: Waiting for worker…
2024-10-10 06:39.26: Got resource from pool OCluster
Building on ltsc2022-4
All commits already cached
Sending build context to Docker daemon  134.6MB

Step 1/58 : FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as winget-builder
10.0.20348.2762: Pulling from windows/server
Digest: sha256:52d1fb3925811072bf5aaedc769b2b38c333d76efa9b87c0d6cfedd5ff06847a
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.2762
 ---> 5915f06f3db3
Step 2/58 : USER ContainerAdministrator
 ---> Using cache
 ---> 44b65e9301b0
Step 3/58 : ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ]


 ---> fae6eb4cc7b7
Step 4/58 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
 ---> Running in 5f9359b1a764
Removing intermediate container 5f9359b1a764
 ---> 23bd0c411563
Step 5/58 : RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
 ---> Running in c4e824540f1e
Removing intermediate container c4e824540f1e
 ---> b97c11821d78
Step 6/58 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
 ---> Running in dff3a0f3199f
Removing intermediate container dff3a0f3199f
 ---> 7928a55f8a86
Step 7/58 : RUN mkdir "C:\Program Files\winget-cli" &&   move "C:\TEMP\winget-cli\\winget.exe" "C:\Program Files\winget-cli\" &&   move "C:\TEMP\winget-cli\\WindowsPackageManager.dll" "C:\Program Files\winget-cli\" &&   move "C:\TEMP\winget-cli\\resources.pri" "C:\Program Files\winget-cli\"
 ---> Running in aead728c289c
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
Removing intermediate container aead728c289c
 ---> 17bc5a8e50fb
Step 8/58 : FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as cygwin-msvc
10.0.20348.2762: Pulling from windows/server
Digest: sha256:52d1fb3925811072bf5aaedc769b2b38c333d76efa9b87c0d6cfedd5ff06847a
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.2762
 ---> 5915f06f3db3
Step 9/58 : USER ContainerAdministrator
 ---> Using cache
 ---> 44b65e9301b0
Step 10/58 : RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "\\$"') do           for /f "delims=" %l in ('cmd /v:on /c "set v=%c&& echo !v:~0,-1!"') do             reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l"
 ---> Running in f6b7cca48a03

C:\>for /F "delims=" %l in ('cmd /v:on /c "set v=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\&& echo !v:~0,-1!"') do reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l" 

C:\>reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH" 
The operation completed successfully.

Removing intermediate container f6b7cca48a03
 ---> 132c7befc1ba
Step 11/58 : ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ]

 ---> bbe65ea67c71
Step 12/58 : ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ]

 ---> 3042628c95cf
Step 13/58 : ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ]

 ---> 69c233570471
Step 14/58 : RUN curl -SL --output C:\TEMP\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe     && (call C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache install         --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools"         --channelUri C:\TEMP\VisualStudio.chman         --installChannelUri C:\TEMP\VisualStudio.chman         --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64         --add Microsoft.VisualStudio.Component.Windows10SDK.18362         --remove Microsoft.VisualStudio.Component.Windows10SDK.10240         --remove Microsoft.VisualStudio.Component.Windows10SDK.10586         --remove Microsoft.VisualStudio.Component.Windows10SDK.14393         --remove Microsoft.VisualStudio.Component.Windows81SDK)     && del /q C:\TEMP\vs_buildtools.exe
 ---> Running in bfcad6221ff4
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:11 --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:11 --:--:--     0

100 4323k  100 4323k    0     0   381k      0  0:00:11  0:00:11 --:--:--  381k
Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\2052\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1028\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1029\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1033\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1046\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1055\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1045\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1042\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1040\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\3082\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1031\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1036\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1041\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\HelpFile\1049\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\vs_setup_bootstrapper.exe...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.C2RSignatureReader.Interop.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.C2RSignatureReader.Native.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.Identity.Client.Broker.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.Identity.Client.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.Identity.Client.Extensions.Msal.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.Identity.Client.NativeInterop.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.IdentityModel.Abstractions.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.VisualStudio.RemoteControl.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.Common.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.Download.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.VisualStudio.Telemetry.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Microsoft.VisualStudio.Utilities.Internal.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\runtimes\win-x64\native\msalruntime.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\runtimes\win-arm64\native\msalruntime_arm64.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\runtimes\win-x86\native\msalruntime_x86.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\Newtonsoft.Json.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\System.Memory.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\System.Runtime.CompilerServices.Unsafe.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\VSInstallerElevationService.Contracts.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\pt-BR\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\fr\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\pl\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\zh-Hans\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\es\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\tr\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\de\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\it\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\zh-Hant\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\ko\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\ru\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\cs\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\ja\vs_setup_bootstrapper.resources.dll...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\vs_setup_bootstrapper.config...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\vs_setup_bootstrapper.exe.config...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\detection.json...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\ea72cc653e216e19de5371\vs_bootstrapper_d15\vs_setup_bootstrapper.json...

Removing intermediate container bfcad6221ff4
 ---> 42f793b3865a
Step 15/58 : ENV CYGWIN="nodosfilewarning winsymlinks:native"
 ---> Running in bc1f2f40d423
Removing intermediate container bc1f2f40d423
 ---> ef541cf3801a
Step 16/58 : RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do         reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;%c"
 ---> Running in 266827c1a7f9

C:\>reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH" 
The operation completed successfully.

Removing intermediate container 266827c1a7f9
 ---> f3968536bf37
Step 17/58 : ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]


 ---> d89592a586ad
Step 18/58 : RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
 ---> Running in b61f3b6a6555
Removing intermediate container b61f3b6a6555
 ---> 628c45d1815f
Step 19/58 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]

 ---> ccad3e2b25f6
Step 20/58 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ]

 ---> cee32e447729
Step 21/58 : RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
 ---> Running in f137251d975f
symbolic link created for C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh <<===>> C:\cygwin64\lib\cygsympathy\cygsympathy
Removing intermediate container f137251d975f
 ---> f57a5f7d192d
Step 22/58 : RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages diffutils,git,make,patch &&   powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
 ---> Running in f75af61dd068
Starting cygwin install, version 2.932
User has backup/restore rights
User has symlink creation right
io_stream_cygfile: fopen(/etc/setup/setup.rc) failed 2 No such file or directory
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/
io_stream_cygfile: fopen(/etc/setup/timestamp) failed 2 No such file or directory
io_stream_cygfile: fopen(/etc/setup/installed.db) failed 2 No such file or directory
solving: 41 tasks, update: no, use test packages: no
solving: 119 tasks, update: no, use test packages: no
Augmented Transaction List:
   0 install libgsasl-common         2.2.1-1                  
   1 install libpopt-common          1.19-1                   
   2 install publicsuffix-list-dafsa 20240906-1               
   3 install terminfo                6.5+20240427-1           
   4 install tzdata                  2024b-1                  
   5 install cygwin                  3.5.4-1                  
   6 install libiconv2               1.17-1                   
   7 install libintl8                0.22.5-1                 
   8 install libncursesw10           6.5+20240427-1           
   9 install libreadline7            8.2-2                    
  10 install bash                    5.2.21-1                 
  11 install libgcc1                 12.4.0-3                 
  12 install crypto-policies         20190218-1               
  13 install base-cygwin             3.8-2                    
  14 install libzstd1                1.5.6-1                  
  15 install zlib0                   1.3.1-1                  
  16 install which                   2.20-2                   
  17 install vim-minimal             9.0.2155-2               
  18 install tzcode                  2024b-1                  
  19 install sed                     4.9-1                    
  20 install run                     1.3.4-2                  
  21 install ncurses                 6.5+20240427-1           
  22 install mintty                  3.7.6-1                  
  23 install login                   1.13-1                   
  24 install libxxhash0              0.8.2-1                  
  25 install libuuid1                2.39.3-2                 
  26 install libunistring5           1.2-1                    
  27 install libtasn1_6              4.14-1                   
  28 install libstdc++6              12.4.0-3                 
  29 install libsmartcols1           2.39.3-2                 
  30 install libpopt0                1.19-1                   
  31 install libpipeline1            1.5.6-1                  
  32 install libpcre2_8_0            10.44-1                  
  33 install libpcre1                8.45-1                   
  34 install libntlm0                1.4-1                    
  35 install libnghttp2_14           1.61.0-1                 
  36 install liblzma5                5.6.3-1                  
  37 install liblz4_1                1.9.4-1                  
  38 install libkrb5support0         1.15.2-2                 
  39 install libidn2_0               2.3.7-1                  
  40 install libidn12                1.42-1                   
  41 install libgpg-error0           1.50-2                   
  42 install libgmp10                6.3.0-1                  
  43 install libgdbm6                1.18.1-1                 
  44 install libgc1                  8.2.8-1                  
  45 install libffi8                 3.4.6-1                  
  46 install libffi6                 3.2.1-2                  
  47 install libexpat1               2.6.2-1                  
  48 install libedit0                20221030-4               
  49 install libcrypt2               4.4.20-1                 
  50 install libcom_err2             1.44.5-1                 
  51 install libbz2_1                1.0.8-1                  
  52 install libbrotlicommon1        1.1.0-1                  
  53 install libblkid1               2.39.3-2                 
  54 install libattr1                2.5.1-1.20.g0981a7bfe487 
  55 install libargp                 20230708-2               
  56 install ipc-utils               1.1-1                    
  57 install hostname                3.13-1                   
  58 install gzip                    1.13-1                   
  59 install gettext                 0.22.5-1                 
  60 install editrights              1.04-1                   
  61 install diffutils               3.10-1                   
  62 install dash                    0.5.12-5                 
  63 install cygrunsrv               1.64-1                   
  64 install alternatives            1.26-1                   
  65 install libuchardet0            0.0.8-1                  
  66 install libdb5.3                5.3.28-2                 
  67 install cygutils                1.4.17-1                 
  68 install grep                    3.11-1                   
  69 install less                    643-1                    
  70 install xz                      5.6.3-1                  
  71 install zstd                    1.5.6-1                  
  72 install libk5crypto3            1.15.2-2                 
  73 install libpsl5                 0.21.5-1                 
  74 install libgcrypt20             1.11.0-1                 
  75 install libmpfr6                4.2.1-1                  
  76 install libp11-kit0             0.23.20-1                
  77 install perl_base               5.40.0-1                 
  78 install perl_autorebase         5.40.0-1                 
  79 install libguile3.0_1           3.0.9-3                  
  80 install file                    5.44-1                   
  81 install bzip2                   1.0.8-1                  
  82 install libbrotlidec1           1.1.0-1                  
  83 install libfdisk1               2.39.3-2                 
  84 install patch                   2.7.6-17                 
  85 install coreutils               9.0-1                    
  86 install getent                  2.18.90-5                
  87 install rebase                  4.6.6-1                  
  88 install info                    7.1-2                    
  89 install _autorebase             001091-1                 
  90 install groff                   1.23.0-1                 
  91 install libkrb5_3               1.15.2-2                 
  92 install gawk                    5.3.0-1                  
  93 install p11-kit-trust           0.23.20-1                
  94 install p11-kit                 0.23.20-1                
  95 install perl-TermReadKey        2.38-5                   
  96 install perl-Error              0.17029-4                
  97 install make                    4.4.1-2                  
  98 install tar                     1.35-2                   
  99 install util-linux              2.39.3-2                 
 100 install findutils               4.10.0-1                 
 101 install libgssapi_krb5_2        1.15.2-2                 
 102 install csih                    0.9.14-1                 
 103 install ca-certificates         2024.2.69_v8.0.401-1     
 104 install man-db                  2.13.0-1                 
 105 install base-files              4.3-3                    
 106 install libgsasl18              2.2.1-1                  
 107 install libssl3                 3.0.15-1                 
 108 install libssl1.1               1.1.1w-1                 
 109 install openssl                 3.0.15-1                 
 110 install libfido2                1.15.0-1                 
 111 install rsync                   3.3.0-1                  
 112 install libssh2_1               1.11.0-1                 
 113 install libsasl2_3              2.1.27-1                 
 114 install openssh                 9.8p1-1                  
 115 install libopenldap2            2.6.8-1                  
 116 install libopenldap2_4_2        2.6.8-1                  
 117 install libcurl4                8.10.1-1                 
 118 install git                     2.45.1-1                 
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gsasl/libgsasl-common/libgsasl-common-2.2.1-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/popt/libpopt-common/libpopt-common-1.19-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/publicsuffix-list/publicsuffix-list-dafsa/publicsuffix-list-dafsa-20240906-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/ncurses/terminfo/terminfo-6.5+20240427-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/tzdata/tzdata-2024b-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/cygwin/cygwin-3.5.4-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libiconv/libiconv2/libiconv2-1.17-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gettext/libintl8/libintl8-0.22.5-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/libncursesw10/libncursesw10-6.5+20240427-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/readline/libreadline7/libreadline7-8.2-2.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bash/bash-5.2.21-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libgcc1/libgcc1-12.4.0-3.tar.zst
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/crypto-policies/crypto-policies-20190218-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/base-cygwin/base-cygwin-3.8-2.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/zstd/libzstd1/libzstd1-1.5.6-1.tar.zst
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/zlib/zlib0/zlib0-1.3.1-1.tar.zst
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/which/which-2.20-2.tar.bz2
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/vim/vim-minimal/vim-minimal-9.0.2155-2.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tzcode/tzcode-2024b-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/sed/sed-4.9-1.tar.xz
Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/run/run-1.3.4-2.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/ncurses/ncurses-6.5+20240427-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/mintty/mintty-3.7.6-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/login/login-1.13-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/xxhash/libxxhash0/libxxhash0-0.8.2-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/util-linux/libuuid1/libuuid1-2.39.3-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libunistring/libunistring5/libunistring5-1.2-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.14-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gcc/libstdc++6/libstdc++6-12.4.0-3.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/util-linux/libsmartcols1/libsmartcols1-2.39.3-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/popt/libpopt0/libpopt0-1.19-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libpipeline/libpipeline1/libpipeline1-1.5.6-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/pcre2/libpcre2_8_0/libpcre2_8_0-10.44-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/pcre/libpcre1/libpcre1-8.45-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libntlm/libntlm0/libntlm0-1.4-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/nghttp2/libnghttp2_14/libnghttp2_14-1.61.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/xz/liblzma5/liblzma5-5.6.3-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/lz4/liblz4_1/liblz4_1-1.9.4-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/krb5/libkrb5support0/libkrb5support0-1.15.2-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libidn2/libidn2_0/libidn2_0-2.3.7-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libidn/libidn12/libidn12-1.42-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libgpg-error/libgpg-error0/libgpg-error0-1.50-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gmp/libgmp10/libgmp10-6.3.0-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gdbm/libgdbm6/libgdbm6-1.18.1-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libgc/libgc1/libgc1-8.2.8-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libffi/libffi8/libffi8-3.4.6-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/expat/libexpat1/libexpat1-2.6.2-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libedit/libedit0/libedit0-20221030-4.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libxcrypt/libcrypt2/libcrypt2-4.4.20-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/e2fsprogs/libcom_err2/libcom_err2-1.44.5-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.8-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/brotli/libbrotlicommon1/libbrotlicommon1-1.1.0-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/util-linux/libblkid1/libblkid1-2.39.3-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/attr/libattr1/libattr1-2.5.1-1.20.g0981a7bfe487.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libargp/libargp-20230708-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/ipc-utils/ipc-utils-1.1-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/hostname/hostname-3.13-1.tar.bz2
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gzip/gzip-1.13-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gettext/gettext-0.22.5-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/editrights/editrights-1.04-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/diffutils/diffutils-3.10-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/dash/dash-0.5.12-5.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/cygrunsrv/cygrunsrv-1.64-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/alternatives/alternatives-1.26-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/uchardet/libuchardet0/libuchardet0-0.0.8-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/db/libdb5.3/libdb5.3-5.3.28-2.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/cygutils/cygutils-1.4.17-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/grep/grep-3.11-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/less/less-643-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/xz/xz-5.6.3-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/zstd/zstd-1.5.6-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/krb5/libk5crypto3/libk5crypto3-1.15.2-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libpsl/libpsl5/libpsl5-0.21.5-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libgcrypt/libgcrypt20/libgcrypt20-1.11.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/mpfr/libmpfr6/libmpfr6-4.2.1-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/p11-kit/libp11-kit0/libp11-kit0-0.23.20-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/perl/perl_base/perl_base-5.40.0-1.tar.zst
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/perl/perl_autorebase/perl_autorebase-5.40.0-1.tar.zst
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/guile3.0/libguile3.0_1/libguile3.0_1-3.0.9-3.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/file/file-5.44-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/bzip2/bzip2-1.0.8-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/brotli/libbrotlidec1/libbrotlidec1-1.1.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/util-linux/libfdisk1/libfdisk1-2.39.3-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/patch/patch-2.7.6-17.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/coreutils/coreutils-9.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/getent/getent-2.18.90-5.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/rebase/rebase-4.6.6-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/texinfo/info/info-7.1-2.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/noarch/release/_autorebase/_autorebase-001091-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/groff/groff-1.23.0-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.15.2-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gawk/gawk-5.3.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/p11-kit/p11-kit-trust/p11-kit-trust-0.23.20-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/p11-kit/p11-kit-0.23.20-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/perl-TermReadKey/perl-TermReadKey-2.38-5.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/noarch/release/perl-Error/perl-Error-0.17029-4.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/make/make-4.4.1-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/tar/tar-1.35-2.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/util-linux/util-linux-2.39.3-2.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/findutils/findutils-4.10.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/krb5/libgssapi_krb5_2/libgssapi_krb5_2-1.15.2-2.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/csih/csih-0.9.14-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/noarch/release/ca-certificates/ca-certificates-2024.2.69_v8.0.401-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/man-db/man-db-2.13.0-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/noarch/release/base-files/base-files-4.3-3.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/gsasl/libgsasl18/libgsasl18-2.2.1-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/openssl/libssl3/libssl3-3.0.15-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/openssl/libssl1.1/libssl1.1-1.1.1w-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/openssl/openssl-3.0.15-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libfido2/libfido2-1.15.0-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/rsync/rsync-3.3.0-1.tar.xz
connection error: 12002 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/libssh2/libssh2_1/libssh2_1-1.11.0-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/cyrus-sasl/libsasl2_3/libsasl2_3-2.1.27-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/openssh/openssh-9.8p1-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/openldap/libopenldap2/libopenldap2-2.6.8-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/openldap/libopenldap2_4_2/libopenldap2_4_2-2.6.8-1.tar.zst
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/curl/libcurl4/libcurl4-8.10.1-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/git/git-2.45.1-1.tar.xz
download error in unattended_mode: 4 retries remaining.
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/ncurses/terminfo/terminfo-6.5+20240427-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/cygwin/cygwin-3.5.4-1.tar.xz
connection error: 12029 fetching https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/zstd/libzstd1/libzstd1-1.5.6-1.tar.zst
2024-10-10 07:48.28: Job failed: Disconnected: Switch turned off