Skip to content

Commit 512bf7a

Browse files
committed
Migrate injection scripts to use gradle.startParameter.systemPropertyArgs
1 parent 64f48ec commit 512bf7a

File tree

5 files changed

+42
-10
lines changed

5 files changed

+42
-10
lines changed

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ val copyGradleScripts by tasks.registering(Sync::class) {
167167
from(develocityInjectionResolvable) {
168168
rename { "develocity-injection.gradle" }
169169
into("lib/scripts/gradle-init-scripts")
170+
filter(TransformDevelocityInjectionScript())
170171
}
171172
from(layout.projectDirectory.dir("components/scripts")) {
172173
include("README.md")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Transforms usages of 'System.getProperty' in the Develocity injection script
3+
* to 'gradle.startParameter'. This is required because 'System.getProperty'
4+
* cannot be used to reliably read system properties from init scripts in Gradle
5+
* 7.0.2 and earlier.
6+
*/
7+
class TransformDevelocityInjectionScript : (String) -> String {
8+
9+
override fun invoke(content: String): String {
10+
return content
11+
.replace("static getInputParam(String name) {", "def getInputParam = { String name ->")
12+
.replace("System.getProperty(name)", "gradle.startParameter.systemPropertiesArgs[name]")
13+
14+
// The 'getInputParam' method is no longer static so it must be redefined within the
15+
// 'enableDevelocityInjection' method
16+
.replace("void enableDevelocityInjection() {", """
17+
void enableDevelocityInjection() {
18+
def getInputParam = { String name ->
19+
def ENV_VAR_PREFIX = ''
20+
def envVarName = ENV_VAR_PREFIX + name.toUpperCase().replace('.', '_').replace('-', '_')
21+
return gradle.startParameter.systemPropertiesArgs[name] ?: System.getenv(envVarName)
22+
}
23+
24+
""".trimIndent())
25+
}
26+
27+
}

components/scripts/gradle/gradle-init-scripts/configure-build-validation.gradle

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import org.gradle.util.GradleVersion
22
import java.nio.charset.StandardCharsets
33

4-
static getInputParam(String name) {
4+
def getInputParam = { String name ->
55
def ENV_VAR_PREFIX = ''
66
def envVarName = ENV_VAR_PREFIX + name.toUpperCase().replace('.', '_').replace('-', '_')
7-
return System.getProperty(name) ?: System.getenv(envVarName)
7+
return gradle.startParameter.systemPropertiesArgs[name] ?: System.getenv(envVarName)
88
}
99

1010
def isTopLevelBuild = !gradle.parent
@@ -34,12 +34,16 @@ def registerBuildScanActions = { def buildScan, def rootProjectName ->
3434
// the configuration of the build, and given its value changes between consecutive build invocations
3535
// it would always invalidate the configuration cache model from the first build invocation
3636
// in the second build invocation
37-
def getInputParam = { String name ->
38-
def ENV_VAR_PREFIX = ''
39-
def envVarName = ENV_VAR_PREFIX + name.toUpperCase().replace('.', '_').replace('-', '_')
37+
//
38+
// System.getProperty can be used here because system properties can be read at *execution* time
39+
// safely for Gradle 7.0.2 and earlier, and we must do so anyway because referencing a Gradle
40+
// script object, e.g., 'gradle.startParameter', from a Groovy closure is not compatible with
41+
// configuration cache
42+
def getRunNumInputParam = { String name ->
43+
def envVarName = name.toUpperCase().replace('.', '_').replace('-', '_')
4044
return System.getProperty(name) ?: System.getenv(envVarName)
4145
}
42-
def runNum = getInputParam('develocity.build-validation.runNum')
46+
def runNum = getRunNumInputParam('develocity.build-validation.runNum')
4347
def buildScanUri = publishedBuildScan.buildScanUri
4448
def buildScanId = publishedBuildScan.buildScanId
4549
def port = (buildScanUri.port != -1) ? ':' + buildScanUri.port : ''

components/scripts/gradle/gradle-init-scripts/configure-local-build-caching.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
static getInputParam(String name) {
1+
def getInputParam = { String name ->
22
def ENV_VAR_PREFIX = ''
33
def envVarName = ENV_VAR_PREFIX + name.toUpperCase().replace('.', '_').replace('-', '_')
4-
return System.getProperty(name) ?: System.getenv(envVarName)
4+
return gradle.startParameter.systemPropertiesArgs[name] ?: System.getenv(envVarName)
55
}
66

77
def expDir = getInputParam('develocity.build-validation.expDir')

components/scripts/gradle/gradle-init-scripts/configure-remote-build-caching.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
static getInputParam(String name) {
1+
def getInputParam = { String name ->
22
def ENV_VAR_PREFIX = ''
33
def envVarName = ENV_VAR_PREFIX + name.toUpperCase().replace('.', '_').replace('-', '_')
4-
return System.getProperty(name) ?: System.getenv(envVarName)
4+
return gradle.startParameter.systemPropertiesArgs[name] ?: System.getenv(envVarName)
55
}
66

77
def remoteBuildCacheUrl = getInputParam('develocity.build-validation.remoteBuildCacheUrl')

0 commit comments

Comments
 (0)