workflows: add validation to windows build

Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
This commit is contained in:
Marcel Cornu 2024-11-19 14:43:40 +00:00 committed by Pablo de Lara
parent 07f8028743
commit aaad73e15d

View File

@ -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