Skip to content
Snippets Groups Projects
Commit 1d9ec337 authored by OZGCloud's avatar OZGCloud
Browse files

test grpc build in seperate stage

parent 0a3ba2c0
No related branches found
No related tags found
No related merge requests found
...@@ -54,6 +54,21 @@ pipeline { ...@@ -54,6 +54,21 @@ pipeline {
} }
} }
stage('Build UserManager GRPC') {
steps {
script {
FAILED_STAGE=env.STAGE_NAME
}
container("maven-17"){
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh './user-manager-interface/mvn -s $MAVEN_SETTINGS clean deploy -Dmaven.wagon.http.retryHandler.count=3'
junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true
}
}
}
}
stage('Build UserManager') { stage('Build UserManager') {
steps { steps {
script { script {
...@@ -61,7 +76,7 @@ pipeline { ...@@ -61,7 +76,7 @@ pipeline {
} }
container("quarkus-22"){ container("quarkus-22"){
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh './mvnw -s $MAVEN_SETTINGS clean deploy -Dmaven.wagon.http.retryHandler.count=3' sh './user-manager/mvnw -s $MAVEN_SETTINGS clean deploy -Dmaven.wagon.http.retryHandler.count=3'
junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment