Build:
- 0
2026-05-05 08:44.27: New job: Build using windows-1809-x86_64 in
[https://github.com/ocaml/opam-repository#master (76bd899e94da6c4b6bc6b7efa84d0737069db6f0)]
2026-05-05 08:44.27: Will push staging image to ocurrent/opam-staging:windows-msvc-ltsc2019-opam-amd64
Dockerfile:
# escape=`
# Autogenerated by OCaml-Dockerfile scripts
FROM mcr.microsoft.com/windows:10.0.17763.8644 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:10.0.17763.8644 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"
RUN C:\cygwin64\bin\peflags -d0 C:\cygwin64\bin\cygwin1.dll
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')"
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-05 08:44.27: Using cache hint "opam-windows-msvc-ltsc2019"
2026-05-05 08:44.27: Waiting for confirm-threshold > above-average
2026-05-05 08:46.27: Confirm-threshold now > above-average
2026-05-05 08:46.27: Waiting for resource in pool OCluster
2026-05-05 08:46.27: Waiting for worker…
2026-05-05 08:48.56: Got resource from pool OCluster
Building on ltsc2019-1
All commits already cached
HEAD is now at 76bd899e94 Merge pull request #29831 from RyanGibb/opam-publish-wol.1.0
------------------------------------------------------------------------------
Total Copied Skipped Mismatch FAILED Extras
Dirs : 56718 56718 0 0 0 0
Files : 60893 60893 0 0 0 0
Bytes : 236.57 m 236.57 m 0 0 0 0
Times : 0:03:04 0:01:52 0:00:00 0:01:11
Speed : 2195650 Bytes/sec.
Speed : 125.636 MegaBytes/min.
Ended : Tuesday, May 5, 2026 8:53:30 AM
Sending build context to Docker daemon 385.1MB
Step 1/72 : FROM mcr.microsoft.com/windows:10.0.17763.8644 AS winget-builder
10.0.17763.8644: Pulling from windows
Digest: sha256:b42a7e198621b0509df04d52340d74bb28a0ec8800bc4dbd2896256394090b6b
Status: Image is up to date for mcr.microsoft.com/windows:10.0.17763.8644
---> 7304c151e6ec
Step 2/72 : USER ContainerAdministrator
---> Using cache
---> d2982fbf8fac
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
---> a47559ca033d
Step 4/72 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force"
---> Using cache
---> c9a95da9f9d0
Step 5/72 : RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip
---> Using cache
---> d5f904b7ca4b
Step 6/72 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force"
---> Using cache
---> 04d5e263e516
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
---> 4f1edd438abc
Step 8/72 : FROM mcr.microsoft.com/windows:10.0.17763.8644 AS cygwin-msvc
10.0.17763.8644: Pulling from windows
Digest: sha256:b42a7e198621b0509df04d52340d74bb28a0ec8800bc4dbd2896256394090b6b
Status: Image is up to date for mcr.microsoft.com/windows:10.0.17763.8644
---> 7304c151e6ec
Step 9/72 : USER ContainerAdministrator
---> Using cache
---> d2982fbf8fac
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
---> 79de5700c07f
Step 11/72 : ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ]
---> Using cache
---> 32e6779bdd26
Step 12/72 : ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ]
---> Using cache
---> 5ebe0710f720
Step 13/72 : ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ]
---> Using cache
---> db822f168922
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
---> Using cache
---> 027504e22f82
Step 15/72 : ENV CYGWIN="nodosfilewarning winsymlinks:native"
---> Using cache
---> 4ce38f42bde5
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"
---> Using cache
---> 828f2e6d0320
Step 17/72 : ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ]
---> Using cache
---> 95b6314e8846
Step 18/72 : RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall
---> Using cache
---> 1b5ea8f6de98
Step 19/72 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ]
---> Using cache
---> 3e1426b19023
Step 20/72 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ]
---> Using cache
---> b499679b9f43
Step 21/72 : RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy
---> Using cache
---> f8a6cd2cbc00
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"
---> Using cache
---> 51ac12a49196
Step 23/72 : RUN C:\cygwin64\bin\peflags -d0 C:\cygwin64\bin\cygwin1.dll
---> Using cache
---> 7ebac37f2c06
Step 24/72 : ADD [ "https://github.com/metastack/msvs-tools/archive/refs/heads/master.tar.gz", "C:\\TEMP\\msvs-tools.tar.gz" ]
---> Using cache
---> 8e639010c416
Step 25/72 : 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/*"
---> Using cache
---> a527afc94088
Step 26/72 : RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab
---> Using cache
---> 866ae15fb0de
Step 27/72 : FROM cygwin-msvc AS opam-builder
---> 866ae15fb0de
Step 28/72 : ENV HOME="C:\cygwin64\home\opam"
---> Using cache
---> a6f723080bec
Step 29/72 : 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"
---> Using cache
---> 64191468ed4a
Step 30/72 : 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"
---> Using cache
---> f0dd038f876d
Step 31/72 : 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
---> d09386b6f126
Step 32/72 : 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"
---> Using cache
---> 70888ec5e851
Step 33/72 : 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
---> 97af855cdbf9
Step 34/72 : 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"
---> Using cache
---> 9f4b8cdcb68b
Step 35/72 : 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
---> 0123e18f9c7d
Step 36/72 : 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"
---> Using cache
---> fece31010b2e
Step 37/72 : 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"
---> Running in cae48f2566dc
tzset: can't find matching POSIX timezone for Windows timezone ""
Cloning into '/tmp/opam-build-2.5'...
done.
Note: switching to '6218d0c4c022106034a93c8ecb5b80fa213d7356'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
Updating files: 27% (150/538)
Updating files: 28% (151/538)
Updating files: 29% (157/538)
Updating files: 30% (162/538)
Updating files: 31% (167/538)
Updating files: 32% (173/538)
Updating files: 33% (178/538)
Updating files: 34% (183/538)
Updating files: 35% (189/538)
Updating files: 36% (194/538)
Updating files: 37% (200/538)
Updating files: 38% (205/538)
Updating files: 39% (210/538)
Updating files: 40% (216/538)
Updating files: 41% (221/538)
Updating files: 42% (226/538)
Updating files: 43% (232/538)
Updating files: 44% (237/538)
Updating files: 45% (243/538)
Updating files: 46% (248/538)
Updating files: 47% (253/538)
Updating files: 48% (259/538)
Updating files: 49% (264/538)
Updating files: 50% (269/538)
Updating files: 51% (275/538)
Updating files: 52% (280/538)
Updating files: 53% (286/538)
Updating files: 54% (291/538)
Updating files: 55% (296/538)
Updating files: 56% (302/538)
Updating files: 57% (307/538)
Updating files: 58% (313/538)
Updating files: 59% (318/538)
Updating files: 60% (323/538)
Updating files: 61% (329/538)
Updating files: 62% (334/538)
Updating files: 63% (339/538)
Updating files: 64% (345/538)
Updating files: 65% (350/538)
Updating files: 66% (356/538)
Updating files: 67% (361/538)
Updating files: 68% (366/538)
Updating files: 69% (372/538)
Updating files: 70% (377/538)
Updating files: 71% (382/538)
Updating files: 72% (388/538)
Updating files: 73% (393/538)
Updating files: 74% (399/538)
Updating files: 75% (404/538)
Updating files: 76% (409/538)
Updating files: 76% (410/538)
Updating files: 77% (415/538)
Updating files: 78% (420/538)
Updating files: 79% (426/538)
Updating files: 80% (431/538)
Updating files: 81% (436/538)
Updating files: 82% (442/538)
Updating files: 83% (447/538)
Updating files: 84% (452/538)
Updating files: 85% (458/538)
Updating files: 86% (463/538)
Updating files: 87% (469/538)
Updating files: 88% (474/538)
Updating files: 89% (479/538)
Updating files: 90% (485/538)
Updating files: 91% (490/538)
Updating files: 92% (495/538)
Updating files: 93% (501/538)
Updating files: 94% (506/538)
Updating files: 95% (512/538)
Updating files: 96% (517/538)
Updating files: 97% (522/538)
Updating files: 98% (528/538)
Updating files: 99% (533/538)
Updating files: 100% (538/538)
Updating files: 100% (538/538), done.
HEAD is now at 6218d0c4c Merge pull request #6899 from kit-ty-kate/rel-2.5.1
---> Removed intermediate container cae48f2566dc
---> ad0a3514734a
Step 38/72 : 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"
---> Running in 685cb5e02b7b
tzset: can't find matching POSIX timezone for Windows timezone ""
checking for ocamlc... ocamlc
OCaml version is 4.14.2
OCaml library path is C:/cygwin64/tmp/opam/bootstrap/ocaml/lib/ocaml
checking for ocamlopt... ocamlopt
checking for ocamlc.opt... ocamlc.opt
checking for ocamlopt.opt... ocamlopt.opt
checking for ocaml... ocaml
checking for ocamldep... ocamldep
checking for ocamldep.opt... ocamldep.opt
checking for ocamlmktop... ocamlmktop
checking for ocamlmklib... ocamlmklib
checking for ocamldoc... ocamldoc
checking for ocamldoc.opt... ocamldoc.opt
checking for ocamlbuild... no
checking OCaml Sys.os_type... Win32
checking for gawk... gawk
checking for compiler type... msvc
checking for compiler architecture... amd64
checking for compiler system... win64
checking for compiler target... x86_64-pc-windows
checking for an installed Microsoft C Compiler for x64... from Visual Studio Build Tools 2022
checking for cl... cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE
checking whether the C compiler works... yes
checking for C compiler default output file name... conftest.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... obj
checking whether the compiler supports GNU C... no
checking whether cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE accepts -g... no
checking for cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE option to enable C11 features... unsupported
checking for cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE option to enable C99 features... unsupported
checking for cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE option to enable C89 features... unsupported
checking whether Microsoft Linker needs a PATH shim... no
checking for a way to invoke an x86 C compiler... from Visual Studio Build Tools 2022
checking for ocamlobjinfo... ocamlobjinfo
checking for ocamlfind... no
checking for curl... curl
checking for dune... no
checking for patch... patch
checking for bunzip2... bunzip2
checking for a workable solution for ln -s... ln -s
checking for linking method... shared
checking for OCaml findlib package unix... not found
checking for OCaml findlib package re 1.9.0 or later... no
checking for OCaml findlib package base64 3.1.0 or later... no
checking for OCaml findlib package ocamlgraph... not found
checking for OCaml findlib package cudf 0.7 or later... no
checking for OCaml findlib package dose3.common 6.1 or later... no
checking for OCaml findlib package dose3.algo 6.1 or later... no
checking for OCaml findlib package opam-file-format 2.1.4 or later... no
checking for OCaml findlib package spdx_licenses... not found
checking for OCaml findlib package opam-0install-cudf 0.5.0 or later... no
checking for OCaml findlib package jsonm... not found
checking for OCaml findlib package uutf... not found
checking for OCaml findlib package sha... not found
checking for OCaml findlib package swhid_core... not found
checking for OCaml findlib package patch... not found
checking for OCaml findlib package mccs 1.1+17 or later... no
configure: creating ./config.status
config.status: creating Makefile.config
config.status: creating src/ocaml-flags-configure.sexp
config.status: creating src/core/c-flags.sexp
Opam will be built WITH its default built-in solver
Executables will be installed in /usr/local/bin
Manual pages will be installed in /usr/local/share/man
Downloading vendored source dependencies...
* Downloading dune-local...
* Downloading cppo...
* Downloading base64...
* Downloading extlib...
* Downloading re...
* Downloading ocamlgraph...
* Downloading cudf...
* Downloading dose3...
* Downloading opam-file-format...
* Downloading stdlib-shims...
* Downloading spdx_licenses...
* Downloading opam-0install-cudf...
* Downloading 0install-solver...
* Downloading uutf...
* Downloading jsonm...
* Downloading sha...
* Downloading swhid_core...
* Downloading menhir...
* Downloading patch...
* Downloading mccs...
done
Extracting vendored source dependencies in src_ext/... done
cd src_ext/dune-local && ocaml boot/bootstrap.ml
ocamlc -output-complete-exe -g -o .duneboot.exe -I boot unix.cma boot/libs.ml boot/duneboot.ml
.\.duneboot.exe
/tmp/opam-build-2.5/src_ext/dune-local/_boot/dune.exe build --profile=release --root . --promote-install-files -- opam-installer.install opam.install
header_check.h
opam-putenv.c
sha1_stubs.c
sha256_stubs.c
opam_stubs.c
sha512_stubs.c
Creating menhirLib.ml...
Creating menhirLib.mli...
changed_criteria.cpp
count_criteria.cpp
constraint_generation.cpp
cudf_reductions.cpp
cudf_tools.cpp
glpk_solver.cpp
lexagregate_combiner.cpp
lp_solver.cpp
mccs_stubs.cpp
mccscudf.cpp
new_criteria.cpp
notuptodate_criteria.cpp
advbas.c
alloc.c
avl.c
bfd.c
removed_criteria.cpp
btf.c
btfint.c
cfg.c
cfg2.c
cfg1.c
clqcut.c
covgen.c
C:\cygwin64\tmp\opam-build-2.5\_build\default\src_ext\mccs\src\glpk\src_ext\mccs\src\glpk\intopt\covgen.c(155) : warning C4700: uninitialized local variable 'type' used
cpxbas.c
dmp.c
env.c
dlsup.c
error.c
fhvint.c
fhv.c
fpump.c
fvs.c
gcd.c
glpapi06.c
glpapi10.c
glpapi09.c
glpapi12.c
glpapi13.c
glpios02.c
glpios01.c
C:\cygwin64\tmp\opam-build-2.5\_build\default\src_ext\mccs\src\glpk\src_ext\mccs\src\glpk\draft\glpios01.c(1494) : warning C4716: '_glp_ios_find_row': must return a value
glpios07.c
glpios03.c
glpios09.c
glpios11.c
glpios12.c
glpscl.c
gmicut.c
gmigen.c
jd.c
ifu.c
ks.c
luf.c
lufint.c
mc13d.c
mc21a.c
mt1.c
mirgen.c
npp1.c
npp2.c
npp3.c
npp4.c
npp5.c
prob1.c
prob2.c
prob4.c
prob5.c
proxy1.c
proxy.c
rng.c
rng1.c
round2n.c
scf.c
scfint.c
spv.c
sgf.c
spxat.c
spxchuzc.c
spxchuzr.c
spxlp.c
spxnt.c
spxprob.c
spxprim.c
spychuzc.c
spychuzr.c
stdc.c
stdout.c
spydual.c
sva.c
time.c
tls.c
triang.c
wclique.c
wclique1.c
File "src/core/opamWin32Stubs.ml", line 1:
Warning 70 [missing-mli]: Cannot find interface file.
Read 99 sample input sentences and 99 error messages.
Read 99 sample input sentences and 47 error messages.
Grammar has 56 nonterminal symbols, among which 1 start symbols.
Grammar has 37 terminal symbols.
Grammar has 129 productions.
Built an LR(0) automaton with 199 states.
The grammar is not SLR(1) -- 7 states have a conflict.
The construction mode is no-pager.
Built an LR(1) automaton with 308 states.
One shift/reduce conflict was silently solved.
Extra reductions on error were added in 50 states.
Priority played a role in 0 of these states.
156 out of 308 states have a default reduction.
108 out of 308 states are represented.
44 out of 96 symbols keep track of their start position.
39 out of 96 symbols keep track of their end position.
The StackLang code contains 4113 instructions in 277 blocks.
The StackLang code comprises 5 mutually recursive groups.
Read 99 sample input sentences and 47 error messages.
sed -f process.sed opam.install > processed-opam.install
/tmp/opam-build-2.5/src_ext/dune-local/_boot/dune.exe build --profile=release --root . --promote-install-files -- opam-installer.install
sed -f process.sed opam-installer.install > processed-opam-installer.install
./opam-installer.exe --prefix "C:\cygwin64\usr\local" --mandir "C:\cygwin64\usr\local\share\man" processed-opam.install
_build\install\default\bin\opam-putenv.exe => C:\cygwin64\usr\local\bin\opam-putenv.exe
_build\install\default\bin\opam.exe => C:\cygwin64\usr\local\bin\opam.exe
_build\install\default\man\man1\opam-admin-add-constraint.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-add-constraint.1
_build\install\default\man\man1\opam-admin-add-hashes.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-add-hashes.1
_build\install\default\man\man1\opam-admin-cache.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-cache.1
_build\install\default\man\man1\opam-admin-check.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-check.1
_build\install\default\man\man1\opam-admin-compare-versions.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-compare-versions.1
_build\install\default\man\man1\opam-admin-filter.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-filter.1
_build\install\default\man\man1\opam-admin-help.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-help.1
_build\install\default\man\man1\opam-admin-index.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-index.1
_build\install\default\man\man1\opam-admin-lint.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-lint.1
_build\install\default\man\man1\opam-admin-list.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-list.1
_build\install\default\man\man1\opam-admin-make.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-make.1
_build\install\default\man\man1\opam-admin-migrate-extrafiles.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-migrate-extrafiles.1
_build\install\default\man\man1\opam-admin-update-extrafiles.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-update-extrafiles.1
_build\install\default\man\man1\opam-admin-upgrade.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin-upgrade.1
_build\install\default\man\man1\opam-admin.1 => C:\cygwin64\usr\local\share\man\man1\opam-admin.1
_build\install\default\man\man1\opam-clean.1 => C:\cygwin64\usr\local\share\man\man1\opam-clean.1
_build\install\default\man\man1\opam-config.1 => C:\cygwin64\usr\local\share\man\man1\opam-config.1
_build\install\default\man\man1\opam-env.1 => C:\cygwin64\usr\local\share\man\man1\opam-env.1
_build\install\default\man\man1\opam-exec.1 => C:\cygwin64\usr\local\share\man\man1\opam-exec.1
_build\install\default\man\man1\opam-help.1 => C:\cygwin64\usr\local\share\man\man1\opam-help.1
_build\install\default\man\man1\opam-info.1 => C:\cygwin64\usr\local\share\man\man1\opam-info.1
_build\install\default\man\man1\opam-init.1 => C:\cygwin64\usr\local\share\man\man1\opam-init.1
_build\install\default\man\man1\opam-install.1 => C:\cygwin64\usr\local\share\man\man1\opam-install.1
_build\install\default\man\man1\opam-lint.1 => C:\cygwin64\usr\local\share\man\man1\opam-lint.1
_build\install\default\man\man1\opam-list.1 => C:\cygwin64\usr\local\share\man\man1\opam-list.1
_build\install\default\man\man1\opam-lock.1 => C:\cygwin64\usr\local\share\man\man1\opam-lock.1
_build\install\default\man\man1\opam-option.1 => C:\cygwin64\usr\local\share\man\man1\opam-option.1
_build\install\default\man\man1\opam-pin.1 => C:\cygwin64\usr\local\share\man\man1\opam-pin.1
_build\install\default\man\man1\opam-reinstall.1 => C:\cygwin64\usr\local\share\man\man1\opam-reinstall.1
_build\install\default\man\man1\opam-remote.1 => C:\cygwin64\usr\local\share\man\man1\opam-remote.1
_build\install\default\man\man1\opam-remove.1 => C:\cygwin64\usr\local\share\man\man1\opam-remove.1
_build\install\default\man\man1\opam-repository.1 => C:\cygwin64\usr\local\share\man\man1\opam-repository.1
_build\install\default\man\man1\opam-search.1 => C:\cygwin64\usr\local\share\man\man1\opam-search.1
_build\install\default\man\man1\opam-show.1 => C:\cygwin64\usr\local\share\man\man1\opam-show.1
_build\install\default\man\man1\opam-source.1 => C:\cygwin64\usr\local\share\man\man1\opam-source.1
_build\install\default\man\man1\opam-switch.1 => C:\cygwin64\usr\local\share\man\man1\opam-switch.1
_build\install\default\man\man1\opam-tree.1 => C:\cygwin64\usr\local\share\man\man1\opam-tree.1
_build\install\default\man\man1\opam-uninstall.1 => C:\cygwin64\usr\local\share\man\man1\opam-uninstall.1
_build\install\default\man\man1\opam-unpin.1 => C:\cygwin64\usr\local\share\man\man1\opam-unpin.1
_build\install\default\man\man1\opam-update.1 => C:\cygwin64\usr\local\share\man\man1\opam-update.1
_build\install\default\man\man1\opam-upgrade.1 => C:\cygwin64\usr\local\share\man\man1\opam-upgrade.1
_build\install\default\man\man1\opam-var.1 => C:\cygwin64\usr\local\share\man\man1\opam-var.1
_build\install\default\man\man1\opam-why.1 => C:\cygwin64\usr\local\share\man\man1\opam-why.1
_build\install\default\man\man1\opam.1 => C:\cygwin64\usr\local\share\man\man1\opam.1
./opam-installer.exe --prefix "C:\cygwin64\usr\local" --mandir "C:\cygwin64\usr\local\share\man" processed-opam-installer.install
_build\install\default\bin\opam-installer.exe => C:\cygwin64\usr\local\bin\opam-installer.exe
_build\install\default\man\man1\opam-installer.1 => C:\cygwin64\usr\local\share\man\man1\opam-installer.1
---> Removed intermediate container 685cb5e02b7b
---> 5b2c6da93991
Step 39/72 : 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"
---> Running in 43df4c622382
tzset: can't find matching POSIX timezone for Windows timezone ""
Cloning into '/tmp/opam-build-master'...
done.
Note: switching to '6218d0c4c022106034a93c8ecb5b80fa213d7356'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
Updating files: 95% (515/538)
Updating files: 96% (517/538)
Updating files: 97% (522/538)
Updating files: 98% (528/538)
Updating files: 99% (533/538)
Updating files: 100% (538/538)
Updating files: 100% (538/538), done.
HEAD is now at 6218d0c4c Merge pull request #6899 from kit-ty-kate/rel-2.5.1
---> Removed intermediate container 43df4c622382
---> 7cdf58b96740
Step 40/72 : 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"
---> Running in 0d7ed16dfa69
tzset: can't find matching POSIX timezone for Windows timezone ""
checking for ocamlc... ocamlc
OCaml version is 4.14.2
OCaml library path is C:/cygwin64/tmp/opam/bootstrap/ocaml/lib/ocaml
checking for ocamlopt... ocamlopt
checking for ocamlc.opt... ocamlc.opt
checking for ocamlopt.opt... ocamlopt.opt
checking for ocaml... ocaml
checking for ocamldep... ocamldep
checking for ocamldep.opt... ocamldep.opt
checking for ocamlmktop... ocamlmktop
checking for ocamlmklib... ocamlmklib
checking for ocamldoc... ocamldoc
checking for ocamldoc.opt... ocamldoc.opt
checking for ocamlbuild... no
checking OCaml Sys.os_type... Win32
checking for gawk... gawk
checking for compiler type... msvc
checking for compiler architecture... amd64
checking for compiler system... win64
checking for compiler target... x86_64-pc-windows
checking for an installed Microsoft C Compiler for x64... from Visual Studio Build Tools 2022
checking for cl... cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE
checking whether the C compiler works... yes
checking for C compiler default output file name... conftest.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... obj
checking whether the compiler supports GNU C... no
checking whether cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE accepts -g... no
checking for cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE option to enable C11 features... unsupported
checking for cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE option to enable C99 features... unsupported
checking for cl -nologo -O2 -Gy- -MD -D_CRT_SECURE_NO_DEPRECATE option to enable C89 features... unsupported
checking whether Microsoft Linker needs a PATH shim... no
checking for a way to invoke an x86 C compiler... from Visual Studio Build Tools 2022
checking for ocamlobjinfo... ocamlobjinfo
checking for ocamlfind... no
checking for curl... curl
checking for dune... no
checking for patch... patch
checking for bunzip2... bunzip2
checking for a workable solution for ln -s... ln -s
checking for linking method... shared
checking for OCaml findlib package unix... not found
checking for OCaml findlib package re 1.9.0 or later... no
checking for OCaml findlib package base64 3.1.0 or later... no
checking for OCaml findlib package ocamlgraph... not found
checking for OCaml findlib package cudf 0.7 or later... no
checking for OCaml findlib package dose3.common 6.1 or later... no
checking for OCaml findlib package dose3.algo 6.1 or later... no
checking for OCaml findlib package opam-file-format 2.1.4 or later... no
checking for OCaml findlib package spdx_licenses... not found
checking for OCaml findlib package opam-0install-cudf 0.5.0 or later... no
checking for OCaml findlib package jsonm... not found
checking for OCaml findlib package uutf... not found
checking for OCaml findlib package sha... not found
checking for OCaml findlib package swhid_core... not found
checking for OCaml findlib package patch... not found
checking for OCaml findlib package mccs 1.1+17 or later... no
configure: creating ./config.status
config.status: creating Makefile.config
config.status: creating src/ocaml-flags-configure.sexp
config.status: creating src/core/c-flags.sexp
Opam will be built WITH its default built-in solver
Executables will be installed in /usr/local/bin
Manual pages will be installed in /usr/local/share/man
Downloading vendored source dependencies...
* Downloading dune-local...
* Downloading cppo...
* Downloading base64...
* Downloading extlib...
* Downloading re...
* Downloading ocamlgraph...
* Downloading cudf...
* Downloading dose3...
* Downloading opam-file-format...
* Downloading stdlib-shims...
* Downloading spdx_licenses...
* Downloading opam-0install-cudf...
* Downloading 0install-solver...
* Downloading uutf...
* Downloading jsonm...
* Downloading sha...
* Downloading swhid_core...
* Downloading menhir...
* Downloading patch...
* Downloading mccs...
done
Extracting vendored source dependencies in src_ext/... done
cd src_ext/dune-local && ocaml boot/bootstrap.ml
ocamlc -output-complete-exe -g -o .duneboot.exe -I boot unix.cma boot/libs.ml boot/duneboot.ml
.\.duneboot.exe
/tmp/opam-build-master/src_ext/dune-local/_boot/dune.exe build --profile=release --root . --promote-install-files -- opam-installer.install opam.install
header_check.h
opam-putenv.c
sha1_stubs.c
sha256_stubs.c
opam_stubs.c
sha512_stubs.c
Creating menhirLib.ml...
Creating menhirLib.mli...
changed_criteria.cpp
constraint_generation.cpp
count_criteria.cpp
cudf_tools.cpp
cudf_reductions.cpp
glpk_solver.cpp
lexagregate_combiner.cpp
lp_solver.cpp
mccs_stubs.cpp
mccscudf.cpp
new_criteria.cpp
notuptodate_criteria.cpp
advbas.c
alloc.c
removed_criteria.cpp
avl.c
bfd.c
btf.c
btfint.c
cfg.c
cfg2.c
cfg1.c
clqcut.c
covgen.c
C:\cygwin64\tmp\opam-build-master\_build\default\src_ext\mccs\src\glpk\src_ext\mccs\src\glpk\intopt\covgen.c(155) : warning C4700: uninitialized local variable 'type' used
cpxbas.c
dmp.c
dlsup.c
env.c
error.c
fhvint.c
fhv.c
fvs.c
gcd.c
fpump.c
glpapi06.c
glpapi09.c
glpapi10.c
glpapi12.c
glpapi13.c
glpios01.c
C:\cygwin64\tmp\opam-build-master\_build\default\src_ext\mccs\src\glpk\src_ext\mccs\src\glpk\draft\glpios01.c(1494) : warning C4716: '_glp_ios_find_row': must return a value
glpios02.c
glpios03.c
glpios07.c
glpios09.c
glpios12.c
glpios11.c
glpscl.c
gmicut.c
gmigen.c
ifu.c
jd.c
ks.c
luf.c
lufint.c
mc13d.c
mc21a.c
mt1.c
mirgen.c
npp1.c
npp2.c
npp3.c
npp4.c
npp5.c
prob2.c
prob1.c
prob5.c
prob4.c
proxy1.c
proxy.c
rng.c
rng1.c
round2n.c
scf.c
scfint.c
spv.c
sgf.c
spxat.c
spxchuzc.c
spxchuzr.c
spxnt.c
spxlp.c
spxprim.c
spxprob.c
spychuzr.c
spychuzc.c
stdc.c
stdout.c
spydual.c
sva.c
time.c
tls.c
triang.c
wclique.c
wclique1.c
File "src/core/opamWin32Stubs.ml", line 1:
Warning 70 [missing-mli]: Cannot find interface file.
2026-05-05 09:18.06: Job failed: Disconnected: Switch turned off