Tomasz Ziętkiewicz
076f954e4f
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
14 lines
206 B
Groovy
14 lines
206 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
sh 'make --version'
|
|
sh 'sclite --help || true'
|
|
echo "Experimenting!"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|