Skip to content

Pin Konflux Dockerfile version label #2733

Pin Konflux Dockerfile version label

Pin Konflux Dockerfile version label #2733

Workflow file for this run

---
name: Multi-arch Builds
on:
pull_request:
permissions: {}
jobs:
check-multiarch:
name: Check the multi-arch builds
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- name: Set up QEMU (to support building on non-native architectures)
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130
- name: Build the multi-arch images
run: make multiarch-images
- name: Check that we actually build multi-arch images
run: bash -c '[ "$(echo package/*.tar)" != "package/*.tar" ]'