From 01ca021098a1a78eb00e5c8694046a175c171082 Mon Sep 17 00:00:00 2001 From: Aleksandar Todorov Date: Fri, 19 Feb 2021 09:57:25 +0200 Subject: [PATCH] schutzbot: pin podman version to workaround podman bug. Refs #1237 --- schutzbot/deploy.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/schutzbot/deploy.sh b/schutzbot/deploy.sh index efd03ce19b..9083d34ab3 100755 --- a/schutzbot/deploy.sh +++ b/schutzbot/deploy.sh @@ -94,4 +94,8 @@ fi greenprint "Installing test packages for ${PROJECT}" # Note: installing only -tests to catch missing dependencies -retry sudo dnf -y install "${PROJECT}-tests" +if [[ $ID == rhel ]]; then + retry sudo dnf -y install osbuild-composer-tests podman-3.0.0-0.38rc2 +else + retry sudo dnf -y install "${PROJECT}-tests" +fi