Skip to content

Commit

Permalink
Fix missing binfmt for image CI
Browse files Browse the repository at this point in the history
Don't stop on image CI error
  • Loading branch information
tom91136 committed Oct 6, 2024
1 parent 143e814 commit b04e59d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on: [push]
jobs:
test-image:
runs-on: ubuntu-24.04
continue-on-error: true
strategy:
matrix:
image:
Expand Down Expand Up @@ -34,6 +35,12 @@ jobs:
uses: actions/checkout@v4
if: always()

- name: Setup QEMU binfmt
run: |
sudo apt-get update
sudo apt-get install -y --no-install-suggests qemu-system-x86 qemu-system-aarch64
if: always()

- name: Build image
working-directory: images
run: make ${{ matrix.image }}
Expand Down

0 comments on commit b04e59d

Please sign in to comment.