You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: gradle/plugins/build-parameters/build.gradle.kts
+26-23
Original file line number
Diff line number
Diff line change
@@ -14,38 +14,41 @@ buildParameters {
14
14
integer("javaToolchainVersion") {
15
15
description ="Defines the Java toolchain version to use for compiling code"
16
16
}
17
-
group("buildCache") {
18
-
string("server") {
19
-
description ="Remote build cache server address (protocol and hostname), e.g. https://eu-build-cache-ge.junit.org"
20
-
}
21
-
}
22
17
group("documentation") {
23
18
description ="Parameters controlling how the documentation is built"
24
19
bool("replaceCurrentDocs") {
25
20
description ="The documentation that is being deployed will replace what's currently deployed as 'current'"
"Remote build cache server address (protocol and hostname), e.g. https://eu-build-cache-ge.junit.org"
31
+
}
42
32
}
43
-
integer("maxLocalExecutors") {
44
-
description ="How many local executors to use for executing tests"
45
-
defaultValue =1
33
+
group("predictiveTestSelection") {
34
+
bool("enabled") {
35
+
description ="Whether or not to use Predictive Test Selection for selecting tests to execute"
36
+
defaultValue =true
37
+
}
46
38
}
47
-
integer("maxRemoteExecutors") {
48
-
description ="How many remote executors to request for executing tests"
39
+
group("testDistribution") {
40
+
bool("enabled") {
41
+
description ="Whether or not to use Test Distribution for executing tests"
42
+
defaultValue =false
43
+
fromEnvironment()
44
+
}
45
+
integer("maxLocalExecutors") {
46
+
description ="How many local executors to use for executing tests"
47
+
defaultValue =1
48
+
}
49
+
integer("maxRemoteExecutors") {
50
+
description ="How many remote executors to request for executing tests"
0 commit comments