We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c4b32 commit 3ddd3b4Copy full SHA for 3ddd3b4
Jenkinsfile
@@ -93,14 +93,14 @@ pipeline {
93
}
94
post {
95
always {
96
- junit 'test/results/junit/*'
+ // Dumps to analyze later
97
+ sh 'mkdir -p debug'
98
+ sh 'docker-compose logs fullstack | gzip > debug/docker_fullstack.log.gz'
99
// Cypress videos and screenshot artifacts
100
dir(path: 'test/results') {
101
archiveArtifacts allowEmptyArchive: true, artifacts: '**/*', excludes: '**/*.xml'
102
- // Dumps to analyze later
- sh 'mkdir -p debug'
103
- sh 'docker-compose logs fullstack | gzip > debug/docker_fullstack.log.gz'
+ junit 'test/results/junit/*'
104
105
106
0 commit comments