Skip to content

Commit

Permalink
CI: Add support for building Windows ARM64 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyvct committed Nov 20, 2022
1 parent d4989a0 commit 34c822d
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: true
matrix:
target: [macos-arm64, macos-x86_64, linux-x86_64, windows-x64, windows-x86]
target: [macos-arm64, macos-x86_64, linux-x86_64, windows-x64, windows-x86, windows-arm64]
include:
- target: macos-arm64
os: 'macos-12'
Expand All @@ -46,6 +46,11 @@ jobs:
config: 'Release'
type: 'static'
revision: 8
- target: windows-arm64
os: 'ubuntu-20.04'
config: 'Release'
type: 'static'
revision: 8
env:
CACHE_REVISION: ${{ matrix.revision }}
defaults:
Expand Down Expand Up @@ -455,14 +460,17 @@ jobs:
strategy:
fail-fast: true
matrix:
target: [x64, x86]
target: [x64, x86, arm64]
include:
- target: x64
config: 'Release'
type: 'static'
- target: x86
config: 'Release'
type: 'static'
- target: arm64
config: 'Release'
type: 'static'
env:
CACHE_REVISION: '3'
defaults:
Expand Down Expand Up @@ -536,8 +544,11 @@ jobs:
fail-fast: true
matrix:
qtVersion: [5, 6]
target: [x64, x86]
target: [x64, x86, arm64]
config: ['RelWithDebInfo', 'Debug']
exclude:
- qtVersion: 5
target: arm64
env:
CACHE_REVISION: '02'
steps:
Expand Down Expand Up @@ -594,7 +605,10 @@ jobs:
fail-fast: true
matrix:
qtVersion: [5, 6]
target: [x64, x86]
target: [x64, x86, arm64]
exclude:
- qtVersion: 5
target: arm64
needs: [windows-qt-build]
steps:
- name: Checkout
Expand Down

0 comments on commit 34c822d

Please sign in to comment.