Add integration test stage in CI build

This commit is contained in:
René Pfeuffer
2018-08-06 16:37:22 +02:00
parent 04999bba86
commit a33c524611

4
Jenkinsfile vendored
View File

@@ -34,6 +34,10 @@ node() { // No specific label
mvn 'test -Dsonia.scm.test.skip.hg=true -Dmaven.test.failure.ignore=true'
}
stage('Integration Test') {
mvn 'verify -Pit -pl :scm-webapp,:scm-it'
}
stage('SonarQube') {
analyzeWith(mvn)