Skip to content

Commit

Permalink
workflows: add validation to windows build
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 authored and pablodelara committed Nov 19, 2024
1 parent 07f8028 commit aaad73e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit aaad73e

Please sign in to comment.