display QEMU version installed on the runner #1208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: '0 10 * * *' | |
push: | |
branches: | |
- 'master' | |
- 'releases/v*' | |
tags: | |
- 'v*' | |
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 | |
uses: actions/checkout@v4 | |
- | |
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@v4 | |
- | |
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 | |
version: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- ubuntu-22.04 | |
- ubuntu-20.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: QEMU bins | |
run: | | |
find / -type f -name "qemu*" -executable 2>/dev/null || true | |
- | |
name: Set up QEMU | |
uses: ./ | |
- | |
name: Install QEMU | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- | |
name: Set up QEMU | |
uses: ./ |