ci: Add CTEST_OUTPUT_ON_FAILURE=1 variable env

This commit is contained in:
Corentin Le Molgat
2024-09-04 14:17:12 +02:00
committed by Mizux Seiha
parent 1b64d0b84d
commit 8d2439edb6
4 changed files with 8 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ jobs:
fail-fast: false
name: Windows • ${{ matrix.cmake.generator }} (${{ matrix.cmake.config }}) • C++
runs-on: windows-latest
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v4
- name: Check cmake

View File

@@ -14,6 +14,8 @@ jobs:
fail-fast: false
name: Windows • ${{ matrix.cmake.generator }} • .Net
runs-on: windows-latest
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v4
- name: Setup .NET 6.0

View File

@@ -30,6 +30,8 @@ jobs:
fail-fast: false
name: Windows • ${{ matrix.cmake.generator }} • ${{ matrix.java.distrib }}-${{ matrix.java.version }}
runs-on: windows-latest
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4

View File

@@ -20,6 +20,8 @@ jobs:
fail-fast: false
name: Windows • ${{ matrix.cmake.generator }} • Python-${{ matrix.python.version }}
runs-on: windows-latest
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4