From bd08fdbe86196ed979f9ab3d89a1ab0fe3f0be7a Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Tue, 25 Aug 2020 10:31:40 +0200 Subject: [PATCH] Archive cypress videos and screenshots --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 38841ade0f..ba6dc73743 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,6 +76,8 @@ node('docker') { stage('Integration Test') { mvn 'verify -Pit -DskipUnitTests -pl :scm-webapp,:scm-it -Dmaven.test.failure.ignore=true' junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml' + archiveArtifacts allowEmptyArchive: true, artifacts: 'scm-ui/e2e-tests/cypress/videos/*.mp4' + archiveArtifacts allowEmptyArchive: true, artifacts: 'scm-ui/e2e-tests/cypress/screenshots/**/*.png' } } )