mirror of
https://github.com/docker/setup-qemu-action.git
synced 2026-06-04 11:23:02 +03:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](de0fac2e45...df4cb1c069)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
148 lines
3.3 KiB
YAML
148 lines
3.3 KiB
YAML
name: ci
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 10 * * *'
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'releases/v*'
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
default:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
-
|
|
name: Set up QEMU
|
|
id: qemu
|
|
uses: ./
|
|
-
|
|
name: Available platforms
|
|
run: echo ${{ steps.qemu.outputs.platforms }}
|
|
|
|
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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
-
|
|
name: Set up QEMU
|
|
id: qemu
|
|
uses: ./
|
|
with:
|
|
image: ${{ matrix.image }}
|
|
platforms: ${{ matrix.platforms }}
|
|
-
|
|
name: Available platforms
|
|
run: echo ${{ steps.qemu.outputs.platforms }}
|
|
|
|
error:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
-
|
|
name: Stop docker
|
|
run: |
|
|
sudo systemctl stop docker docker.socket
|
|
-
|
|
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
|
|
|
|
cache-image:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
cache:
|
|
- true
|
|
- false
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
-
|
|
name: Set up QEMU
|
|
id: qemu
|
|
uses: ./
|
|
with:
|
|
image: tonistiigi/binfmt:master
|
|
cache-image: ${{ matrix.cache }}
|
|
-
|
|
name: Available platforms
|
|
run: echo ${{ steps.qemu.outputs.platforms }}
|
|
|
|
version:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
image:
|
|
- tonistiigi/binfmt:master
|
|
- tonistiigi/binfmt:latest
|
|
- tonistiigi/binfmt:qemu-v7.0.0
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
-
|
|
name: Set up QEMU
|
|
uses: ./
|
|
with:
|
|
image: ${{ matrix.image }}
|
|
|
|
reset:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
-
|
|
name: Install multiarch/qemu-user-static
|
|
run: |
|
|
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes -c yes
|
|
-
|
|
name: Set up QEMU
|
|
id: qemu
|
|
uses: ./
|
|
with:
|
|
reset: true
|
|
-
|
|
name: Available platforms
|
|
run: echo ${{ steps.qemu.outputs.platforms }}
|