s442673-mlworkshops/Jenkinsfile

12 lines
156 B
Plaintext
Raw Normal View History

2019-04-26 13:17:25 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
2019-04-26 13:12:07 +02:00
}