File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 11#! groovy
22
33pipeline {
4- agent any
4+ agent none
55 options {
66 disableConcurrentBuilds()
77 durabilityHint(' PERFORMANCE_OPTIMIZED' )
@@ -12,7 +12,7 @@ pipeline {
1212 stage( " Parallel Stage" ) {
1313 parallel {
1414 stage( " Build / Test - JDK11" ) {
15- agent { node { label ' linux' } }
15+ agent { node { label ' linux-light ' } }
1616 options { timeout( time : 120 , unit : ' MINUTES' ) }
1717 steps {
1818 mavenBuild( " jdk11" , " clean install javadoc:jar" )
@@ -25,12 +25,19 @@ pipeline {
2525 }
2626 }
2727 stage( " Build / Test - JDK17" ) {
28- agent { node { label ' linux' } }
28+ agent { node { label ' linux-light ' } }
2929 options { timeout( time : 120 , unit : ' MINUTES' ) }
3030 steps {
3131 mavenBuild( " jdk17" , " clean install javadoc:jar" )
3232 }
3333 }
34+ stage( " Build / Test - JDK21" ) {
35+ agent { node { label ' linux-light' } }
36+ options { timeout( time : 120 , unit : ' MINUTES' ) }
37+ steps {
38+ mavenBuild( " jdk21" , " clean install javadoc:jar" )
39+ }
40+ }
3441 }
3542 }
3643 }
You can’t perform that action at this time.
0 commit comments