We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a76c98 commit 2670757Copy full SHA for 2670757
.github/workflows/linux.yml
@@ -16,10 +16,14 @@ jobs:
16
include:
17
- dockerfile: v1.19/debian
18
- dockerfile: v1.19/arm64/debian
19
+ - dockerfile: v1.19/armhf/debian
20
runs-on: >-
21
${{ (contains(matrix.dockerfile, 'arm64')) && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
22
steps:
23
- uses: actions/checkout@master
24
+ - name: Setup
25
+ if: ${{ (contains(matrix.dockerfile, 'armhf')) }}
26
+ run: sudo apt install -y qemu-user-binfmt binfmt-support
27
- name: Build
28
run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test
29
- name: Test
0 commit comments