Compare commits

..

No commits in common. "simple-pipeline" and "master" have entirely different histories.

View file

@ -5,7 +5,7 @@ pipeline {
}
agent {
node {
label 'master'
// TODO: run this simple pipeline on jenkins 'master' node
}
}
@ -23,20 +23,9 @@ pipeline {
}
}
stage('stage 2') {
steps {
sh 'hello from stage 2!!'
}
}
// TODO: ADD A STAGE THAT SAYS HELLO
stage('manual approval') {
steps {
timeout(time: 60, unit: 'MINUTES'){
input message: "Move to stage 3 ?"
}
}
}
// TODO: ADD AN APPROVAL STAGE
stage('stage 3') {
steps {