Skip to content

Commit

Permalink
Gradle Enterprise -> Develocity
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed May 18, 2024
1 parent 8c99fb2 commit 36291f2
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,31 +83,32 @@ if (System.getProperty("idea.active") == null &&
// ---------------------------------------------------------------

plugins {
id("com.gradle.enterprise") version "latest.release"
id("com.gradle.develocity") version "latest.release"
id("com.gradle.common-custom-user-data-gradle-plugin") version "latest.release"
}

gradleEnterprise {
develocity {
val isCiServer = System.getenv("CI")?.equals("true") ?: false
server = "https://ge.openrewrite.org/"

val accessKey = System.getenv("GRADLE_ENTERPRISE_ACCESS_KEY")
val authenticated = !accessKey.isNullOrBlank()
buildCache {
remote(gradleEnterprise.buildCache) {
remote(develocity.buildCache) {
isEnabled = true
val accessKey = System.getenv("GRADLE_ENTERPRISE_ACCESS_KEY")
isPush = isCiServer && !accessKey.isNullOrBlank()
isPush = isCiServer && authenticated
}
}

buildScan {
capture {
isTaskInputFiles = true
fileFingerprints = true
}

isUploadInBackground = !isCiServer

publishAlways()
this as com.gradle.enterprise.gradleplugin.internal.extension.BuildScanExtensionWithHiddenFeatures
publishIfAuthenticated()
uploadInBackground = !isCiServer
publishing {
onlyIf {
authenticated
}
}
}
}

0 comments on commit 36291f2

Please sign in to comment.