s412146-mlworkshops/Jenkinsfile
Dawid Kubicki 4620a9361a dodano
2019-04-26 10:45:44 +02:00

10 lines
154 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}