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' } } )