mlworkshops/Jenkinsfile
Tomasz Ziętkiewicz 076f954e4f
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
Little experiment
2021-04-19 10:56:02 +02:00

14 lines
206 B
Groovy

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