mirror of
https://github.com/docker/setup-qemu-action.git
synced 2024-11-05 19:55:40 +01:00
05af7085aa
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.1 to v2.3.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.1...2036a08e25fa78bbd946711a407b529a0a1204bf) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
875 B
YAML
46 lines
875 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
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
|
|
uses: actions/checkout@v2.3.2
|
|
-
|
|
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
|