Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3ddd3b4

Browse files
author
Jamie Curnow
committedMar 6, 2020
Re-order post testing steps
1 parent e2c4b32 commit 3ddd3b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ pipeline {
9393
}
9494
post {
9595
always {
96-
junit 'test/results/junit/*'
96+
// Dumps to analyze later
97+
sh 'mkdir -p debug'
98+
sh 'docker-compose logs fullstack | gzip > debug/docker_fullstack.log.gz'
9799
// Cypress videos and screenshot artifacts
98100
dir(path: 'test/results') {
99101
archiveArtifacts allowEmptyArchive: true, artifacts: '**/*', excludes: '**/*.xml'
100102
}
101-
// Dumps to analyze later
102-
sh 'mkdir -p debug'
103-
sh 'docker-compose logs fullstack | gzip > debug/docker_fullstack.log.gz'
103+
junit 'test/results/junit/*'
104104
}
105105
}
106106
}

0 commit comments

Comments
 (0)
Please sign in to comment.