s407604-mlworkshops2/Jenkinsfile

11 lines
155 B
Plaintext
Raw Normal View History

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