Add JUnit test report collection and artifact archive
All checks were successful
Core Repos/Homepage/pipeline/head This commit looks good
Core Repos/Homepage/pipeline/pr-master This commit looks good

This commit is contained in:
Cameron Cordes
2020-04-20 21:23:54 -04:00
parent 12d05478eb
commit cf3c8cd9f4

6
Jenkinsfile vendored
View File

@@ -28,5 +28,11 @@ pipeline {
} }
} }
} }
post {
always {
archiveArtifacts artifacts: 'dist/Homepage/**', fingerprint: true
junit 'src/junit-report/**/*.xml'
}
}
} }