From 555d28e74474b4f7d940866a45390af40502265b Mon Sep 17 00:00:00 2001 From: Pierre Nicolas <pierre.nicolas@savoirfairelinux.com> Date: Tue, 4 Jun 2024 07:33:29 -0400 Subject: [PATCH] tests: download tests artifact Change-Id: Id889836921bc679edb286286707ef1b6cf5d5d14 --- ci/Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 52ceaac9b..2d631374e 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -110,6 +110,10 @@ pipeline { sh 'su jenkins -c "cd /jami-client-android && ./compile.sh --test"' sh 'cd /jami-client-android/ci && ./start_emu_headless.sh' sh 'su jenkins -c "cd /jami-client-android/ci && ./jami_test.sh"' + + // Archive tests output save it as Jenkins artifact + sh 'cd /jami-client-android/ci/spoon-output && zip -r ../ui-test-output.zip *' + archiveArtifacts artifacts: 'ci/ui-test-output.zip', allowEmptyArchive: false } } } -- GitLab