File tree 4 files changed +7
-13
lines changed
4 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 1
1
self-hosted-runner :
2
- labels : ["ubuntu-24.04-aarch64", " windows-aarch64"]
2
+ labels : ["windows-aarch64"]
3
3
4
4
config-variables : null
5
5
6
6
paths :
7
7
.github/workflows/**/*.yml :
8
8
ignore :
9
9
- 1st argument of function call is not assignable
10
- - SC2(015|038|086|091|097|098|129|155)
10
+ - SC2(015|038|086|091|097|098|129|155)
Original file line number Diff line number Diff line change @@ -244,17 +244,13 @@ jobs:
244
244
- true
245
245
os :
246
246
- ubuntu-24.04
247
- - ubuntu-24.04-aarch64
248
- is-fork : # only used for the exclusion trick
249
- - ${{ github.repository_owner != 'python' }}
247
+ - ubuntu-24.04-arm
250
248
exclude :
251
- - os : ubuntu-24.04-aarch64
252
- is-fork : true
253
249
# Do not test BOLT with free-threading, to conserve resources
254
250
- bolt : true
255
251
free-threading : true
256
252
# BOLT currently crashes during instrumentation on aarch64
257
- - os : ubuntu-24.04-aarch64
253
+ - os : ubuntu-24.04-arm
258
254
bolt : true
259
255
uses : ./.github/workflows/reusable-ubuntu.yml
260
256
with :
Original file line number Diff line number Diff line change 83
83
runner : ubuntu-24.04
84
84
- target : aarch64-unknown-linux-gnu/gcc
85
85
architecture : aarch64
86
- # Forks don't have access to our paid AArch64 runners. These jobs are skipped below:
87
- runner : ${{ github.repository_owner == 'python' && 'ubuntu-24.04-aarch64' || 'ubuntu-24.04' }}
86
+ runner : ubuntu-24.04-arm
88
87
steps :
89
88
- uses : actions/checkout@v4
90
89
with :
@@ -123,8 +122,7 @@ jobs:
123
122
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
124
123
125
124
- name : Native Linux
126
- # Forks don't have access to our paid AArch64 runners. Skip those:
127
- if : runner.os == 'Linux' && (matrix.architecture == 'x86_64' || github.repository_owner == 'python')
125
+ if : runner.os == 'Linux'
128
126
run : |
129
127
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
130
128
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
Original file line number Diff line number Diff line change 56
56
- id : check-readthedocs
57
57
58
58
- repo : https://github.com/rhysd/actionlint
59
- rev : v1.7.6
59
+ rev : v1.7.7
60
60
hooks :
61
61
- id : actionlint
62
62
You can’t perform that action at this time.
0 commit comments