aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/cmake.yml')
-rw-r--r--.github/workflows/cmake.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 5113952..9100c67 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -61,3 +61,13 @@ jobs:
61 - name: Run test cases 61 - name: Run test cases
62 run: ctest -C Release --output-on-failure --max-width 120 62 run: ctest -C Release --output-on-failure --max-width 120
63 working-directory: ${{ matrix.build-dir || '.' }} 63 working-directory: ${{ matrix.build-dir || '.' }}
64
65 - name: Upload build errors
66 uses: actions/upload-artifact@v3
67 if: failure()
68 with:
69 name: ${{ matrix.name }} (cmake)
70 path: |
71 **/CMakeFiles/CMakeOutput.log
72 **/CMakeFiles/CMakeError.log
73 retention-days: 7