ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 0797198 was 1483a16, checked in by Thierry Delisle <tdelisle@…>, 5 years ago |
Loading seems to work, usage doesn't
|
-
Property mode
set to
100644
|
File size:
482 bytes
|
Rev | Line | |
---|
[27b1ca1] | 1 | #!groovy
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 | // For skipping stages
|
---|
| 5 | import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
|
---|
| 6 |
|
---|
| 7 | // Global for the stage name
|
---|
| 8 | StageName = ''
|
---|
| 9 |
|
---|
| 10 | // wrapper around stage declaretion to be more verbose
|
---|
| 11 | // and allow showing as skipped in the UI
|
---|
[1483a16] | 12 | def BuildStage(String name, boolean run, Closure block ) {
|
---|
[27b1ca1] | 13 | StageName = name
|
---|
| 14 | echo " -------- ${StageName} -------- "
|
---|
| 15 | if(run) {
|
---|
| 16 | stage(name, block)
|
---|
| 17 | } else {
|
---|
| 18 | stage(name) { Utils.markStageSkippedForConditional(STAGE_NAME) }
|
---|
| 19 | }
|
---|
[8ca82de] | 20 | }
|
---|
| 21 |
|
---|
| 22 | return this;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.