Compare commits

...

2 Commits

Author SHA1 Message Date
62129cfb9c Add archiving artifacts
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
2021-04-19 11:02:16 +02:00
076f954e4f Little experiment
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
2021-04-19 10:56:02 +02:00

4
Jenkinsfile vendored
View File

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