1
0
mirror of https://github.com/docker/setup-qemu-action.git synced 2025-07-19 13:40:09 +08:00
setup-qemu-action/.github/workflows/ci.yml
2025-02-18 13:17:17 +09:00

45 lines
759 B
YAML

name: ci
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
# on:
# schedule:
# - cron: '0 10 * * *'
# push:
# branches:
# - 'master'
# - 'releases/v*'
# tags:
# - 'v*'
# pull_request:
jobs:
default:
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
cache-image-dir:
- /tmp/cache
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
id: qemu
uses: ./
with:
cache-image-dir: ${{ matrix.cache-image-dir }}
-
name: Available platforms
run: echo ${{ steps.qemu.outputs.platforms }}