2020-08-07 05:05:37 -04:00
|
|
|
name: setup-qemu-ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- .github/workflows/setup-qemu-ci.yml
|
|
|
|
- setup-qemu/**
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- .github/workflows/setup-qemu-ci.yml
|
|
|
|
- setup-qemu/**
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-08-11 15:49:46 -04:00
|
|
|
image:
|
|
|
|
- tonistiigi/binfmt:latest
|
|
|
|
- tonistiigi/binfmt:buildkit
|
|
|
|
platforms:
|
|
|
|
- all
|
|
|
|
- arm64,riscv64,arm
|
2020-08-07 05:05:37 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Runner info
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y hwinfo
|
|
|
|
sudo hwinfo --short
|
|
|
|
sudo mount
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: ./setup-qemu/
|
|
|
|
with:
|
2020-08-11 15:49:46 -04:00
|
|
|
image: ${ matrix.image }
|
|
|
|
platforms: ${ matrix.platforms }
|