-
Improvement
-
Resolution: Duplicate
-
Minor
-
None
Currently, we have a lot of reusable steps we use in our Jenkinsfiles like so:
pipeline { stages { stage('Build') { steps { reusableBuild() } } stage('Test') { steps { reusableTest() } } } }
I feel it is very repetitive to always replicate the stage definition - the way I look at this, these should be reusable as well. A pipeline would then simply consist of reusable, composable stages:
pipeline { stages { reusableBuild() reusableTest() stage 'Something individual' { steps { echo 'only for this project' } } } }
Maybe this is already possible, but at the moment I have no idea how to define reusable stages in a shared library - any hint would be very much appreciated. I would also be willing to provide a PR, if only I had an idea which code to touch
- duplicates
-
JENKINS-49135 Support for reusable sharing Declarative directives
-
- Open
-
[JENKINS-50548] Shared Library should be allowed to declare reusable stages
Description |
Original:
Currently, we have a lot of reusable steps we use in our Jenkinsfiles like so: {code:java} pipeline { stages { stage('Build') { steps { reusableBuild() } } stage('Test') { steps { reusableTest() } } } }{code} I feel it is very repetitive to always replicate the stage definition - the way I look at this, these should be reusable as well. A pipeline would then simply consist of reusable, composable stages: {code:java} pipeline { stages { reusableBuild() reusableTest() stage 'Something individual' { echo 'only for this project' } } }{code} Maybe this is already possible, but at the moment I have no idea how to define reusable stages in a shared library - any hint would be very much appreciated. I would also be willing to provide a PR, if only I had an idea which code to touch ;) |
New:
Currently, we have a lot of reusable steps we use in our Jenkinsfiles like so: {code:java} pipeline { stages { stage('Build') { steps { reusableBuild() } } stage('Test') { steps { reusableTest() } } } }{code} I feel it is very repetitive to always replicate the stage definition - the way I look at this, these should be reusable as well. A pipeline would then simply consist of reusable, composable stages: {code:java} pipeline { stages { reusableBuild() reusableTest() stage 'Something individual' { steps { echo 'only for this project' } } } }{code} Maybe this is already possible, but at the moment I have no idea how to define reusable stages in a shared library - any hint would be very much appreciated. I would also be willing to provide a PR, if only I had an idea which code to touch ;) |
Component/s | New: pipeline-model-definition-plugin [ 21706 ] | |
Component/s | Original: pipeline [ 21692 ] |
Link | New: This issue duplicates JENKINS-49135 [ JENKINS-49135 ] |
Resolution | New: Duplicate [ 3 ] | |
Status | Original: Open [ 1 ] | New: Fixed but Unreleased [ 10203 ] |