From aaad73e15d1ae66e196a3a54c83fe61f8df50d4a Mon Sep 17 00:00:00 2001 From: Marcel Cornu Date: Tue, 19 Nov 2024 14:43:40 +0000 Subject: [PATCH] workflows: add validation to windows build Signed-off-by: Marcel Cornu --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93f5c8e..64d1682 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,4 +68,11 @@ jobs: - name: Install nasm uses: ilammy/setup-nasm@v1.2.0 - name: Build - run: nmake -f Makefile.nmake + run: | + 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 || exit /b 1 + - name: Run checks + run: nmake check -f Makefile.nmake || exit /b 1