s416239-mlworkshops/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2020-04-03 14:12:27 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}