Files
podman-static/.github/workflows/verify.yml
Max Goltzsche 87ca4f4632 chore(workflow): pin worker image to ubuntu 22.04
This is in order to prevent the e2e tests from failing with `reexec: Permission denied` errors when running on an Ubuntu 24.04 worker
2025-02-07 03:21:13 +01:00

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