2020-08-18 18:19:47 +02:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- releases/v*
|
|
|
|
paths-ignore:
|
2020-08-18 18:20:50 +02:00
|
|
|
- '**.md'
|
2020-08-18 18:19:47 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- releases/v*
|
|
|
|
paths-ignore:
|
2020-08-18 18:20:50 +02:00
|
|
|
- '**.md'
|
2020-08-18 18:19:47 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
image:
|
|
|
|
- tonistiigi/binfmt:latest
|
|
|
|
- tonistiigi/binfmt:master
|
|
|
|
platforms:
|
|
|
|
- all
|
|
|
|
- arm64,riscv64,arm
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-04 07:10:31 +01:00
|
|
|
uses: actions/checkout@v2.3.4
|
2020-08-18 18:19:47 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
id: qemu
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
image: ${{ matrix.image }}
|
|
|
|
platforms: ${{ matrix.platforms }}
|
|
|
|
-
|
|
|
|
name: Available platforms
|
|
|
|
run: echo ${{ steps.qemu.outputs.platforms }}
|
|
|
|
-
|
|
|
|
name: Dump context
|
|
|
|
uses: crazy-max/ghaction-dump-context@v1
|