Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-55740

Pipeline not work after update

XMLWordPrintable

      After updating the plugin Micro Focus Application Automation Tools up to version 5.6.2, we received an error in all the pipelines that completely blocked their work.
      After rollback to the old version of the plugin 5.4, the error disappeared.

      An example of a simple pipeline for which you received an error:

      pipeline {
          agent {
              label 'rhel7'
          }
          
          options {
              timeout(time: 60, unit: 'SECONDS')
              disableConcurrentBuilds()
              buildDiscarder(logRotator(artifactDaysToKeepStr: '7', artifactNumToKeepStr: '10',  daysToKeepStr: '7', numToKeepStr: '50'))
          }
          
          triggers {
            cron 'H/3 * * * *'
          }
          
          stages {
              
              stage('sleep') {
                  steps {
                      sleep 5
                  }
              }
          }
      }
      

       

            radislavb Radi Berkovich
            vnenashev Владислав Ненашев
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: