Build:
- 1
- 0
2026-09-19 14:09.43: New job: Build using windows-x86_64 in
[https://github.com/ocaml/opam-repository#master (8cdfa3296d9bc7d93273f46eb2438757e4fd5cf0)]
2026-09-19 14:09.43: Will push staging image to ocurrent/opam-staging:windows-server-mingw-ltsc2022-opam-amd64
Dockerfile:
# escape=`
# Autogenerated by OCaml-Dockerfile scripts
FROM mcr.microsoft.com/windows/server:10.0.20348.5622 AS winget-builder
USER ContainerAdministrator
RUN reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\wuauserv" /v Start /t REG_DWORD /d 4 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\UsoSvc" /v Start /t REG_DWORD /d 4 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc" /v Start /t REG_DWORD /d 4 /f
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.5622 AS opam-builder
USER ContainerAdministrator
RUN reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\wuauserv" /v Start /t REG_DWORD /d 4 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\UsoSvc" /v Start /t REG_DWORD /d 4 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc" /v Start /t REG_DWORD /d 4 /f
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"
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,mingw64-i686-gcc-g++,mingw64-x86_64-gcc-core,mingw64-x86_64-gcc-g++,patch && `
powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab
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 gc.autoDetach false && 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 a310b2ef12f9f62f7cdefdcda5a00c379654477e && sed -i \"s/make -j[0-9]*/make -j\$NUMBER_OF_PROCESSORS/g\" shell/bootstrap-ocaml.sh && make compiler "
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-private-runtime --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-private-runtime --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-private-runtime --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 ad0564f20c6306bc83085fe663cab903fe887208"
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-private-runtime --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-2.6 && cd /tmp/opam-build-2.6 && git config --global --add safe.directory /tmp/opam-build-2.6 && git checkout 0f9c3b385769323c4af68798b2d2c7bf62a70daf"
RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.6 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check --with-private-runtime --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.6.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 a310b2ef12f9f62f7cdefdcda5a00c379654477e"
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-private-runtime --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 mcr.microsoft.com/windows/server:10.0.20348.5622
USER ContainerAdministrator
RUN reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\wuauserv" /v Start /t REG_DWORD /d 4 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\UsoSvc" /v Start /t REG_DWORD /d 4 /f `
&& reg add "HKLM\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc" /v Start /t REG_DWORD /d 4 /f
LABEL distro_style="windows"
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://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
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 curl,diffutils,git,m4,make,mingw64-x86_64-gcc-core,patch,perl,rsync,unzip && `
powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab
COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\Opam.Runtime.amd64", "C:\\Opam.Runtime.amd64" ]
RUN move C:\Opam.Runtime.amd64 C:\cygwin64\usr\local\bin
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-2.6.exe", "C:\\opam-2.6.exe" ]
RUN move C:\opam-2.6.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 mklink C:\cygwin64\usr\local\bin\opam.exe C:\cygwin64\usr\local\bin\opam-2.2.exe
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\usr\local\bin;C:\cygwin64\bin;%c"
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 gc.autoDetach false && 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-09-19 14:09.43: Using cache hint "opam-windows-server-mingw-ltsc2022"
2026-09-19 14:09.43: Waiting for resource in pool OCluster
2026-09-19 14:09.43: Waiting for worker…
2026-09-19 14:09.43: Got resource from pool OCluster
Building on ltsc2025-3
All commits already cached
HEAD is now at 8cdfa3296d Merge pull request #30765 from ab-tools/keynub-licdongle-1.1.1
------------------------------------------------------------------------------
Total Copied Skipped Mismatch FAILED Extras
Dirs : 58524 58524 0 0 0 0
Files : 62555 62555 0 0 0 0
Bytes : 236.87 m 236.87 m 0 0 0 0
Times : 0:06:58 0:04:40 0:00:00 0:02:18
Speed : 885,408 Bytes/sec.
Speed : 50.664 MegaBytes/min.
Ended : Saturday, September 19, 2026 2:18:24 PM
Sending build context to Docker daemon 389MB
Step 1/81 : FROM mcr.microsoft.com/windows/server:10.0.20348.5622 AS winget-builder
10.0.20348.5622: Pulling from windows/server
Digest: sha256:b6c784d7e838fe92ee590d7dccf13d339841a3f69e32d5d776abcd6bc9774d1a
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.5622
---> 64328e8c6751
Step 2/81 : USER ContainerAdministrator
---> Using cache
---> fc1d56c6563f
Step 3/81 : RUN reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\wuauserv" /v Start /t REG_DWORD /d 4 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\UsoSvc" /v Start /t REG_DWORD /d 4 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc" /v Start /t REG_DWORD /d 4 /f
---> Using cache
---> ab252d799464
Step 4/81 : ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ]
---> Using cache
---> 2205959e5f7f
Step 5/81 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
---> Using cache
---> 61a7c570e776
Step 6/81 : RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
---> Using cache
---> 39c2f226c849
Step 7/81 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
---> Using cache
---> 105eb545b6e4
Step 8/81 : 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
---> b539cf7a8271
Step 9/81 : FROM mcr.microsoft.com/windows/server:10.0.20348.5622 AS opam-builder
10.0.20348.5622: Pulling from windows/server
Digest: sha256:b6c784d7e838fe92ee590d7dccf13d339841a3f69e32d5d776abcd6bc9774d1a
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.5622
---> 64328e8c6751
Step 10/81 : USER ContainerAdministrator
---> Using cache
---> fc1d56c6563f
Step 11/81 : RUN reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\wuauserv" /v Start /t REG_DWORD /d 4 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\UsoSvc" /v Start /t REG_DWORD /d 4 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc" /v Start /t REG_DWORD /d 4 /f
---> Using cache
---> ab252d799464
Step 12/81 : 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
---> 072a05080e66
Step 13/81 : ENV CYGWIN="nodosfilewarning winsymlinks:native"
---> Using cache
---> abd8746790c9
Step 14/81 : 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"
---> Using cache
---> 4b21f0a83513
Step 15/81 : ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]
---> Using cache
---> 00f453e94d51
Step 16/81 : RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
---> Using cache
---> 0fd80bdaa6f8
Step 17/81 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]
---> Using cache
---> fb18dbd2bb30
Step 18/81 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ]
---> Using cache
---> de1e1a675951
Step 19/81 : RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
---> Using cache
---> 84e4d9702393
Step 20/81 : 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,mingw64-i686-gcc-g++,mingw64-x86_64-gcc-core,mingw64-x86_64-gcc-g++,patch && powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
---> Using cache
---> f54baea9b1c3
Step 21/81 : RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab
---> Using cache
---> 1e7db15b637a
Step 22/81 : ENV HOME="C:\cygwin64\home\opam"
---> Using cache
---> c3083a11647b
Step 23/81 : 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 gc.autoDetach false && git config --global --add safe.directory /tmp/opam-sources"
---> Using cache
---> e2cc5b0091b0
Step 24/81 : RUN C:\cygwin64\bin\bash.exe --login -c "git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && git checkout a310b2ef12f9f62f7cdefdcda5a00c379654477e && sed -i \"s/make -j[0-9]*/make -j\$NUMBER_OF_PROCESSORS/g\" shell/bootstrap-ocaml.sh && make compiler "
---> Using cache
---> db481ec7342a
Step 25/81 : 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"
---> Using cache
---> 25b4756d17e2
Step 26/81 : 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-private-runtime --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"
---> Using cache
---> 2c6471531362
Step 27/81 : 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"
---> Using cache
---> 6e89e1cb78ab
Step 28/81 : 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-private-runtime --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"
---> Using cache
---> a3f1a966d92d
Step 29/81 : 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"
---> Using cache
---> f20b5b858674
Step 30/81 : 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-private-runtime --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"
---> Using cache
---> d5b982302f82
Step 31/81 : 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 ad0564f20c6306bc83085fe663cab903fe887208"
---> Using cache
---> 8dc7c3506fec
Step 32/81 : 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-private-runtime --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"
---> Using cache
---> 18e239c29350
Step 33/81 : RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.6 && cd /tmp/opam-build-2.6 && git config --global --add safe.directory /tmp/opam-build-2.6 && git checkout 0f9c3b385769323c4af68798b2d2c7bf62a70daf"
---> Using cache
---> 0211b86f0c6a
Step 34/81 : RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.6 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check --with-private-runtime --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.6.exe"
---> Using cache
---> 3739e1086fa2
Step 35/81 : 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 a310b2ef12f9f62f7cdefdcda5a00c379654477e"
---> Using cache
---> 5cb92cc00fcb
Step 36/81 : 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-private-runtime --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"
---> Using cache
---> 6f2f988a5e56
Step 37/81 : FROM mcr.microsoft.com/windows/server:10.0.20348.5622
10.0.20348.5622: Pulling from windows/server
Digest: sha256:b6c784d7e838fe92ee590d7dccf13d339841a3f69e32d5d776abcd6bc9774d1a
Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.5622
---> 64328e8c6751
Step 38/81 : USER ContainerAdministrator
---> Using cache
---> fc1d56c6563f
Step 39/81 : RUN reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\wuauserv" /v Start /t REG_DWORD /d 4 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\UsoSvc" /v Start /t REG_DWORD /d 4 /f && reg add "HKLM\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc" /v Start /t REG_DWORD /d 4 /f
---> Using cache
---> ab252d799464
Step 40/81 : LABEL distro_style="windows"
---> Using cache
---> 7c73e33e6a6c
Step 41/81 : USER ContainerAdministrator
---> Using cache
---> 8f8eee0260cc
Step 42/81 : 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
---> 3762e16bffc8
Step 43/81 : ADD [ "https://aka.ms/vs/17/release/vc_redist.x64.exe", "C:\\TEMP\\" ]
---> Using cache
---> ef1d82dc1101
Step 44/81 : RUN C:\TEMP\vc_redist.x64.exe /install /passive /norestart /log C:\TEMP\vc_redist.log && powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
---> Using cache
---> e7506657f376
Step 45/81 : COPY --from=winget-builder [ "C:\\Program Files\\winget-cli", "C:\\Program Files\\winget-cli" ]
---> Using cache
---> 88ca9cdf2b84
Step 46/81 : 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"
---> Using cache
---> fc7542f8ed56
Step 47/81 : 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')"
---> Using cache
---> 15b7a9771d97
Step 48/81 : RUN winget install --exact --accept-source-agreements --accept-package-agreements Git.Git
---> Using cache
---> abacae66549f
Step 49/81 : ENV CYGWIN="nodosfilewarning winsymlinks:native"
---> Using cache
---> 31895989f12b
Step 50/81 : 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"
---> Using cache
---> 2a64ad282abd
Step 51/81 : ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]
---> Using cache
---> 8257dd6fb582
Step 52/81 : RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
---> Using cache
---> fbf7d5e71d1b
Step 53/81 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]
---> Using cache
---> 8e347f192fe6
Step 54/81 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ]
---> Using cache
---> 1d6fbda50747
Step 55/81 : RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
---> Using cache
---> a3f88ddb62c5
Step 56/81 : 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,mingw64-x86_64-gcc-core,patch,perl,rsync,unzip && powershell -Command "Remove-Item 'C:\TEMP' -Recurse"
---> Using cache
---> 8f9379fff763
Step 57/81 : RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab
---> Using cache
---> 81a6b988ed1d
Step 58/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\Opam.Runtime.amd64", "C:\\Opam.Runtime.amd64" ]
---> Using cache
---> 40bfaf52a6de
Step 59/81 : RUN move C:\Opam.Runtime.amd64 C:\cygwin64\usr\local\bin
---> Using cache
---> 788aa787031f
Step 60/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.2.exe", "C:\\opam-2.2.exe" ]
---> Using cache
---> 949bb4ec6b5c
Step 61/81 : RUN move C:\opam-2.2.exe C:\cygwin64\usr\local\bin
---> Using cache
---> a3cd89913cad
Step 62/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.3.exe", "C:\\opam-2.3.exe" ]
---> Using cache
---> 2360e332ed67
Step 63/81 : RUN move C:\opam-2.3.exe C:\cygwin64\usr\local\bin
---> Using cache
---> 7c46424e99fc
Step 64/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.4.exe", "C:\\opam-2.4.exe" ]
---> Using cache
---> 168c84451a6c
Step 65/81 : RUN move C:\opam-2.4.exe C:\cygwin64\usr\local\bin
---> Using cache
---> cefea359b37a
Step 66/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.5.exe", "C:\\opam-2.5.exe" ]
---> Using cache
---> 7af9d3befda4
Step 67/81 : RUN move C:\opam-2.5.exe C:\cygwin64\usr\local\bin
---> Using cache
---> 999543ede7b5
Step 68/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.6.exe", "C:\\opam-2.6.exe" ]
---> Using cache
---> 86f15bc709a6
Step 69/81 : RUN move C:\opam-2.6.exe C:\cygwin64\usr\local\bin
---> Using cache
---> 896a8f287ffd
Step 70/81 : COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-master.exe", "C:\\opam-dev.exe" ]
---> Using cache
---> 174f3c8e934c
Step 71/81 : RUN move C:\opam-dev.exe C:\cygwin64\usr\local\bin
---> Using cache
---> e90357eecc57
Step 72/81 : RUN mklink C:\cygwin64\usr\local\bin\opam.exe C:\cygwin64\usr\local\bin\opam-2.2.exe
---> Using cache
---> f1519d5f40fa
Step 73/81 : 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\usr\local\bin;C:\cygwin64\bin;%c"
---> Using cache
---> 7a74bd728fe3
Step 74/81 : WORKDIR C:\cygwin64\home\opam
---> Using cache
---> 7b1ed3dd4350
Step 75/81 : ENV HOME="C:\cygwin64\home\opam"
---> Using cache
---> 0fdb27c6db2f
Step 76/81 : 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 gc.autoDetach false && git config --global --add safe.directory /home/opam/opam-repository"
---> Using cache
---> 4f658469d708
Step 77/81 : COPY [ ".", "C:\\cygwin64\\home\\opam\\opam-repository" ]
---> 844154e6a385
Step 78/81 : ENV OPAMROOT="C:\opam\.opam"
---> Running in 701d82170586
---> Removed intermediate container 701d82170586
---> 3774e4f2619e
Step 79/81 : RUN opam init -k git -a "C:\cygwin64\home\opam\opam-repository" --bare --disable-sandboxing
---> Running in 17dcce4c6192
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:\cygwin64
4. Use another existing Cygwin/MSYS2 installation
5. Abort initialisation
[1/2/3/4/5] 1
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
<><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file://C:/cygwin64/home/opam/opam-repository):
[WARNING] opam >= 2.5.2 includes important security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
default (at git+file://C:/cygwin64/home/opam/opam-repository):
[INFO] opam >= 2.6.0 includes extreme performance improvements on Windows; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
---> Removed intermediate container 17dcce4c6192
---> 0651cbfa3a00
Step 80/81 : RUN C:\cygwin64\bin\bash.exe --login -c "rm -rf /cygdrive/c/opam/.opam/repo/default/.git"
---> Running in bd0e1338195a
tzset: can't find matching POSIX timezone for Windows timezone ""
---> Removed intermediate container bd0e1338195a
---> 5f5bf1af5ec2
Step 81/81 : COPY [ "Dockerfile", "/Dockerfile.opam" ]
---> caf6d6cfdf30
Successfully built caf6d6cfdf30
Pushing "sha256:caf6d6cfdf30d01d6032f823ae7b790bd7c2a26fe8f3957d0ca38e4152733551" to "ocurrent/opam-staging:windows-server-mingw-ltsc2022-opam-amd64" as user "ocurrentbuilder"
Login Succeeded
The push refers to repository [docker.io/ocurrent/opam-staging]
b69ee3cca082: Preparing
b691b322448d: Preparing
e68ec85b7504: Preparing
11ca6c4238d4: Preparing
391f3006f76e: Preparing
c7b4a542c06f: Preparing
979945b8d272: Preparing
ef333aeb9fb4: Preparing
00411a318f0e: Preparing
2b0c0fabc9d3: Preparing
d3ff75bed9d7: Preparing
fb032f4c8e1d: Preparing
1e67ee8876e0: Preparing
80bb9b80caaa: Preparing
5e39ace55380: Preparing
1bfdb83c8c15: Preparing
042558953f15: Preparing
e3b0a3072f84: Preparing
470b75419637: Preparing
53a665253fc3: Preparing
1cb899daab99: Preparing
c7b4a542c06f: Waiting
979945b8d272: Waiting
ef333aeb9fb4: Waiting
00411a318f0e: Waiting
2b0c0fabc9d3: Waiting
d3ff75bed9d7: Waiting
fb032f4c8e1d: Waiting
1e67ee8876e0: Waiting
80bb9b80caaa: Waiting
5e39ace55380: Waiting
1bfdb83c8c15: Waiting
042558953f15: Waiting
e3b0a3072f84: Waiting
7658ac1788f1: Preparing
53a665253fc3: Waiting
1cb899daab99: Waiting
470b75419637: Waiting
0d52100df1ec: Preparing
5aed332ac3a5: Preparing
86217bf08d55: Preparing
ef794a720e10: Preparing
aedb25b29a8e: Preparing
86217bf08d55: Waiting
ef794a720e10: Waiting
7658ac1788f1: Waiting
0d52100df1ec: Waiting
ef375031ec2f: Preparing
031bd02bc4b2: Preparing
cc8b58f158a8: Preparing
9d086ec015fd: Preparing
aedb25b29a8e: Waiting
ef375031ec2f: Waiting
031bd02bc4b2: Waiting
cc8b58f158a8: Waiting
9393936e4b3b: Preparing
9d086ec015fd: Waiting
9393936e4b3b: Waiting
87f35d7c5a8e: Preparing
87f35d7c5a8e: Waiting
0e8a0aa48cac: Preparing
1aeedebae50c: Preparing
0e8a0aa48cac: Waiting
274427dfa305: Preparing
9d8be0a35a0c: Preparing
1aeedebae50c: Waiting
f1371275f012: Preparing
274427dfa305: Waiting
9d8be0a35a0c: Waiting
ab9f3fb52899: Preparing
ad33bfece658: Preparing
f1371275f012: Waiting
aae55d187588: Preparing
c37bd9adecb5: Preparing
ab9f3fb52899: Waiting
ad33bfece658: Waiting
aae55d187588: Waiting
c57a04fe2370: Preparing
c37bd9adecb5: Waiting
a138ba358460: Preparing
ba791cc03534: Preparing
c87fe388c828: Preparing
c57a04fe2370: Waiting
a138ba358460: Waiting
ba791cc03534: Waiting
c87fe388c828: Waiting
11ca6c4238d4: Pushed
b69ee3cca082: Pushed
b691b322448d: Pushed
979945b8d272: Pushed
ef333aeb9fb4: Pushed
c7b4a542c06f: Pushed
00411a318f0e: Pushed
2b0c0fabc9d3: Pushed
fb032f4c8e1d: Pushed
d3ff75bed9d7: Pushed
1e67ee8876e0: Pushed
80bb9b80caaa: Pushed
1bfdb83c8c15: Pushed
5e39ace55380: Pushed
e3b0a3072f84: Pushed
042558953f15: Pushed
470b75419637: Pushed
53a665253fc3: Pushed
0d52100df1ec: Layer already exists
5aed332ac3a5: Layer already exists
86217bf08d55: Layer already exists
ef794a720e10: Layer already exists
aedb25b29a8e: Layer already exists
ef375031ec2f: Layer already exists
031bd02bc4b2: Layer already exists
cc8b58f158a8: Layer already exists
9d086ec015fd: Layer already exists
9393936e4b3b: Layer already exists
87f35d7c5a8e: Layer already exists
0e8a0aa48cac: Layer already exists
1aeedebae50c: Layer already exists
274427dfa305: Layer already exists
9d8be0a35a0c: Layer already exists
f1371275f012: Layer already exists
ab9f3fb52899: Layer already exists
ad33bfece658: Layer already exists
aae55d187588: Layer already exists
c37bd9adecb5: Layer already exists
c57a04fe2370: Layer already exists
a138ba358460: Layer already exists
ba791cc03534: Layer already exists
c87fe388c828: Layer already exists
7658ac1788f1: Pushed
e68ec85b7504: Pushed
1cb899daab99: Pushed
391f3006f76e: Pushed
windows-server-mingw-ltsc2022-opam-amd64: digest: sha256:587c68bda66abc3eddb88c6a227ced1539e652937f1fcb7d674fd231c99acfb7 size: 10008
The push refers to repository [docker.io/ocurrent/opam-staging]
b69ee3cca082: Preparing
b691b322448d: Preparing
e68ec85b7504: Preparing
11ca6c4238d4: Preparing
391f3006f76e: Preparing
c7b4a542c06f: Preparing
979945b8d272: Preparing
ef333aeb9fb4: Preparing
00411a318f0e: Preparing
2b0c0fabc9d3: Preparing
d3ff75bed9d7: Preparing
fb032f4c8e1d: Preparing
1e67ee8876e0: Preparing
80bb9b80caaa: Preparing
5e39ace55380: Preparing
1bfdb83c8c15: Preparing
042558953f15: Preparing
e3b0a3072f84: Preparing
470b75419637: Preparing
53a665253fc3: Preparing
1cb899daab99: Preparing
7658ac1788f1: Preparing
0d52100df1ec: Preparing
5aed332ac3a5: Preparing
86217bf08d55: Preparing
ef794a720e10: Preparing
aedb25b29a8e: Preparing
ef375031ec2f: Preparing
031bd02bc4b2: Preparing
cc8b58f158a8: Preparing
9d086ec015fd: Preparing
9393936e4b3b: Preparing
87f35d7c5a8e: Preparing
0e8a0aa48cac: Preparing
1aeedebae50c: Preparing
274427dfa305: Preparing
9d8be0a35a0c: Preparing
f1371275f012: Preparing
ab9f3fb52899: Preparing
ad33bfece658: Preparing
aae55d187588: Preparing
c37bd9adecb5: Preparing
c57a04fe2370: Preparing
a138ba358460: Preparing
ba791cc03534: Preparing
c87fe388c828: Preparing
c7b4a542c06f: Waiting
979945b8d272: Waiting
ef333aeb9fb4: Waiting
00411a318f0e: Waiting
2b0c0fabc9d3: Waiting
d3ff75bed9d7: Waiting
fb032f4c8e1d: Waiting
1e67ee8876e0: Waiting
80bb9b80caaa: Waiting
5e39ace55380: Waiting
1bfdb83c8c15: Waiting
042558953f15: Waiting
e3b0a3072f84: Waiting
470b75419637: Waiting
53a665253fc3: Waiting
1cb899daab99: Waiting
7658ac1788f1: Waiting
0d52100df1ec: Waiting
5aed332ac3a5: Waiting
86217bf08d55: Waiting
ef794a720e10: Waiting
aedb25b29a8e: Waiting
ef375031ec2f: Waiting
031bd02bc4b2: Waiting
cc8b58f158a8: Waiting
9d086ec015fd: Waiting
9393936e4b3b: Waiting
87f35d7c5a8e: Waiting
0e8a0aa48cac: Waiting
1aeedebae50c: Waiting
274427dfa305: Waiting
9d8be0a35a0c: Waiting
f1371275f012: Waiting
ab9f3fb52899: Waiting
ad33bfece658: Waiting
aae55d187588: Waiting
c37bd9adecb5: Waiting
c57a04fe2370: Waiting
a138ba358460: Waiting
ba791cc03534: Waiting
c87fe388c828: Waiting
b69ee3cca082: Layer already exists
b691b322448d: Layer already exists
e68ec85b7504: Layer already exists
391f3006f76e: Layer already exists
11ca6c4238d4: Layer already exists
c7b4a542c06f: Layer already exists
ef333aeb9fb4: Layer already exists
979945b8d272: Layer already exists
00411a318f0e: Layer already exists
2b0c0fabc9d3: Layer already exists
1e67ee8876e0: Layer already exists
d3ff75bed9d7: Layer already exists
fb032f4c8e1d: Layer already exists
80bb9b80caaa: Layer already exists
5e39ace55380: Layer already exists
1bfdb83c8c15: Layer already exists
042558953f15: Layer already exists
e3b0a3072f84: Layer already exists
53a665253fc3: Layer already exists
470b75419637: Layer already exists
1cb899daab99: Layer already exists
7658ac1788f1: Layer already exists
0d52100df1ec: Layer already exists
5aed332ac3a5: Layer already exists
86217bf08d55: Layer already exists
ef794a720e10: Layer already exists
aedb25b29a8e: Layer already exists
ef375031ec2f: Layer already exists
031bd02bc4b2: Layer already exists
cc8b58f158a8: Layer already exists
9d086ec015fd: Layer already exists
9393936e4b3b: Layer already exists
87f35d7c5a8e: Layer already exists
1aeedebae50c: Layer already exists
0e8a0aa48cac: Layer already exists
274427dfa305: Layer already exists
9d8be0a35a0c: Layer already exists
f1371275f012: Layer already exists
ad33bfece658: Layer already exists
ab9f3fb52899: Layer already exists
aae55d187588: Layer already exists
c37bd9adecb5: Layer already exists
c57a04fe2370: Layer already exists
ba791cc03534: Layer already exists
a138ba358460: Layer already exists
c87fe388c828: Layer already exists
windows-server-mingw-ltsc2022-opam-amd64: digest: sha256:587c68bda66abc3eddb88c6a227ced1539e652937f1fcb7d674fd231c99acfb7 size: 10008
Job succeeded
2026-09-19 17:17.38: Job succeeded