Skip to content

Commit 8df50ca

Browse files
committed
workflow: use arm runners for arm64 builds
1 parent 34a2da4 commit 8df50ca

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build_release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ on:
33

44
jobs:
55
build:
6-
runs-on: ubuntu-latest
6+
runs-on: ${{
7+
matrix.docker_arch == 'arm64/v8' && 'ubuntu-24.04-arm' ||
8+
'ubuntu-24.04'
9+
}}
710
permissions:
811
contents: write
912
strategy:

.github/workflows/build_test.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ on:
55
- 'RELEASE.md'
66
pull_request:
77
workflow_dispatch:
8+
schedule:
9+
- cron: '0 15 * * 2' # Runs at 15:00 (3pm) UTC every Tuesday
810

911
jobs:
1012
build:
11-
runs-on: ubuntu-latest
13+
runs-on: ${{
14+
matrix.docker_arch == 'arm64/v8' && 'ubuntu-24.04-arm' ||
15+
'ubuntu-24.04'
16+
}}
1217
strategy:
1318
matrix:
1419
debian_version: [bullseye, bookworm]

0 commit comments

Comments
 (0)