File tree Expand file tree Collapse file tree 1 file changed +0
-38
lines changed Expand file tree Collapse file tree 1 file changed +0
-38
lines changed Original file line number Diff line number Diff line change 32
32
}
33
33
}
34
34
},
35
- jdk9 : {
36
- stage(' JDK 9' ) {
37
- timeout(time : 45 , unit : ' MINUTES' ) {
38
- node(' linux' ) {
39
- checkout scm
40
- sh " git clean -dfx"
41
- try {
42
- withEnv([" JAVA_HOME=${ tool 'jdk9'} " ]) {
43
- sh ' ./gradlew clean test --no-daemon --stacktrace'
44
- }
45
- }
46
- catch (e) {
47
- currentBuild. result = ' FAILED: jdk9'
48
- throw e
49
- }
50
- }
51
- }
52
- }
53
- },
54
- jdk10 : {
55
- stage(' JDK 10' ) {
56
- timeout(time : 45 , unit : ' MINUTES' ) {
57
- node(' linux' ) {
58
- checkout scm
59
- sh " git clean -dfx"
60
- try {
61
- withEnv([" JAVA_HOME=${ tool 'jdk10'} " ]) {
62
- sh ' ./gradlew clean test --no-daemon --stacktrace'
63
- }
64
- }
65
- catch (e) {
66
- currentBuild. result = ' FAILED: jdk10'
67
- throw e
68
- }
69
- }
70
- }
71
- }
72
- },
73
35
jdk11 : {
74
36
stage(' JDK 11' ) {
75
37
timeout(time : 45 , unit : ' MINUTES' ) {
You can’t perform that action at this time.
0 commit comments