We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e33eedd commit 1082559Copy full SHA for 1082559
.gitignore
@@ -11,6 +11,7 @@ target
11
**/build/
12
**/generated/
13
examples/**/build/
14
+build-cache/
15
16
# Eclipse #
17
###########
settings.gradle.kts
@@ -81,8 +81,15 @@ if (useScansGradleCom) {
81
}
82
83
buildCache {
84
- remote(develocity.buildCache) {
85
- isPush = isCI && geAccessKey.isNotEmpty()
+ if (System.getProperty("dev") == "true") {
+ local {
86
+ directory = File(rootDir, "build-cache")
87
+ removeUnusedEntriesAfterDays = 30
88
+ }
89
+ } else {
90
+ remote(develocity.buildCache) {
91
+ isPush = isCI && geAccessKey.isNotEmpty()
92
93
94
95
0 commit comments