ium_s437622/Jenkinsfile

13 lines
211 B
Plaintext
Raw Normal View History

2021-03-24 12:59:23 +01:00
pipeline{
agent any
stages{
stage('Stage 1'){
steps{
echo 'Hello World!'
2021-03-24 13:35:53 +01:00
checkout: Check out from version control
sh: Shell Script
2021-03-24 12:59:23 +01:00
}
}
}
}