From 6240e32c40daec81935c5ea6dba6470efa4bf102 Mon Sep 17 00:00:00 2001 From: alexm Date: Fri, 14 Mar 2025 12:59:50 +0100 Subject: [PATCH] ci: refs #6695 allow empty archive for Cypress screenshots in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b75a1b4dc..7f4144a54 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -133,7 +133,7 @@ pipeline { post { always { sh "docker-compose ${env.COMPOSE_PARAMS} down -v" - archiveArtifacts artifacts: 'test/cypress/screenshots/**/*' + archiveArtifacts artifacts: 'test/cypress/screenshots/**/*', allowEmptyArchive: true junit( testResults: 'junit/e2e-*.xml', allowEmptyResults: true