Skip to content

Yet another test

Yet another test #2

Workflow file for this run

name: Arch
on: [push]
jobs:
build:
name: Test on QEMU ${{ matrix.arch }} and ${{ matrix.distro }}
# The host should always be linux
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- arch: aarch64
distro: ubuntu20.04
- arch: aarch64
distro: ubuntu22.04
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
# Not required, but speeds up builds
githubToken: ${{ github.token }}
run: ./install.sh