Skip to content

Commit

Permalink
Use develocity-staging.eclipse.org
Browse files Browse the repository at this point in the history
  • Loading branch information
donat committed Oct 22, 2024
1 parent 6bb773e commit 119257e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
// publish build scans from CI builds
plugins {
id "com.gradle.develocity" version "3.17.6"
id "com.gradle.develocity" version "3.18.1"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
}


def isCI = System.getenv('CI') != null

develocity {
server = "https://ge.gradle.org"
server = "https://develocity-staging.eclipse.org"
buildScan {
publishing.onlyIf { isCI }
publishing.onlyIf { true }
obfuscation {
username { name -> isCI ? 'ci' : 'local' }
ipAddresses { addresses -> addresses.collect { address -> "0.0.0.0" } }
externalProcessName { processName -> "non-build-process" }
hostname { host -> isCI ? 'ci' : 'local' }

}
uploadInBackground = !isCI
}
}
Expand Down

0 comments on commit 119257e

Please sign in to comment.