We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a76c98 commit 1125b7eCopy full SHA for 1125b7e
.github/workflows/linux.yml
@@ -16,10 +16,16 @@ 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: |
27
+ sudo apt install -y qemu-user-binfmt binfmt-support
28
+ sudo dpkg --add-architecture armhf
29
- name: Build
30
run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test
31
- name: Test
0 commit comments