summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMartijn van Beurden <mvanb1@gmail.com>2022-02-21 15:36:33 +0100
committerMartijn van Beurden <mvanb1@gmail.com>2022-04-13 17:37:50 +0200
commitf7e77f627ae7c75c75e9a971cfc403c5e6a699ec (patch)
treea689347a03b57a126ce272c345dc99e584265f33 /.github
parent31bcbb8662cf95726769d2c747e584cbe5d96cbe (diff)
downloadflac-f7e77f627ae7c75c75e9a971cfc403c5e6a699ec.tar.gz
Build as Release to speed up testing and mute debug output
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/action.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml
index b1b45e14..9b79ecf1 100644
--- a/.github/workflows/action.yml
+++ b/.github/workflows/action.yml
@@ -170,7 +170,7 @@ jobs:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
working-directory: cmake-build
- run: cmake --build .
+ run: cmake --build . --config Release
- name: CMake test
if: startsWith(matrix.build-system,'cmake')
@@ -178,7 +178,7 @@ jobs:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
working-directory: cmake-build
- run: ctest -V -C Debug
+ run: ctest -V -C Release
- name: Upload logs on failure
uses: actions/upload-artifact@v2