Tomasz Ziętkiewicz
62129cfb9c
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
15 lines
247 B
Groovy
15 lines
247 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
sh 'make --version > make.log'
|
|
sh 'sclite --help || true'
|
|
echo "Experimenting!"
|
|
archiveArtifacts 'make.log'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|