Updates jenkinsfile

Removes parallel execution of stages "test" and "integration test"
This commit is contained in:
CloudoguNguyen 2019-02-04 14:39:34 +01:00
parent c98cfbc6b4
commit 827a7ff7bd

24
Jenkinsfile vendored
View file

@ -28,18 +28,16 @@ node {
} }
String jacoco = "org.jacoco:jacoco-maven-plugin:0.8.1" String jacoco = "org.jacoco:jacoco-maven-plugin:0.8.1"
parallel(
test: { stage('Test') {
stage('Test') { mvn "${jacoco}:prepare-agent test ${jacoco}:report"
mvn "${jacoco}:prepare-agent test ${jacoco}:report" }
}
},
integrationTest: { stage('Integration Test') {
stage('Integration Test') { mvn "${jacoco}:prepare-agent-integration failsafe:integration-test failsafe:verify ${jacoco}:report-integration"
mvn "${jacoco}:prepare-agent-integration failsafe:integration-test failsafe:verify ${jacoco}:report-integration" }
}
}
)
stage('Static Code Analysis') { stage('Static Code Analysis') {
@ -49,7 +47,7 @@ node {
} }
stage('Deploy') { stage('Deploy') {
mvn.useDeploymentRepository([id: cesFqdn, url: "${cesUrl}/nexus", credentialsId: credentialsId, type: 'Nexus3']) mvn.useDeploymentRepository([id: cesFqdn, url: "${cesUrl}/nexus", credentialsId: credentialsId, type: 'Nexus3'])
mvn.deployToNexusRepository('-Dmaven.javadoc.failOnError=false') mvn.deployToNexusRepository('-Dmaven.javadoc.failOnError=false')
} }