From b22112733d76178fb0f2c008a90dfaab7a10ae4c Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Sat, 15 Feb 2025 16:37:49 +0100 Subject: [PATCH] Fail build_task.bat if main nmake failed Otherwise we may not notice Windows CI build failures. --- .github/scripts/windows/build_task.bat | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/windows/build_task.bat b/.github/scripts/windows/build_task.bat index cf2f748fb13d7..853f777124913 100644 --- a/.github/scripts/windows/build_task.bat +++ b/.github/scripts/windows/build_task.bat @@ -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