ium_434742/Jenkinsfile

13 lines
152 B
Plaintext
Raw Normal View History

2021-03-23 20:31:17 +01:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}