Skip to content

Commit

Permalink
Enable macOS arm64 builds as part of CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed Nov 5, 2023
1 parent 5ad79f2 commit 5b76aa0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ jobs:
strategy:
matrix:
platform:
#- { str: macos-arm64, arch: arm64 }
- { str: macos-arm64, arch: arm64 }
- { str: macos-x64, arch: x86_64 }
cfg:
- { external: OFF, type: RelWithDebInfo, str: internal-release }
Expand All @@ -262,11 +262,11 @@ jobs:
- name: Install dependencies
run: |
brew install \
${{ (matrix.platform.arch == 'x86_64' && 'qt@5') || '' }} \
autoconf \
automake \
libtool \
nasm \
qt@5
nasm
- name: Setup NuGet
run: |
Expand Down Expand Up @@ -303,6 +303,7 @@ jobs:
cmake --build build --config "${{ matrix.cfg.type }}" -j 2
- name: Test
if: matrix.platform.arch == 'x86_64'
run: |
cmake --build build --target check --config "${{ matrix.cfg.type }}" -j 2
Expand Down

0 comments on commit 5b76aa0

Please sign in to comment.