Skip to content

Commit

Permalink
Also test for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
TerrorJack committed Sep 7, 2023
1 parent 74f03e6 commit 59403a5
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,29 @@ on:

jobs:
build:
name: build
name: build-${{ matrix.arch }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch:
- amd64
- arm64v8
steps:

- name: install-deps
run: |
sudo apt update
sudo apt install -y \
qemu-user-static
- name: checkout
uses: actions/checkout@v3

- name: patch-dockerfile
run: |
sed -i 's@rust:alpine@${{ matrix.arch }}/rust:alpine@' Dockerfile
- name: build-image
run: |
podman build \
Expand Down

0 comments on commit 59403a5

Please sign in to comment.