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

catchError with timeout : the build result is always ABORTED whatever the configured buildResult

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Major Major
    • None
    • Jenkins 2.263.3 on Debian Buster and opnJdk8
      pipeline-basic-steps 2.23
      pipeline-model-definition 1.8.3

      Whatever the way catchError is configured, a timeout block ends the build as ABORTED if the timeout fires.
      Here is a test case job to reproduce this :

       

      @Library("EvlinkCiLib@EVL-1262-ci-install-kw-and-cross-compilation-build-chain-for-lms") _pipeline {
          agent { label 'buster' }
          environment {
              pipeName="TimedOut Job"
              projectDir='timeout'
          }
          stages {
              stage('timedOut node NOK'){
                  steps {
                      timeout(time: 10, unit: 'SECONDS') {
                          catchError(catchInterruptions: false,message: 'Cannot contact slave',buildResult: 'SUCCESS', stageResult: 'UNSTABLE') {
                              // This node exists but is not connected
                              node(label: 'rpi') {
                                  sh('uname -a')
                              }
                          }
                      }
                  }
              }
              stage('timedOut node OK'){
                  // The node 'buster' is OK
                  steps {
                      catchError(catchInterruptions: false,message: 'Cannot contact slave',buildResult: 'SUCCESS', stageResult: 'UNSTABLE') {
                          timeout(time: 10, unit: 'SECONDS') {
                              node(label: 'buster') {
                                  sh('uname -a')
                              }
                          }
                      }
                  }
              }
          }
      }
      

       

            Unassigned Unassigned
            jielpe_fr38 Jean-Luc Pé
            Votes:
            2 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: