We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87218a7 commit b4fcf3bCopy full SHA for b4fcf3b
settings.gradle.kts
@@ -2,24 +2,27 @@ rootProject.name = "rewrite-testing-frameworks"
2
3
plugins {
4
id("com.gradle.enterprise") version "3.7"
5
+ id("com.gradle.common-custom-user-data-gradle-plugin") version "1.4.2"
6
}
7
8
gradleEnterprise {
9
+ val isCiServer = System.getenv("CI")?.equals("true") ?: false
10
server = "https://ge.openrewrite.org/"
11
12
buildCache {
- local {
- isEnabled = true
13
- }
14
-
15
remote(HttpBuildCache::class) {
16
- isPush = true
17
url = uri("https://ge.openrewrite.org/cache/")
+ isPush = isCiServer
18
19
20
21
22
buildScan {
23
publishAlways()
+ isUploadInBackground = !isCiServer
+
+ capture {
24
+ isTaskInputFiles = true
25
+ }
26
27
28
0 commit comments