From ef619d618c5f793e574a1af96655311e68e312d2 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Fri, 27 Jan 2023 11:00:36 +0100 Subject: [PATCH] [Jenkins] Produce artifacts for the REST API test --- ci/Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index b2013fb79..180cfa490 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -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') {