From 2c0f83ffefc90293c98505143b1562203a71023f Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: May 23 2017 02:54:32 +0000 Subject: Jenkinsfile: take out rpmdeplint step for now This is intermittently failing due to problems with the Fedora download server. And we also shouldn't be pulling directly from dl.fedoraproject.org anyway, we should be using a mirror. The proper solution would be to have rpmdeplint use the mirrorlist or metalink. That's not supported currently, rpmdeplint RFE is: https://bugzilla.redhat.com/show_bug.cgi?id=1454525 --- diff --git a/Jenkinsfile b/Jenkinsfile index 792c1e3..92e872e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,30 +62,6 @@ node('fedora') { }, ) } - stage('Invoke Rpmdeplint') { - parallel ( - 'EPEL7': { - sh """ - rpmdeplint check \ - --repo rhel7,http://pulp.dist.prod.ext.phx2.redhat.com/content/dist/rhel/server/7/7Server/x86_64/os/ \ - --repo rhel7-optional,http://pulp.dist.prod.ext.phx2.redhat.com/content/dist/rhel/server/7/7Server/x86_64/optional/os/ \ - --repo rhel7-extras,http://pulp.dist.prod.ext.phx2.redhat.com/content/dist/rhel/server/7/7Server/x86_64/extras/os/ \ - --repo epel7,http://dl.fedoraproject.org/pub/epel/7/x86_64/ \ - --arch x86_64 \ - mock-result/el7/*.noarch.rpm - """ - }, - 'F25': { - sh """ - rpmdeplint check \ - --repo fedora,http://dl.fedoraproject.org/pub/fedora/linux/releases/25/Everything/x86_64/os/ \ - --repo updates,http://dl.fedoraproject.org/pub/fedora/linux/updates/25/x86_64/ \ - --arch x86_64 \ - mock-result/f25/*.noarch.rpm - """ - }, - ) - } } catch (e) { currentBuild.result = "FAILED" /* Can't use GIT_BRANCH because of this issue https://issues.jenkins-ci.org/browse/JENKINS-35230 */