s416267-mlworkshops/Jenkinsfile

11 lines
133 B
Plaintext
Raw Normal View History

2020-04-03 11:22:15 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}