Skip to content

Remove extensions and build using all architectures for PRs #16

Remove extensions and build using all architectures for PRs

Remove extensions and build using all architectures for PRs #16

Workflow file for this run

name: PR workflow
on:
pull_request:
jobs:
common:
uses: ./.github/workflows/common.yml
test:
needs: common
strategy: ${{ fromJson(needs.common.outputs.strategy) }}
name: ${{ matrix.name }}
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
uses: docker/build-push-action@v5
with:
context: ${{ matrix.dir }}
platforms: ${{ matrix.arches }}
tags: ${{ matrix.tags }}