Skip to content

Commit

Permalink
chore(ci): don't run podman tests on github arm64 runner.
Browse files Browse the repository at this point in the history
Podman is not shipped in the beta runner, neither dbus.

Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP committed Jan 17, 2025
1 parent 1d436d3 commit 1e74d19
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:
- name: Build go-worker executable
run: make -C go-worker exe

# Podman is not shipped by beta github arm64 runners:
# https://github.com/actions/partner-runner-images/blob/main/images/arm-ubuntu-22-image.md#not-installed-software
- name: Start podman user unit (x64 only)
if: matrix.arch == 'amd64'
run: systemctl --user start podman

- name: Run tests
run: |
systemctl --user start podman
make test
run: make test

0 comments on commit 1e74d19

Please sign in to comment.