Skip to content

Commit

Permalink
add exit status checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcornu authored Nov 19, 2024
1 parent 2e01ac5 commit 932eddb
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 932eddb

Please sign in to comment.