summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-11-24 13:26:52 +0100
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-11-24 13:26:52 +0100
commita865b42e1f063edd4c2c7a3ba83c74d61c7e3e14 (patch)
treef130f4ec2896dc68f2ca0a80b58b9833a7c6d204 /.github
parente4f7a2c27b8fdd640d933021587e006191f19e8a (diff)
GitHub Actions: Reorder cmake flags in build workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a976ab0d7a..3def0953bf 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -176,17 +176,18 @@ jobs:
run: >-
cmake
-G "${{ matrix.cmake_generator }}"
- -DBATTERY=ON -DBROADCAST=ON
- -DBULK=ON
-DCMAKE_BUILD_TYPE=Release
"-DCMAKE_PREFIX_PATH=${{ env.CMAKE_PREFIX_PATH }}"
-DDEBUG_ASSERTIONS_FATAL=ON
+ -DQt5_DIR=${{ env.QT_PATH }} ${{ matrix.cmake_args }} ${{ steps.apple_codesign.outputs.cmake_args }}
+ -DBATTERY=ON
+ -DBROADCAST=ON
+ -DBULK=ON
-DHID=ON
-DLILV=ON
-DOPUS=ON
-DQTKEYCHAIN=ON
-DVINYLCONTROL=ON
- -DQt5_DIR=${{ env.QT_PATH }} ${{ matrix.cmake_args }} ${{ steps.apple_codesign.outputs.cmake_args }}
..
working-directory: cmake_build
env: