Files
jenkinsdeclarativepipelines/06-basicWhen.groovy
Guillem Hernández Sola 8f2d4e6205 Added all commands
2017-04-03 15:26:42 +02:00

23 lines
418 B
Groovy

pipeline {
agent any
stages {
stage("One") {
steps {
echo "Hello"
}
}
stage("Two") {
when {
echo "Should I run?"
return true
}
steps {
script {
echo "World"
echo "Heal it"
}
}
}
}
}