s416138-mlworkshops/Jenkinsfile

11 lines
155 B
Plaintext
Raw Normal View History

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