Add archiving artifacts
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good

This commit is contained in:
Tomasz Ziętkiewicz 2021-04-19 11:02:16 +02:00
parent 076f954e4f
commit 62129cfb9c

3
Jenkinsfile vendored
View File

@ -3,9 +3,10 @@ pipeline {
stages { stages {
stage('Test') { stage('Test') {
steps { steps {
sh 'make --version' sh 'make --version > make.log'
sh 'sclite --help || true' sh 'sclite --help || true'
echo "Experimenting!" echo "Experimenting!"
archiveArtifacts 'make.log'
} }
} }
} }