From 0aee73d612985a5a474cefaaab44baf5dd97bd7b Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Wed, 7 Apr 2021 11:21:21 -0700 Subject: [PATCH] skip trying to install docker in CI --- hack/jenkins/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/jenkins/common.sh b/hack/jenkins/common.sh index feb09d8a16..241a14efc4 100755 --- a/hack/jenkins/common.sh +++ b/hack/jenkins/common.sh @@ -41,8 +41,8 @@ fi # installing golang so we could do go get for gopogh sudo ./installers/check_install_golang.sh "1.16" "/usr/local" || true -# install docker and kubectl if not present -sudo ./installers/check_install_docker.sh +# install docker and kubectl if not present, currently skipping since it fails +#sudo ./installers/check_install_docker.sh # let's just clean all docker artifacts up docker system prune --force --volumes || true