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 479ef6e commit 34506cdCopy full SHA for 34506cd
build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle
@@ -28,7 +28,9 @@ develocity {
28
// Automatically publish scans from Elasticsearch CI
29
if (onCI) {
30
publishing.onlyIf { true }
31
- server = 'https://gradle-enterprise.elastic.co'
+ if(server.isPresent() == false) {
32
+ server = 'https://gradle-enterprise.elastic.co'
33
+ }
34
} else if( server.isPresent() == false) {
35
publishing.onlyIf { false }
36
}
0 commit comments