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 621b19a commit a5a1295Copy full SHA for a5a1295
.github/workflows/scheduled.yaml
@@ -347,13 +347,18 @@ jobs:
347
348
windows-qt6-build:
349
name: Build Qt6 (Windows)
350
- runs-on: windows-2022
351
needs: cache-cleanup
352
strategy:
353
fail-fast: true
354
matrix:
355
- target: [x64]
+ target: [x64, arm64]
356
config: [RelWithDebInfo, Debug]
+ include:
357
+ - target: x64
358
+ runner-os: windows-2022
359
+ - target: arm64
360
+ runner-os: windows-11-arm
361
+ runs-on: ${{ matrix.runner-os }}
362
363
steps:
364
- name: Checkout
0 commit comments