From 96b0b7e1c8dc860ae5bd896e4b5538cde16f0f2b Mon Sep 17 00:00:00 2001 From: Piyush Garg Date: Tue, 4 Dec 2018 19:16:56 +0530 Subject: [PATCH] Fix CI not able to install golang --- cico_build_deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cico_build_deploy.sh b/cico_build_deploy.sh index bcb625a..ce32a11 100644 --- a/cico_build_deploy.sh +++ b/cico_build_deploy.sh @@ -19,7 +19,8 @@ function setup_build_environment() { # We need to disable selinux for now, XXX /usr/sbin/setenforce 0 || : - yum -y install docker make golang git + yum install epel-release --enablerepo=extras -y + yum -y install --enablerepo=epel-testing docker make golang git service docker start echo 'CICO: Build environment created.'