diff --git a/Jenkinsfile b/Jenkinsfile index d1511c9136efec0fd8a4e987bf57712fad262fbc..38814362a8001c46cf54342b932346dadf8a486b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,16 +34,16 @@ pipeline { sh 'npm run ci-build' } - sh 'npm run ci-test' +// sh 'npm run ci-test' } } } } - post { - always{ - junit testResults: 'goofy-client/test-report.xml', skipPublishingChecks: true - } - } + // post { + // always{ + // junit testResults: 'goofy-client/test-report.xml', skipPublishingChecks: true + // } + // } } stage('Server') { @@ -54,7 +54,7 @@ pipeline { container("maven-11"){ configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { sh 'mvn --version' - sh 'mvn -s $MAVEN_SETTINGS -pl -goofy-client clean install spring-boot:build-image -Dspring-boot.build-image.imageName=docker.ozg-sh.de/goofy:build-latest' + sh 'mvn -s $MAVEN_SETTINGS -pl -goofy-client clean install spring-boot:build-image -Dmaven.wagon.http.retryHandler.count=3' } } }