Archive cypress videos and screenshots

This commit is contained in:
Sebastian Sdorra
2020-08-25 10:31:40 +02:00
parent 4626d56bb7
commit bd08fdbe86

2
Jenkinsfile vendored
View File

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