From dc01059582289d344c7363a4debb3c6f2175e136 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Wed, 24 Dec 2025 15:41:21 +0900 Subject: [PATCH] ci: enable armhf build test Signed-off-by: Kentaro Hayashi --- .github/workflows/linux.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 162be37d..a944ca5b 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -16,10 +16,16 @@ jobs: include: - dockerfile: v1.19/debian - dockerfile: v1.19/arm64/debian + - dockerfile: v1.19/armhf/debian runs-on: >- ${{ (contains(matrix.dockerfile, 'arm64')) && 'ubuntu-24.04-arm' || 'ubuntu-latest' }} steps: - uses: actions/checkout@master + - name: Setup + if: ${{ (contains(matrix.dockerfile, 'armhf')) }} + run: | + sudo apt install -y qemu-user-binfmt binfmt-support qemu-system-arm + sudo dpkg --add-architecture armhf - name: Build run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test - name: Test