s407254-mlworkshops/Jenkinsfile

11 lines
153 B
Plaintext
Raw Normal View History

2019-04-26 10:36:29 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}