Skip to content

Commit 64389e6

Browse files
committed
update-manual-test: special-case Windows/ARM64 runners
For a little more than two weeks, as of time of writing, there are GitHub-hosted Windows/ARM64 runners (at long last!), announced here: https://github.blog/changelog/2025-04-14-windows-arm64-hosted-runners-now-available-in-public-preview/ These are not yet listed in the `runner-images` README, therefore we want to add them manually. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 2f034cd commit 64389e6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/manual-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
- windows-2025
2020
- windows-2022
2121
- windows-2019
22+
- windows-11-arm
2223
container-runs-on:
2324
type: choice
2425
description: 'The Docker container to run the job on (this overrides the `runs-on` input)'

.github/workflows/update-manual-test.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@
3535
})
3636
.filter(runsOn => runsOn)
3737

38+
// The Windows/ARM64 runners are in public preview (and for the time being,
39+
// not listed in the `runner-images` README file), so we need to add this
40+
// manually.
41+
if (!choices.includes('windows-11-arm')) choices.push('windows-11-arm')
42+
3843
// Now edit the `manual-test` workflow definition
3944
const ymlPath = `${__dirname}/manual-test.yml`
4045
const yml = fs.readFileSync(ymlPath, 'utf8')

0 commit comments

Comments
 (0)