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 0dc8278 commit d23aee4Copy full SHA for d23aee4
build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle
@@ -32,7 +32,9 @@ develocity {
32
// Automatically publish scans from Elasticsearch CI
33
if (onCI) {
34
publishing.onlyIf { true }
35
- server = 'https://gradle-enterprise.elastic.co'
+ if(server.isPresent() == false) {
36
+ server = 'https://gradle-enterprise.elastic.co'
37
+ }
38
} else if( server.isPresent() == false) {
39
publishing.onlyIf { false }
40
}
0 commit comments