Skip to content

Commit

Permalink
Temporarily downgrade Podman on GitHub to fix CI failures for Podman …
Browse files Browse the repository at this point in the history
…tests (#6928)

* WIP: check Podman version

* wip: try the workaround suggested in [1]

There seems to be an issue with Podman (libpod specifically) on Ubuntu 22.04,
which might affect networking.
See [1] and [2]

[1] actions/runner-images#7753
[2] https://bugs.launchpad.net/ubuntu/+source/libpod/+bug/2024394
  • Loading branch information
rm3l authored Jun 23, 2023
1 parent b38d31f commit d9d868f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/podman-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ jobs:
runs-on: ubuntu-latest
steps:

- run: cat /etc/os-release || true

- run: podman info

# TODO(rm3l): workaround for https://github.com/actions/runner-images/issues/7753 (caused by https://bugs.launchpad.net/ubuntu/+source/libpod/+bug/2024394).
# Remove this when this issue is fixed and available in the ubuntu runner image
- run: |
sudo apt install podman=3.4.4+ds1-1ubuntu1 --allow-downgrades
podman info
- name: Checkout
uses: actions/checkout@v3

Expand Down

0 comments on commit d9d868f

Please sign in to comment.