s421818-mlworkshops/Jenkinsfile
2020-04-03 11:33:46 +02:00

11 lines
200 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
checkout: Check out from version control
}
}
}
}