We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b04eb0 commit 48e6f71Copy full SHA for 48e6f71
.github/workflows/main.yaml
@@ -537,13 +537,18 @@ jobs:
537
538
windows-qt6-build:
539
name: Build Qt6 (Windows)
540
- runs-on: windows-2022
541
needs: pre-checks
542
strategy:
543
fail-fast: true
544
matrix:
545
- target: [x64]
+ target: [x64, arm64]
546
config: [RelWithDebInfo, Debug]
+ include:
547
+ - target: x64
548
+ runner-os: windows-2022
549
+ - target: arm64
550
+ runner-os: windows-11-arm
551
+ runs-on: ${{ matrix.runner-os }}
552
553
steps:
554
- name: Checkout
0 commit comments