Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 64ca0a1

Browse files
authored
Merge pull request #17028 from meeseeksmachine/auto-backport-of-pr-17024-on-v6.1.x
Backport PR #17024 on branch v6.1.x (Move aarch64 testing to native runner)
2 parents 7208a7b + 9ca4589 commit 64ca0a1

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/ci_cron_weekly.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ jobs:
115115
fail-fast: false
116116
matrix:
117117
include:
118-
- arch: aarch64
119118
- arch: s390x
120119
- arch: ppc64le
121120
- arch: armv7
@@ -171,3 +170,24 @@ jobs:
171170
ASTROPY_USE_SYSTEM_ALL=1 pip3 install -v --no-build-isolation -e .[test]
172171
pip3 list
173172
python3 -m pytest -m "not hypothesis"
173+
174+
test_arm64:
175+
176+
# Native arm64 testing - we keep this in the weekly cron as we need to pay for it so we should
177+
# minimize how many jobs we do.
178+
179+
runs-on: linux-arm64
180+
name: Python 3.12 (arm64)
181+
182+
steps:
183+
- uses: actions/checkout@v4
184+
with:
185+
fetch-depth: 0
186+
- uses: actions/setup-python@v5
187+
with:
188+
python-version: '3.12'
189+
- name: Set up dependencies
190+
run: pip install tox
191+
192+
- name: Run tests
193+
run: tox -e py312-test -- -n=2

0 commit comments

Comments
 (0)