jenkinsfile scm

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

14
Jenkinsfile vendored
View File

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