diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-10 08:42:24 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-10 08:42:24 -0400 |
commit | a755754ee15b91434a0f362bcfcccb3ee885c538 (patch) | |
tree | 4ac85cfc3fb66969abd435b589e9a08bfa23875a | |
parent | 56d9eb58491d1c86ff8b27b51ceb2b59c3d7f975 (diff) | |
download | stasis-a755754ee15b91434a0f362bcfcccb3ee885c538.tar.gz |
Workaround for ctest junit xml truncation
-rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index ac9130d..1dded94 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -55,4 +55,4 @@ jobs: - name: Test working-directory: ${{ steps.strings.outputs.build-output-dir }} - run: ctest -V --build-config ${{ matrix.build_type }} + run: ctest -V --build-config ${{ matrix.build_type }} --output-junit results.xml --test-output-size-passed 65536 --test-output-size-failed 65536 |