|
1 | 1 | import org.gradle.util.GradleVersion
|
2 | 2 | import java.nio.charset.StandardCharsets
|
3 | 3 |
|
4 |
| -static getInputParam(String name) { |
| 4 | +def getInputParam = { String name -> |
5 | 5 | def ENV_VAR_PREFIX = ''
|
6 | 6 | 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) |
8 | 8 | }
|
9 | 9 |
|
10 | 10 | def isTopLevelBuild = !gradle.parent
|
@@ -34,12 +34,16 @@ def registerBuildScanActions = { def buildScan, def rootProjectName ->
|
34 | 34 | // the configuration of the build, and given its value changes between consecutive build invocations
|
35 | 35 | // it would always invalidate the configuration cache model from the first build invocation
|
36 | 36 | // 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('-', '_') |
40 | 44 | return System.getProperty(name) ?: System.getenv(envVarName)
|
41 | 45 | }
|
42 |
| - def runNum = getInputParam('develocity.build-validation.runNum') |
| 46 | + def runNum = getRunNumInputParam('develocity.build-validation.runNum') |
43 | 47 | def buildScanUri = publishedBuildScan.buildScanUri
|
44 | 48 | def buildScanId = publishedBuildScan.buildScanId
|
45 | 49 | def port = (buildScanUri.port != -1) ? ':' + buildScanUri.port : ''
|
|
0 commit comments