This is in order to prevent the e2e tests from failing with `reexec: Permission denied` errors when running on an Ubuntu 24.04 worker
33 lines
600 B
YAML
33 lines
600 B
YAML
name: Verify
|
|
|
|
on:
|
|
# Trigger the workflow on push or pull request on master branch
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up qemu
|
|
uses: docker/setup-qemu-action@v1
|
|
with:
|
|
platforms: all
|
|
|
|
- name: Print environment
|
|
run: |
|
|
uname -a
|
|
docker --version
|
|
|
|
- name: Build & test linux/amd64 image
|
|
run: make images test
|
|
|
|
- name: Build multi-arch images and binaries
|
|
run: make clean multiarch-tar
|