#51 Jenkinsfile: take out rpmdeplint step for now
Merged 6 years ago by dcallagh. Opened 6 years ago by dcallagh.
dcallagh/waiverdb rpmdeplint-too-flakey  into  master

file modified
-24
@@ -62,30 +62,6 @@ 

                  },

              )

          }

-         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 */

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

Pull-Request has been merged by dcallagh

6 years ago
Metadata