From 70155353a1cfd987f8701ad8fb79eb13b593339e Mon Sep 17 00:00:00 2001 From: Salvador Fuentes Date: Wed, 6 Jun 2018 10:42:10 -0500 Subject: [PATCH] CI: Install epel-repositories for centos yamllint and moreutils packages are available in the epel repositories from centos. Signed-off-by: Salvador Fuentes --- .ci/setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/setup.sh b/.ci/setup.sh index e0b444ac8e..3aae750805 100755 --- a/.ci/setup.sh +++ b/.ci/setup.sh @@ -20,6 +20,7 @@ install_bats if [ "$ID" == fedora ];then sudo -E dnf -y install automake yamllint coreutils moreutils elif [ "$ID" == centos ];then + sudo -E yum -y install epel-release sudo -E yum -y install automake yamllint coreutils moreutils elif [ "$ID" == ubuntu ];then sudo apt-get -qq update