s426086-mlworkshops/Jenkinsfile

12 lines
134 B
Plaintext
Raw Normal View History

2020-04-18 17:08:53 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}