ci: add CTEST_OUTPUT_ON_FAILURE=1 to jobs

This commit is contained in:
Mizux Seiha
2020-09-30 12:33:05 +02:00
parent e6ab664385
commit 2b42b7efab
8 changed files with 8 additions and 8 deletions

View File

@@ -21,6 +21,6 @@ jobs:
- name: Build
run: cmake --build build --config Release --target all -v
- name: Test
run: cmake --build build --config Release --target test -v
run: CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --config Release --target test -v
- name: Install
run: cmake --build build --config Release --target install -v -- DESTDIR=install