Skip to content

Commit

Permalink
chore: Re-add unit.core.exe to appveyor and add parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Nov 27, 2022
1 parent 9944a0a commit a3be3eb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ build_script:
- mkdir build
- cd build
- cmake -G "Visual Studio 17 2022" -A x64 .. -DCMAKE_CXX_FLAGS="-DEVE_NO_FORCEINLINE"
- cmake --build . --target unit.arch.exe --config Debug
- cmake --build . --target unit.meta.exe --config Debug
- cmake --build . --target unit.internals.exe --config Debug
- cmake --build . --target unit.arch.exe --config Debug --parallel 2
- cmake --build . --target unit.meta.exe --config Debug --parallel 2
- cmake --build . --target unit.internals.exe --config Debug --parallel 2
- cmake --build . --target unit.core.exe --config Debug --parallel 2

test_script:
- ctest -C Debug --output-on-failure -R ^unit.arch.*.exe
- ctest -C Debug --output-on-failure -R ^unit.meta.*.exe
- ctest -C Debug --output-on-failure -R ^unit.internals.*.exe
- ctest -C Debug --output-on-failure -R ^unit.core.*.exe

0 comments on commit a3be3eb

Please sign in to comment.