Automated backport of #3121: Add retry mechanism to CNI interface discovery on kube-proxy #2341
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: 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@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up QEMU (to support building on non-native architectures) | |
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf | |
- 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" ]' |