mlworkshops/Jenkinsfile
Tomasz Ziętkiewicz b1fab2b436
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
fix
2019-04-26 02:10:29 +02:00

13 lines
182 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'make --version'
sh 'sclite --help || true'
}
}
}
}