Skip to content

Commit 80b9e79

Browse files
authored
Use ubuntu-22.04-arm image for Arm runners. (python#129834)
GitHub suggested us to try the 22.04 images for the Arm runners while they are invetigating the failures we've been having using 24.04.
1 parent 707d066 commit 80b9e79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,13 +247,13 @@ jobs:
247247
- true
248248
os:
249249
- ubuntu-24.04
250-
- ubuntu-24.04-arm
250+
- ubuntu-22.04-arm
251251
exclude:
252252
# Do not test BOLT with free-threading, to conserve resources
253253
- bolt: true
254254
free-threading: true
255255
# BOLT currently crashes during instrumentation on aarch64
256-
- os: ubuntu-24.04-arm
256+
- os: ubuntu-22.04-arm
257257
bolt: true
258258
uses: ./.github/workflows/reusable-ubuntu.yml
259259
with:

.github/workflows/jit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
runner: ubuntu-24.04
8787
- target: aarch64-unknown-linux-gnu/gcc
8888
architecture: aarch64
89-
runner: ubuntu-24.04-arm
89+
runner: ubuntu-22.04-arm
9090
steps:
9191
- uses: actions/checkout@v4
9292
with:

.github/workflows/tail-call.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
runner: ubuntu-24.04
6363
- target: aarch64-unknown-linux-gnu/gcc
6464
architecture: aarch64
65-
runner: ubuntu-24.04-arm
65+
runner: ubuntu-22.04-arm
6666
steps:
6767
- uses: actions/checkout@v4
6868
with:

0 commit comments

Comments
 (0)