File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,10 @@ stage('Build') {
124
124
state[buildEnv. tag][' additionalOptions' ] = state[buildEnv. tag][' additionalOptions' ] +
125
125
" -Ptest.jdk.launcher.args='${ buildEnv.testJdkLauncherArgs} '"
126
126
}
127
+ if ( buildEnv. node ) {
128
+ state[buildEnv. tag][' additionalOptions' ] = state[buildEnv. tag][' additionalOptions' ] +
129
+ " -Pci.node=${ buildEnv.node} "
130
+ }
127
131
state[buildEnv. tag][' containerName' ] = null ;
128
132
stage(' Checkout' ) {
129
133
checkout scm
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ gradleEnterprise {
50
50
tag " JOB ${ System.getenv('JOB_NAME')} "
51
51
}
52
52
tag " JDK ${ JavaVersion.current().toString()} "
53
- value ' database' , rootProject. hasProperty( ' db' ) ? rootProject. properties. db : ' h2'
53
+ String db = rootProject. hasProperty( ' db' ) ? rootProject. properties. db : ' h2'
54
+ tag db
55
+ value ' database' , db
56
+ if ( rootProject. hasProperty( ' ci.node' ) ) {
57
+ tag rootProject. property(' ci.node' )
58
+ }
54
59
}
55
60
}
You can’t perform that action at this time.
0 commit comments