Skip to content

Commit

Permalink
[ci] Use ubuntu-22.04-arm runners (#18676)
Browse files Browse the repository at this point in the history
The `actions/checkout` issue with the new Github arm runners is
reportedly fixed on `ubuntu-22.04-arm`. Let's try and see how it goes.
We can always switch back later when `ubuntu-24.04-arm` is fixed as
well.

Ref #18660
  • Loading branch information
cdce8p authored Feb 14, 2025
1 parent 49c3fa4 commit d7f15be
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# the oldest and newest supported Python versions
- name: Test suite with py39-ubuntu, mypyc-compiled
python: '3.9'
os: ubuntu-24.04-arm
os: ubuntu-22.04-arm
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true
Expand All @@ -44,31 +44,31 @@ jobs:
tox_extra_args: "-n 4"
- name: Test suite with py310-ubuntu
python: '3.10'
os: ubuntu-24.04-arm
os: ubuntu-22.04-arm
toxenv: py
tox_extra_args: "-n 4"
- name: Test suite with py311-ubuntu, mypyc-compiled
python: '3.11'
os: ubuntu-24.04-arm
os: ubuntu-22.04-arm
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true
- name: Test suite with py312-ubuntu, mypyc-compiled
python: '3.12'
os: ubuntu-24.04-arm
os: ubuntu-22.04-arm
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true
- name: Test suite with py313-ubuntu, mypyc-compiled
python: '3.13'
os: ubuntu-24.04-arm
os: ubuntu-22.04-arm
toxenv: py
tox_extra_args: "-n 4"
test_mypyc: true

# - name: Test suite with py314-dev-ubuntu
# python: '3.14-dev'
# os: ubuntu-24.04-arm
# os: ubuntu-22.04-arm
# toxenv: py
# tox_extra_args: "-n 4"
# allow_failure: true
Expand Down

0 comments on commit d7f15be

Please # to comment.