ium_s437622/Jenkinsfile

11 lines
149 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!'
}
}
}
}