Skip to content

Commit 1125b7e

Browse files
committed
ci: enable armhf build test
Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent 1a76c98 commit 1125b7e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/linux.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ jobs:
1616
include:
1717
- dockerfile: v1.19/debian
1818
- dockerfile: v1.19/arm64/debian
19+
- dockerfile: v1.19/armhf/debian
1920
runs-on: >-
2021
${{ (contains(matrix.dockerfile, 'arm64')) && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
2122
steps:
2223
- uses: actions/checkout@master
24+
- name: Setup
25+
if: ${{ (contains(matrix.dockerfile, 'armhf')) }}
26+
run: |
27+
sudo apt install -y qemu-user-binfmt binfmt-support
28+
sudo dpkg --add-architecture armhf
2329
- name: Build
2430
run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test
2531
- name: Test

0 commit comments

Comments
 (0)