2020-08-18 18:19:47 +02:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
2021-04-02 11:47:52 +02:00
|
|
|
schedule:
|
2023-02-19 21:57:26 +01:00
|
|
|
- cron: '0 10 * * *'
|
2020-08-18 18:19:47 +02:00
|
|
|
push:
|
|
|
|
branches:
|
2021-04-02 11:47:52 +02:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
2020-08-18 18:19:47 +02:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
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
|
2022-03-02 07:08:58 +01:00
|
|
|
uses: actions/checkout@v3
|
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 }}
|
2021-04-16 16:29:05 +02:00
|
|
|
|
|
|
|
error:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2022-03-02 07:08:58 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-04-16 16:29:05 +02:00
|
|
|
-
|
|
|
|
name: Stop docker
|
|
|
|
run: |
|
|
|
|
sudo systemctl stop docker
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
id: qemu
|
|
|
|
continue-on-error: true
|
|
|
|
uses: ./
|
|
|
|
-
|
|
|
|
name: Check
|
|
|
|
run: |
|
|
|
|
echo "${{ toJson(steps.qemu) }}"
|
|
|
|
if [ "${{ steps.qemu.outcome }}" != "failure" ] || [ "${{ steps.qemu.conclusion }}" != "success" ]; then
|
|
|
|
echo "::error::Should have failed"
|
|
|
|
exit 1
|
|
|
|
fi
|