From dbb5633f031a73c8037c8f5cb85443876a2cf171 Mon Sep 17 00:00:00 2001 From: Piyush Garg <19270240+piyush-garg@users.noreply.github.com> Date: Fri, 14 Dec 2018 09:58:48 +0530 Subject: [PATCH] Move from epel-testing to epel-release (#312) This patch is to use go library from epel-release in spite of epel-testing Fix related to https://github.com/openshiftio/openshift.io/issues/4618 --- cico_build_deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cico_build_deploy.sh b/cico_build_deploy.sh index f09a8a8..fb13e29 100644 --- a/cico_build_deploy.sh +++ b/cico_build_deploy.sh @@ -19,8 +19,8 @@ function setup_build_environment() { # We need to disable selinux for now, XXX /usr/sbin/setenforce 0 || : - yum install epel-release --enablerepo=extras -y - yum -y install --enablerepo=epel-testing docker make golang git + yum install epel-release -y + yum -y install --enablerepo=epel docker make golang git service docker start echo 'CICO: Build environment created.'