From b1dd4784adef861eb074ed80730cf0eaf3f3894a Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: Mar 02 2018 04:17:36 +0000 Subject: Jenkinsfile: mock wants dnf-utils, apparently https://bugzilla.redhat.com/show_bug.cgi?id=1528272 🤷 --- diff --git a/Jenkinsfile b/Jenkinsfile index 4c31afc..2f2e749 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,6 +9,8 @@ node('fedora') { checkout scm sh 'sudo dnf -y builddep waiverdb.spec' sh 'sudo dnf -y install python2-flake8 python2-pylint python2-sphinx python-sphinxcontrib-httpdomain' + /* Needed for mock EPEL7 builds: https://bugzilla.redhat.com/show_bug.cgi?id=1528272 */ + sh 'sudo dnf -y install dnf-utils' stage('Invoke Flake8') { sh 'flake8' }