Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05de87b

Browse files
committedApr 27, 2021
Force latest install of podman to fix currently broken e2e tests
Signed-off-by: Joe Lanford <[email protected]>
1 parent 0a0282b commit 05de87b

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed
 

‎.github/workflows/test.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v2
1515
- run: |
16-
sudo apt-get -y update
16+
. /etc/os-release
17+
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
18+
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key | sudo apt-key add -
19+
sudo apt-get update
1720
sudo apt-get -y install conntrack podman
1821
podman version
1922
- run: |
@@ -34,7 +37,11 @@ jobs:
3437
steps:
3538
- uses: actions/checkout@v2
3639
- run: |
37-
sudo apt-get -y update
40+
. /etc/os-release
41+
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
42+
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key | sudo apt-key add -
43+
sudo apt-get update
44+
sudo apt-get -y install conntrack podman
3845
podman version
3946
- run: |
4047
"${GITHUB_WORKSPACE}/scripts/start_registry.sh" kind-registry

0 commit comments

Comments
 (0)
Please sign in to comment.