Skip to content

Commit

Permalink
Fingers crossed
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 24, 2024
1 parent ccc8bcb commit ba1afd9
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
path: ~/Library/Caches/Homebrew/downloads
macos-arm:
name: macos-arm
runs-on: macos-12
runs-on: macos-14
env:
CMAKE_OPTS: >-
-DUSE_WERROR=ON
Expand All @@ -157,7 +157,6 @@ jobs:
CCACHE_MAXSIZE: 0
CCACHE_NOCOMPRESS: 1
MAKEFLAGS: -j3
DEVELOPER_DIR: /Applications/Xcode_13.1.app/Contents/Developer
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down Expand Up @@ -202,14 +201,14 @@ jobs:
ccache --zero-stats
mkdir build
- name: Configure
run: >-
cmake -S .
-B build
-DCMAKE_INSTALL_PREFIX="../target"
-DCMAKE_OSX_ARCHITECTURES=arm64
-DCMAKE_PREFIX_PATH="$(~/wrongbrew.sh --prefix);$(~/wrongbrew.sh --prefix qt@5)"
$CMAKE_OPTS
-DUSE_WERROR=OFF
run: |
cmake -S .
-B build \
-DCMAKE_INSTALL_PREFIX="../target" \
-DCMAKE_OSX_ARCHITECTURES=arm64 \
-DCMAKE_PREFIX_PATH="$(~/wrongbrew.sh --prefix);$(~/wrongbrew.sh --prefix qt@5)" \
$CMAKE_OPTS \
-DUSE_WERROR=OFF
- name: Build
run: cmake --build build
- name: Package
Expand Down

0 comments on commit ba1afd9

Please sign in to comment.