We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
jdk11
retry
1 parent 685fa8b commit cd43a3cCopy full SHA for cd43a3c
Jenkinsfile
@@ -42,12 +42,14 @@ stage('Tests') {
42
}
43
44
branches['jdk11'] = {
45
- node('maven-11') {
46
- timeout(60) {
47
- checkout scm
48
- sh 'mvn -B -ntp -Dset.changelist -Dmaven.test.failure.ignore clean install'
49
- infra.prepareToPublishIncrementals()
50
- junit 'target/surefire-reports/*.xml'
+ retry(count: 3, conditions: [kubernetesAgent(handleNonKubernetes: true), nonresumable()]) {
+ node('maven-11') {
+ timeout(60) {
+ checkout scm
+ sh 'mvn -B -ntp -Dset.changelist -Dmaven.test.failure.ignore clean install'
+ infra.prepareToPublishIncrementals()
51
+ junit 'target/surefire-reports/*.xml'
52
+ }
53
54
55
0 commit comments