chore(action): also run build on aarch64

This commit is contained in:
Kisaragi 2022-05-15 12:46:55 +09:00 committed by GitHub
parent 4605062500
commit 98511809f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,11 +9,22 @@ on:
- main
jobs:
build:
build-amd64:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: build on amd64
run: make modules -j$(nproc)
build-aarch64:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build
run: make modules -j$(nproc)
- uses: uraimo/run-on-arch-action@v2
name: build on aarch64
with:
arch: aarch64
distro: ubuntu20.04
githubToken: ${{ github.token }}
run: make modules -j$(nproc)