s426274-mlworkshops/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

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