Skip to content

Commit 09fcec4

Browse files
committed
Fix Jenkins file settings
Change memory settings: 4Gi -> 6Gi Add error reporting options to mvn command Signed-off-by: Victor Rubezhny <[email protected]>
1 parent bb6a2b7 commit 09fcec4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ spec:
1919
command: [ "uid_entrypoint", "cat" ]
2020
resources:
2121
limits:
22-
memory: "4Gi"
22+
memory: "6Gi"
2323
cpu: "2000m"
2424
requests:
25-
memory: "4Gi"
25+
memory: "6Gi"
2626
cpu: "1000m"
2727
- name: jnlp
2828
image: 'eclipsecbi/jenkins-jnlp-agent'
@@ -58,7 +58,7 @@ spec:
5858
container('container') {
5959
withCredentials([string(credentialsId: "${GITHUB_API_CREDENTIALS_ID}", variable: 'GITHUB_API_TOKEN')]) {
6060
wrap([$class: 'Xvnc', useXauthority: true]) {
61-
sh 'mvn clean verify -B -Dtycho.disableP2Mirrors=true -Ddownload.cache.skip=true -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -PpackAndSign -Dmaven.repo.local=$WORKSPACE/.m2/repository -Dgithub.api.token="${GITHUB_API_TOKEN}"'
61+
sh 'mvn clean verify -B -fae -Dtycho.disableP2Mirrors=true -Ddownload.cache.skip=true -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -PpackAndSign -Dmaven.repo.local=$WORKSPACE/.m2/repository -Dgithub.api.token="${GITHUB_API_TOKEN}"'
6262
}
6363
}
6464
}

0 commit comments

Comments
 (0)