Skip to content

Commit e1ee314

Browse files
committed
git-artifacts: use hosted Windows 11 ARM runners
The hosted Windows 11 ARM runners are now in public preview, therefore we can finally stop spinning up our own Windows/ARM64 VMs to do the job. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9200263 commit e1ee314

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ defaults:
4343

4444
jobs:
4545
pkg:
46-
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && fromJSON('["Windows", "ARM64"]') || 'windows-latest' }}
46+
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && 'windows-11-arm' || 'windows-latest' }}
4747
outputs:
4848
artifact_matrix: ${{ steps.artifact-build-matrix.outputs.result }}
4949
msystem: ${{steps.configure-environment.outputs.MSYSTEM}}
@@ -357,7 +357,7 @@ jobs:
357357
append-text: "${{ format('Completed: {0}', job.status) }}."
358358
conclusion: ${{ job.status }}
359359
artifacts:
360-
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && fromJSON('["Windows", "ARM64"]') || 'windows-latest' }}
360+
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && 'windows-11-arm' || 'windows-latest' }}
361361
needs: pkg
362362
env:
363363
MSYSTEM: ${{ needs.pkg.outputs.msystem }}

0 commit comments

Comments
 (0)