File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,17 @@ node('docker') {
16
16
parallelSteps[" ${ javaVersion} -${ plugin} " ] = {
17
17
node(' docker' ) {
18
18
checkout scm
19
- docker. image(" openjdk:${ javaVersion} " ). inside {
20
- timeout(45 ) {
21
- sh " ./gradlew -Si ${ plugin} :check ${ plugin} :gradleTest ${ plugin} :assemble"
19
+ try {
20
+ docker. image(" openjdk:${ javaVersion} " ). inside {
21
+ timeout(45 ) {
22
+ sh " ./gradlew -Si ${ plugin} :check ${ plugin} :gradleTest ${ plugin} :assemble"
23
+ }
22
24
}
23
25
}
24
- junit ' **/build/test-results/**/*.xml'
25
- archiveArtifacts artifacts : ' **/build/libs/*.jar,build/*.zip' , fingerprint : true
26
+ finally {
27
+ junit ' **/build/test-results/**/*.xml'
28
+ archiveArtifacts artifacts : ' **/build/libs/*.jar,build/*.zip' , fingerprint : true
29
+ }
26
30
}
27
31
}
28
32
}
You can’t perform that action at this time.
0 commit comments