Skip to content

Commit e7c982c

Browse files
authored
GitHub Actions: Add ubuntu-24.04-arm and windows-11-arm (#296)
* GitHub Actions: Add ubuntu-24.04-arm and windows-11-arm https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories Remove windows-2025 because we haven't seen anything new with that. * GitHub Actions: Add ubuntu-24.04-arm and windows-11-arm https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories Remove windows-2025 because we haven't seen anything new with that.
1 parent e97fd25 commit e7c982c

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/node-gyp.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ jobs:
1414
python-version: ["3.9", "3.11", "3.13"]
1515
include:
1616
- node-version: "22"
17-
os: macos-13
17+
os: macos-13 # macOS on Intel
1818
python-version: "3.13"
1919
- node-version: "22"
20-
os: windows-2025
20+
os: ubuntu-24.04-arm # Ubuntu on ARM
21+
python-version: "3.13"
22+
- node-version: "22"
23+
os: windows-11-arm # Windows on ARM
2124
python-version: "3.13"
2225
runs-on: ${{ matrix.os }}
2326
steps:

.github/workflows/nodejs.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212
os: [macos-latest, ubuntu-latest, windows-latest]
1313
python: ["3.9", "3.11", "3.13"]
1414
include:
15-
- os: macos-13
15+
- os: macos-13 # macOS on Intel
1616
python-version: "3.13"
17-
- os: windows-2025
17+
- os: ubuntu-24.04-arm # Ubuntu on ARM
18+
python-version: "3.13"
19+
- os: windows-11-arm # Windows on ARM
1820
python-version: "3.13"
1921

2022
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)