Skip to content

Commit 6ed44a6

Browse files
chore: update GitHub Actions to use ubuntu-22.04-arm for all jobs
1 parent b864dd4 commit 6ed44a6

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
jobs:
1919
fuzz:
2020
if: ${{ !github.event.act }}
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04-arm
2222
strategy:
2323
fail-fast: false
2424
matrix:
@@ -66,7 +66,7 @@ jobs:
6666
verify-execution:
6767
if: ${{ !github.event.act }}
6868
needs: fuzz
69-
runs-on: ubuntu-latest
69+
runs-on: ubuntu-22.04-arm
7070
steps:
7171
- uses: actions/checkout@v4
7272
- uses: actions/download-artifact@v4

.github/workflows/rust.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
permissions:
2121
contents: read
2222
pull-requests: write
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-22.04-arm
2424
steps:
2525
- name: Checkout Crate
2626
uses: actions/checkout@v4
@@ -140,7 +140,7 @@ jobs:
140140

141141
key_wallet_tests:
142142
name: Key Wallet Components Tests
143-
runs-on: ubuntu-latest
143+
runs-on: ubuntu-22.04-arm
144144
steps:
145145
- name: Checkout Crate
146146
uses: actions/checkout@v4
@@ -157,7 +157,7 @@ jobs:
157157

158158
core_components_tests:
159159
name: Core Components Tests
160-
runs-on: ubuntu-latest
160+
runs-on: ubuntu-22.04-arm
161161
steps:
162162
- name: Checkout Crate
163163
uses: actions/checkout@v4
@@ -178,7 +178,7 @@ jobs:
178178

179179
clippy:
180180
name: Clippy (Non-strict)
181-
runs-on: ubuntu-latest
181+
runs-on: ubuntu-22.04-arm
182182
steps:
183183
- name: Checkout Crate
184184
uses: actions/checkout@v4
@@ -201,7 +201,7 @@ jobs:
201201
202202
strict-checks:
203203
name: Strict Warnings and Clippy Checks
204-
runs-on: ubuntu-latest
204+
runs-on: ubuntu-22.04-arm
205205
steps:
206206
- name: Checkout Crate
207207
uses: actions/checkout@v4
@@ -298,7 +298,7 @@ jobs:
298298

299299
fmt:
300300
name: Format
301-
runs-on: ubuntu-latest
301+
runs-on: ubuntu-22.04-arm
302302
steps:
303303
- name: Checkout Crate
304304
uses: actions/checkout@v4
@@ -311,7 +311,7 @@ jobs:
311311

312312
rpc_tests:
313313
name: RPC Tests
314-
runs-on: ubuntu-latest
314+
runs-on: ubuntu-22.04-arm
315315
strategy:
316316
matrix:
317317
include:
@@ -330,7 +330,7 @@ jobs:
330330
integrations_tests:
331331
name: Integration Tests
332332
if: ${{ false }} # Temporarily disabled
333-
runs-on: ubuntu-latest
333+
runs-on: ubuntu-22.04-arm
334334
strategy:
335335
matrix:
336336
rust: [stable]
@@ -347,7 +347,7 @@ jobs:
347347

348348
actionlint:
349349
name: Lint GitHub Actions
350-
runs-on: ubuntu-latest
350+
runs-on: ubuntu-22.04-arm
351351
permissions:
352352
contents: read
353353
steps:

.github/workflows/verify-ffi-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
verify-key-wallet-docs:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04-arm
2626
steps:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
fi
5454
5555
verify-dash-spv-docs:
56-
runs-on: ubuntu-latest
56+
runs-on: ubuntu-22.04-arm
5757
steps:
5858
- name: Checkout repository
5959
uses: actions/checkout@v4
@@ -84,7 +84,7 @@ jobs:
8484
fi
8585
8686
update-docs-comment:
87-
runs-on: ubuntu-latest
87+
runs-on: ubuntu-22.04-arm
8888
if: failure() && github.event_name == 'pull_request'
8989
needs:
9090
- verify-key-wallet-docs

0 commit comments

Comments
 (0)