2026-05-12 20:46.05: New job: Build using windows-x86_64 in
                                [https://github.com/ocaml/opam-repository#master (fc08333d1ba03c1ffbc960479a92aa94085c5f78)]
2026-05-12 20:46.05: 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.5139 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.5139 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.Workload.VCTools `
        --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 `
        --add Microsoft.VisualStudio.Component.Windows11SDK.22621 `
        --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 1ea21b460db391ba6f8fb727ee296a86f65579e2 && sed -i \"s/make -j[0-9]*/make -j\$NUMBER_OF_PROCESSORS/g\" shell/bootstrap-ocaml.sh && 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-2.3 && cd /tmp/opam-build-2.3 && git config --global --add safe.directory /tmp/opam-build-2.3 && git checkout 35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.3 && 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.3.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.4 && cd /tmp/opam-build-2.4 && git config --global --add safe.directory /tmp/opam-build-2.4 && git checkout 7c92631391984f698f31ee24f3ae4dc1cd3698ff"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.4 && 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.4.exe"
RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.5 && cd /tmp/opam-build-2.5 && git config --global --add safe.directory /tmp/opam-build-2.5 && git checkout 6218d0c4c022106034a93c8ecb5b80fa213d7356"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.5 && 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.5.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 1ea21b460db391ba6f8fb727ee296a86f65579e2"
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://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-2.3.exe", "C:\\opam-2.3.exe" ]
RUN move C:\opam-2.3.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.4.exe", "C:\\opam-2.4.exe" ]
RUN move C:\opam-2.4.exe C:\cygwin64\usr\local\bin
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.5.exe", "C:\\opam-2.5.exe" ]
RUN move C:\opam-2.5.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
RUN powershell -Command "[Environment]::GetEnvironmentVariable('PATH', 'Machine')" > C:\path_before.txt
RUN call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" amd64 && set > C:\msvc_env.txt
RUN powershell -Command "$before = (Get-Content C:\path_before.txt).Trim(); $content = Get-Content C:\msvc_env.txt; foreach ($line in $content) { if ($line -match '^(INCLUDE|LIB|LIBPATH)=(.*)$') { [Environment]::SetEnvironmentVariable($matches[1], $matches[2], 'Machine') } elseif ($line -match '^PATH=(.*)$') { $vcPath = $matches[1]; $msvcPaths = ($vcPath -split ';' | Where-Object { $before -notlike \"*$_*\" -and $_ -ne '' }) -join ';'; $finalPath = \"$msvcPaths;C:\cygwin64\usr\local\bin;C:\cygwin64\bin;$before\"; [Environment]::SetEnvironmentVariable('PATH', $finalPath, 'Machine') } }"
RUN del C:\path_before.txt C:\msvc_env.txt
RUN mklink C:\cygwin64\usr\local\bin\opam.exe C:\cygwin64\usr\local\bin\opam-2.2.exe
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 git -a "C:\cygwin64\home\opam\opam-repository" --bare --disable-sandboxing
RUN C:\cygwin64\bin\bash.exe --login -c "rm -rf /cygdrive/c/opam/.opam/repo/default/.git"
COPY [ "Dockerfile", "/Dockerfile.opam" ]


2026-05-12 20:46.05: Using cache hint "opam-windows-server-msvc-ltsc2022"
2026-05-12 21:05.27: Waiting for worker…
2026-05-12 21:05.37: Got resource from pool OCluster
Building on ltsc2025-1
All commits already cached
HEAD is now at fc08333d1b Merge pull request #29875 from ocaml/mseri-patch-3


------------------------------------------------------------------------------

               Total    Copied   Skipped  Mismatch    FAILED    Extras
    Dirs :     56796     56796         0         0         0         0
   Files :     60818     60818         0         0         0         0
   Bytes :  227.53 m  227.53 m         0         0         0         0
   Times :   0:10:25   0:06:21                       0:00:00   0:04:03


   Speed :             625,004 Bytes/sec.
   Speed :              35.763 MegaBytes/min.
   Ended : Tuesday, May 12, 2026 9:23:19 PM

Sending build context to Docker daemon  372.6MB

Step 1/72 : FROM mcr.microsoft.com/windows/server:10.0.20348.5139 AS winget-builder
10.0.20348.5139: Pulling from windows/server
Digest: sha256:b6754104e49ebec66426295546ef858206d6ccd9f5c7d1ccd992e24b2f75d9fb
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.5139
 ---> e7fb7bcc4305
Step 2/72 : USER ContainerAdministrator
 ---> Using cache
 ---> 28d6da8bed28
Step 3/72 : ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ]


 ---> Using cache
 ---> 0661e2ebb79b
Step 4/72 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
 ---> Using cache
 ---> b9cbdaedf785
Step 5/72 : RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
 ---> Using cache
 ---> c23967235911
Step 6/72 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
 ---> Using cache
 ---> e712ff681900
Step 7/72 : 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\"
 ---> Using cache
 ---> ef56ebc2fbba
Step 8/72 : FROM mcr.microsoft.com/windows/server:10.0.20348.5139 AS cygwin-msvc
10.0.20348.5139: Pulling from windows/server
Digest: sha256:b6754104e49ebec66426295546ef858206d6ccd9f5c7d1ccd992e24b2f75d9fb
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.5139
 ---> e7fb7bcc4305
Step 9/72 : USER ContainerAdministrator
 ---> Using cache
 ---> 28d6da8bed28
Step 10/72 : 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"
 ---> Using cache
 ---> d7f37e2e0689
Step 11/72 : ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ]

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

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

 ---> 5c640b7d1e59
Step 14/72 : 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.Workload.VCTools         --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64         --add Microsoft.VisualStudio.Component.Windows11SDK.22621         --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 675e5a97cfe9
  % 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:01 --:--:--     0

100 4357k  100 4357k    0     0  3124k      0  0:00:01  0:00:01 --:--:-- 3124k
Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cc19747582ec8e1f5da0e4f19a\vs_bootstrapper_d15\HelpFile\1055\help.html...

Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\cc19747582ec8e1f5da0e4f19a\vs_bootstrapper_d15\HelpFile\2052\help.html...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 ---> Removed intermediate container 675e5a97cfe9
 ---> e2d6ecd3c910
Step 15/72 : ENV CYGWIN="nodosfilewarning winsymlinks:native"
 ---> Running in dbb8351af698
 ---> Removed intermediate container dbb8351af698
 ---> c232d74318ef
Step 16/72 : 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 83b0030e22c8

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.

 ---> Removed intermediate container 83b0030e22c8
 ---> 591184471c46
Step 17/72 : ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]

 ---> 3a6ef14780a8
Step 18/72 : RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
 ---> Running in fe45642c5ea9
 ---> Removed intermediate container fe45642c5ea9
 ---> 5b9b0f3bdaf4
Step 19/72 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]

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

 ---> 85d83f0e70f4
Step 21/72 : RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
 ---> Running in 70341080ce9c
symbolic link created for C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh <<===>> C:\cygwin64\lib\cygsympathy\cygsympathy
 ---> Removed intermediate container 70341080ce9c
 ---> d9bd345a31eb
Step 22/72 : 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 289249d36182
Starting cygwin install, version 2.937
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
2026-05-13 20:46.05: Cancelling: Auto-cancelling job because it is no longer needed
Job cancelled