From 4a2398a518c2368d3e60a06c881556836ef62056 Mon Sep 17 00:00:00 2001 From: Marcel Cornu Date: Tue, 19 Nov 2024 15:50:01 +0000 Subject: [PATCH] add exit status to windows commands Signed-off-by: Marcel Cornu --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 182973ea..64d16820 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,10 +69,10 @@ jobs: uses: ilammy/setup-nasm@v1.2.0 - name: Build run: | - nmake -f Makefile.nmake - nmake checks -f Makefile.nmake - nmake perfs -f Makefile.nmake + nmake -f Makefile.nmake || exit /b 1 + nmake checks -f Makefile.nmake || exit /b 1 + nmake perfs -f Makefile.nmake || exit /b 1 - name: Run perf apps - run: nmake perf -f Makefile.nmake + run: nmake perf -f Makefile.nmake || exit /b 1 - name: Run checks - run: nmake check -f Makefile.nmake + run: nmake check -f Makefile.nmake || exit /b 1