Skip to content

Commit

Permalink
verbose ctest & install
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Jan 4, 2021
1 parent 483c27f commit cc946d5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
-DCMAKE_BUILD_TYPE=Debug `
-DCMAKE_VERBOSE_MAKEFILE=ON
cmake --build . --config Debug --parallel 2
ctest --output-on-failure --build-config Debug
cmake --build . --config Debug --target install
ctest -V --output-on-failure --build-config Debug
build_win_clang:
name: Clang w/o MPI
Expand Down Expand Up @@ -50,5 +51,7 @@ jobs:
if errorlevel 1 exit 1
cmake --build . --config Release --parallel 2
if errorlevel 1 exit 1
ctest --output-on-failure --build-config Release
cmake --build . --config Release --target install
if errorlevel 1 exit 1
ctest -V --output-on-failure --build-config Release
if errorlevel 1 exit 1

0 comments on commit cc946d5

Please sign in to comment.