From 9cff43fe884fef0d988d22801b7a2cc995c51609 Mon Sep 17 00:00:00 2001 From: Bruno Goncalves Date: Mar 29 2018 11:59:39 +0000 Subject: install dependencies for test on Dockerfile --- diff --git a/ci/Dockerfile b/ci/Dockerfile index 9d67dc9..18488a5 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -3,7 +3,8 @@ LABEL maintainer "Andrei Stepanov " ENV PARAM_WDIR="/var" RUN rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm RUN sed -i -e '/\[main\]/aip_resolve=4' /etc/yum.conf -RUN yum install -y copr-cli nss_wrapper fedora-packager wget rpmdevtools; \ +RUN yum install -y copr-cli nss_wrapper fedora-packager wget rpmdevtools \ + gcc python-devel redhat-rpm-config python-virtualenvl; \ yum clean all; \ rm -rf /var/cache/yum WORKDIR "$PARAM_WDIR" diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 16e6667..c487454 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -98,8 +98,6 @@ pipeline { steps { sh ''' set -efux - # Install test dependencies - yum install -y gcc python-devel redhat-rpm-config python-virtualenv ./tests/python-syntax.sh ''' }