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

Add support for defining Declarative pipelines in shared libraries

    • Icon: New Feature New Feature
    • Resolution: Fixed
    • Icon: Major Major
    • None
    • jenkins 2.76 and 2.60.3, pipeline model definition plugin 1.1.9

      I have project https://github.com/patope/jenkins-pipeline-test having two branches: master and direct. On 'direct' pipeline is defined in Jenkinsfile file and on master Jenkinsfile uses shared pipeline.

      Shared pipeline is defined in https://github.com/patope/jenkins-pipeline-test-shared

      On branch 'direct' stage 'Build 2' is skipped correctly.

      On branch 'master' (using shared pipeline) stage 'Build 2' is executed. 

       

      pipeline {
        agent any
        stages {
          stage('Build 1') {
            when { expression { true } }
            steps {
              echo('1')
            }
          }
          stage('Build 2') {
            when { expression { false } }
            steps {
              echo('2')
            }
          }
          stage('Build 3') {
            when { expression { true } }
            steps {
              echo('3')
            }
          }
        }
      }
      

       

          [JENKINS-46547] Add support for defining Declarative pipelines in shared libraries

          Tomi Pakarinen created issue -
          Andrew Bayer made changes -
          Link New: This issue is duplicated by JENKINS-46558 [ JENKINS-46558 ]
          Andrew Bayer made changes -
          Status Original: Open [ 1 ] New: In Progress [ 3 ]
          Andrew Bayer made changes -
          Summary Original: Declarative pipeline 'when' conditions do not work when using shared pipeline New: Add support for defining Declarative pipelines in shared libraries
          Andrew Bayer made changes -
          Issue Type Original: Bug [ 1 ] New: New Feature [ 2 ]
          Andrew Bayer made changes -
          Link New: This issue is blocking JENKINS-42730 [ JENKINS-42730 ]
          Andrew Bayer made changes -
          Link New: This issue relates to JENKINS-42224 [ JENKINS-42224 ]
          Andrew Bayer made changes -
          Remote Link New: This issue links to "PR #193 (Web Link)" [ 17668 ]
          Andrew Bayer made changes -
          Status Original: In Progress [ 3 ] New: In Review [ 10005 ]
          Andrew Bayer made changes -
          Resolution New: Fixed [ 1 ]
          Status Original: In Review [ 10005 ] New: Resolved [ 5 ]
          Reinhold Füreder made changes -
          Attachment New: image-2017-09-26-08-37-46-034.png [ 39855 ]

            abayer Andrew Bayer
            patope Tomi Pakarinen
            Votes:
            2 Vote for this issue
            Watchers:
            10 Start watching this issue

              Created:
              Updated:
              Resolved: