@@ -386,48 +386,3 @@ jobs:
386
386
with :
387
387
name : ${{ steps.setup.outputs.artifactName }}
388
388
path : ${{ github.workspace }}/windows/${{ steps.setup.outputs.artifactFileName }}
389
-
390
- windows-qt6-arm64-build :
391
- name : Build Qt6 (Windows ARM64)
392
- runs-on : windows-2022
393
- needs : [windows-qt6-build]
394
- strategy :
395
- fail-fast : true
396
- matrix :
397
- config : [RelWithDebInfo, Debug]
398
-
399
- steps :
400
- - name : Checkout
401
- uses : actions/checkout@v4
402
-
403
- - name : Setup Environment
404
- id : setup
405
- run : |
406
- # Setup Environment
407
- $HostArtifactName="qt6-windows-x64-${{ matrix.config }}-nightly"
408
- $HostFileName="windows-deps-qt6-$(Get-Date -Format 'yyyy-MM-dd')-x64-${{ matrix.config }}.zip"
409
-
410
- "hostArtifactName=${HostArtifactName}" >> $env:GITHUB_OUTPUT
411
- "hostArtifactFileName=${HostFileName}" >> $env:GITHUB_OUTPUT
412
- "qtHostPath=${env:GITHUB_WORKSPACE}/Qt6Host" >> $env:GITHUB_OUTPUT
413
-
414
- - name : Download Host Tools Artifact
415
- uses : actions/download-artifact@v4
416
- with :
417
- name : ${{ steps.setup.outputs.hostArtifactName }}
418
- path : ${{ github.workspace }}/Qt6Host
419
-
420
- - name : Setup Host Tools Artifact
421
- run : |
422
- . ${{ github.workspace }}/utils.pwsh/Expand-ArchiveExt
423
-
424
- Set-Location ${{ github.workspace }}/Qt6Host
425
- Expand-ArchiveExt -Path ${{ steps.setup.outputs.hostArtifactFileName }} -DestinationPath (Get-Location | Convert-Path)
426
-
427
- - name : Build Windows Qt
428
- uses : ./.github/actions/build-qt
429
- env :
430
- QtHostPath : ${{ steps.setup.outputs.qtHostPath }}
431
- with :
432
- target : arm64
433
- config : ${{ matrix.config }}
0 commit comments