Skip to content

Commit

Permalink
Try to fix multiline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 24, 2024
1 parent 375f6a1 commit 8ab51b6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,18 @@ jobs:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_UPGRADE: 1
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
- name: Configure
- name: Preconfigure
run: |
ccache --zero-stats
mkdir build
cmake -S . \
-B build \
-DCMAKE_INSTALL_PREFIX="../target" \
-DCMAKE_APPLE_SILICON_PROCESSOR=arm64 \
-DCMAKE_PREFIX_PATH="$(~/wrongbrew.sh --prefix);$(~/wrongbrew.sh --prefix qt@5)" \
$CMAKE_OPTS \
- name: Configure
run: >-
cmake -S .
-B build
-DCMAKE_INSTALL_PREFIX="../target"
-DCMAKE_APPLE_SILICON_PROCESSOR=arm64
-DCMAKE_PREFIX_PATH="$(~/wrongbrew.sh --prefix);$(~/wrongbrew.sh --prefix qt@5)"
$CMAKE_OPTS
-DUSE_WERROR=OFF
- name: Build
run: cmake --build build
Expand Down

0 comments on commit 8ab51b6

Please sign in to comment.