ium_434684/jenkinsfile.txt

12 lines
151 B
Plaintext
Raw Normal View History

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