Skip to content

Commit aaad73e

Browse files
mdcornupablodelara
authored andcommitted
workflows: add validation to windows build
Signed-off-by: Marcel Cornu <[email protected]>
1 parent 07f8028 commit aaad73e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,11 @@ jobs:
6868
- name: Install nasm
6969
uses: ilammy/[email protected]
7070
- name: Build
71-
run: nmake -f Makefile.nmake
71+
run: |
72+
nmake -f Makefile.nmake || exit /b 1
73+
nmake checks -f Makefile.nmake || exit /b 1
74+
nmake perfs -f Makefile.nmake || exit /b 1
75+
- name: Run perf apps
76+
run: nmake perf -f Makefile.nmake || exit /b 1
77+
- name: Run checks
78+
run: nmake check -f Makefile.nmake || exit /b 1

0 commit comments

Comments
 (0)