Skip to content

Commit 365de20

Browse files
committed
Run ARM jobs on ARM runners
Signed-off-by: DL6ER <dl6er@dl6er.de>
1 parent 58f83ac commit 365de20

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ftl-build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,23 @@ jobs:
3030
if: |
3131
(github.event_name == 'push' && github.repository == 'pi-hole/docker-base-images') ||
3232
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
33-
runs-on: ubuntu-latest
3433
strategy:
3534
fail-fast: false
3635
matrix:
3736
include:
3837
- platform: linux/amd64
38+
runner: ubuntu-latest
3939
- platform: linux/386
40+
runner: ubuntu-latest
4041
- platform: linux/arm/v6
42+
runner: ubuntu-latest-arm64
4143
- platform: linux/arm/v7
44+
runner: ubuntu-latest-arm64
4245
- platform: linux/arm64/v8
46+
runner: ubuntu-latest-arm64
4347
- platform: linux/riscv64
48+
runner: ubuntu-latest
49+
runs-on: ${{ matrix.runner }}
4450
steps:
4551
-
4652
name: Prepare name for digest up/download

0 commit comments

Comments
 (0)