Skip to content

Commit

Permalink
Fail build_task.bat if main nmake failed (GH-17820)
Browse files Browse the repository at this point in the history
Otherwise we may not notice Windows CI build failures.

Fixes GH-17818.
  • Loading branch information
cmb69 authored Feb 15, 2025
1 parent 5cce35c commit ed9c283
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/scripts/windows/build_task.bat
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ cmd /c configure.bat ^
if %errorlevel% neq 0 exit /b 3

nmake /NOLOGO
if %errorlevel% neq 0 exit /b 3
nmake /NOLOGO comtest.dll
if %errorlevel% neq 0 exit /b 3

Expand Down

0 comments on commit ed9c283

Please sign in to comment.