Skip to content

Commit

Permalink
add exit status to windows commands
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
  • Loading branch information
mdcornu committed Nov 19, 2024
1 parent 2e01ac5 commit 4a2398a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4a2398a

Please sign in to comment.