s421818-mlworkshops/Jenkinsfile1

10 lines
155 B
Plaintext
Raw Normal View History

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