Tomasz Ziętkiewicz
b1fab2b436
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
13 lines
182 B
Groovy
13 lines
182 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
sh 'make --version'
|
|
sh 'sclite --help || true'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|