Skip to content

Commit 55ac9f0

Browse files
authored
Set CTest output on failure (#189)
1 parent d425266 commit 55ac9f0

File tree

6 files changed

+11
-0
lines changed

6 files changed

+11
-0
lines changed

.github/workflows/aarch64_linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
fail-fast: false
2121
env:
2222
TARGET: ${{ matrix.targets[0] }}
23+
CTEST_OUTPUT_ON_FAILURE: 1
2324
steps:
2425
- uses: actions/checkout@v2
2526
- name: Install Ninja

.github/workflows/arm_linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
fail-fast: false
2424
env:
2525
TARGET: ${{ matrix.targets[0] }}
26+
CTEST_OUTPUT_ON_FAILURE: 1
2627
steps:
2728
- uses: actions/checkout@v2
2829
- name: Install Ninja

.github/workflows/mips_linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
fail-fast: false
2323
env:
2424
TARGET: ${{ matrix.targets[0] }}
25+
CTEST_OUTPUT_ON_FAILURE: 1
2526
steps:
2627
- uses: actions/checkout@v2
2728
- name: Install Ninja

.github/workflows/windows_x86_64.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
# Building using the github runner environement directly.
1212
msvc:
1313
runs-on: windows-latest
14+
env:
15+
CTEST_OUTPUT_ON_FAILURE: 1
1416
steps:
1517
- uses: actions/checkout@v2
1618
- name: Configure

.github/workflows/x86_darwin.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
# Building using the github runner environement directly.
1212
xcode:
1313
runs-on: macos-latest
14+
env:
15+
CTEST_OUTPUT_ON_FAILURE: 1
1416
steps:
1517
- uses: actions/checkout@v2
1618
- name: Check cmake
@@ -25,6 +27,8 @@ jobs:
2527
run: cmake --build build --config Release --target install -v
2628
make:
2729
runs-on: macos-latest
30+
env:
31+
CTEST_OUTPUT_ON_FAILURE: 1
2832
steps:
2933
- uses: actions/checkout@v2
3034
- name: Check cmake

.github/workflows/x86_linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
# Building using the github runner environement directly.
1212
make:
1313
runs-on: ubuntu-latest
14+
env:
15+
CTEST_OUTPUT_ON_FAILURE: 1
1416
steps:
1517
- uses: actions/checkout@v2
1618
- name: Check cmake

0 commit comments

Comments
 (0)