Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 47821ec

Browse filesBrowse files
committed
tools: switch to ARM runners on GHA jobs
PR-URL: #61903 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
1 parent 1630a56 commit 47821ec
Copy full SHA for 47821ec

9 files changed

+10-9Lines changed: 10 additions & 9 deletions
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.github/workflows/build-tarball.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/build-tarball.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
compression-level: 0
9999
test-tarball-linux:
100100
needs: build-tarball
101-
runs-on: ubuntu-24.04
101+
runs-on: ubuntu-24.04-arm
102102
env:
103103
CC: ${{ (github.base_ref == 'main' || github.ref_name == 'main') && 'sccache' || '' }} clang-19
104104
CXX: ${{ (github.base_ref == 'main' || github.ref_name == 'main') && 'sccache' || '' }} clang++-19
Collapse file

‎.github/workflows/coverage-linux.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/coverage-linux.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ permissions:
4848
jobs:
4949
coverage-linux:
5050
if: github.event.pull_request.draft == false
51-
runs-on: ubuntu-24.04
51+
runs-on: ubuntu-24.04-arm
5252
steps:
5353
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5454
with:
Collapse file

‎.github/workflows/daily-wpt-fyi.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/daily-wpt-fyi.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
matrix:
3737
node-version: ${{ fromJSON(needs.collect-versions.outputs.matrix) }}
3838
fail-fast: false
39-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-24.04-arm
4040
steps:
4141
- name: Set up Python ${{ env.PYTHON_VERSION }}
4242
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
Collapse file

‎.github/workflows/daily.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/daily.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
build-lto:
16-
runs-on: ubuntu-24.04
16+
runs-on: ubuntu-24.04-arm
1717
steps:
1818
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
with:
Collapse file

‎.github/workflows/linters.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/linters.yml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ jobs:
226226
lint-codeowners:
227227
if: github.event.pull_request.draft == false
228228
# cannot use ubuntu-slim here because mszostok/codeowners-validator is dockerized
229+
# cannot use ubuntu-24.04-arm here because the docker image is x86 only
229230
runs-on: ubuntu-latest
230231
steps:
231232
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Collapse file

‎.github/workflows/notify-on-push.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/notify-on-push.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Notify on Force Push on `main`
1313
if: github.repository == 'nodejs/node' && github.event.forced
1414
# cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04-arm
1616
steps:
1717
- name: Slack Notification
1818
uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 # 2.3.3
@@ -32,7 +32,7 @@ jobs:
3232
name: Notify on Push on `main` with invalid message
3333
if: github.repository == 'nodejs/node'
3434
# cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized
35-
runs-on: ubuntu-latest
35+
runs-on: ubuntu-24.04-arm
3636
steps:
3737
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3838
with:
Collapse file

‎.github/workflows/notify-on-review-wanted.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/notify-on-review-wanted.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Notify on Review Wanted
1414
if: github.repository == 'nodejs/node' && github.event.label.name == 'review wanted'
1515
# cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04-arm
1717
steps:
1818
- name: Determine PR or Issue
1919
id: define-message
Collapse file

‎.github/workflows/scorecard.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/scorecard.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
analysis:
2323
name: Scorecard analysis
2424
# cannot use ubuntu-slim here because ossf/scorecard-action is dockerized
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-24.04-arm
2626
permissions:
2727
# Needed to upload the results to code-scanning dashboard.
2828
security-events: write
Collapse file

‎.github/workflows/test-internet.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/test-internet.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ permissions:
4545
jobs:
4646
test-internet:
4747
if: github.event_name == 'schedule' && github.repository == 'nodejs/node' || github.event.pull_request.draft == false
48-
runs-on: ubuntu-24.04
48+
runs-on: ubuntu-24.04-arm
4949
steps:
5050
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5151
with:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.