jenkinsfile scm

This commit is contained in:
s444417 2022-03-24 16:08:04 +01:00
parent cccd792840
commit aba8b4fc1e

12
Jenkinsfile vendored
View File

@ -1,8 +1,10 @@
node { pipeline {
stage('Hello') { agent any
echo "Hello" stages {
stage("Check out from version control") {
steps {
checkout scm
}
} }
stage('Goodbye') {
echo 'Time to say goodbye!'
} }
} }