Skip to content

Commit b6f26f0

Browse files
committed
Use native ARM runners when testing on ARM architecture
This provides better and faster testing of ARM architectures than testing under QEMU emulation.
1 parent de58d6e commit b6f26f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
permissions:
178178
# actions/checkout needs this to fetch code
179179
contents: read
180-
runs-on: ubuntu-latest
180+
runs-on: ubuntu-${{ startsWith(matrix.architecture, 'arm') && '24.04-arm' || 'latest' }}
181181
strategy:
182182
fail-fast: false
183183
matrix:

0 commit comments

Comments
 (0)