ium_434684/Jenkinsfile

13 lines
154 B
Plaintext
Raw Normal View History

2021-03-22 12:48:56 +01:00
pipeline {
agent any
2021-03-22 12:55:30 +01:00
2021-03-22 12:48:56 +01:00
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}