-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.conf
More file actions
39 lines (31 loc) · 840 Bytes
/
common.conf
File metadata and controls
39 lines (31 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
default-scenarios = [
"load-merkle",
"load-regular",
"store-merkle",
"store-regular",
"without-cache",
]
base-gradle-args = ${?defaults.gradle-args} ["--scan"]
cached-regular = ${defaults} {
gradle-args = ${base-gradle-args} ["--build-cache"]
show-build-cache-size = true
}
cached-merkle = ${defaults} {
gradle-args = ${base-gradle-args} ["--build-cache", "-Dorg.gradle.caching.version2=true"]
show-build-cache-size = true
}
load-regular = ${cached-regular} {
clear-build-cache-before = SCENARIO
}
load-merkle = ${cached-merkle} {
clear-build-cache-before = SCENARIO
}
store-regular = ${cached-regular} {
clear-build-cache-before = CLEANUP
}
store-merkle = ${cached-merkle} {
clear-build-cache-before = CLEANUP
}
without-cache = ${defaults} {
gradle-args = ${base-gradle-args}
}