mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-06 04:01:05 +09:00
Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
40 lines
935 B
YAML
40 lines
935 B
YAML
name: docker-dryrun
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
files-changed:
|
|
uses: ./.github/workflows/files-changed.yml
|
|
permissions:
|
|
contents: read
|
|
|
|
# dryrun build is slow, so run them in parallel per-platform
|
|
container-amd64:
|
|
if: needs.files-changed.outputs.docker == 'true'
|
|
needs: [files-changed]
|
|
uses: ./.github/workflows/part-docker-dryrun.yml
|
|
with:
|
|
platform: linux/amd64
|
|
|
|
container-arm64:
|
|
if: needs.files-changed.outputs.docker == 'true'
|
|
needs: [files-changed]
|
|
uses: ./.github/workflows/part-docker-dryrun.yml
|
|
with:
|
|
platform: linux/arm64
|
|
|
|
container-riscv64:
|
|
if: needs.files-changed.outputs.docker == 'true'
|
|
needs: [files-changed]
|
|
uses: ./.github/workflows/part-docker-dryrun.yml
|
|
with:
|
|
platform: linux/riscv64
|