[Jenkins] Produce artifacts for the REST API test

This commit is contained in:
Zahary Karadjov 2023-01-27 11:00:36 +01:00
parent 83f9745df1
commit ef619d618c
No known key found for this signature in database
GPG Key ID: C1F42EAFF38D570F
1 changed files with 6 additions and 0 deletions

6
ci/Jenkinsfile vendored
View File

@ -71,8 +71,14 @@ pipeline {
steps { timeout(5) {
sh 'make restapi-test'
} }
post { always {
sh 'tar cjf restapi-test.tar.gz resttest0_data/*.txt'
} }
}
}
post { always { timeout(5) {
archiveArtifacts(artifacts: '*.tar.gz', allowEmptyArchive: true)
} } }
}
stage('Finalizations') {