File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 66
77source $HELPER_SCRIPTS /os.sh
88
9- install_packages=(podman buildah skopeo)
9+ #
10+ # pin podman due to https://github.com/actions/runner-images/issues/7753
11+ # https://bugs.launchpad.net/ubuntu/+source/libpod/+bug/2024394
12+ #
13+ if isUbuntu20; then
14+ install_packages=(podman buildah skopeo)
15+ else
16+ install_packages=(podman=3.4.4+ds1-1ubuntu1 buildah skopeo)
17+ fi
1018
1119# Packages is available in the official Ubuntu upstream starting from Ubuntu 21
1220if isUbuntu20; then
Original file line number Diff line number Diff line change @@ -341,6 +341,12 @@ Describe "Containers" {
341341
342342 " $ContainerCommand -v" | Should - ReturnZeroExitCode
343343 }
344+
345+ # https://github.com/actions/runner-images/issues/7753
346+ It " podman networking" - TestCases " podman CNI plugins" {
347+ " podman network create -d bridge test-net && podman network ls" | Should -Not - MatchCommandOutput " Error"
348+ }
349+
344350}
345351
346352Describe " nvm" {
You can’t perform that action at this time.
0 commit comments