s437843-mlworkshops-new/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2020-04-17 19:19:57 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}