Skip to content

Commit d23aee4

Browse files
authored
Develocity setup does not allow overwriting server url (elastic#122470) (elastic#122477)
This is a prerequisite to have elastic#122296 passing in bwc tests
1 parent 0dc8278 commit d23aee4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ develocity {
3232
// Automatically publish scans from Elasticsearch CI
3333
if (onCI) {
3434
publishing.onlyIf { true }
35-
server = 'https://gradle-enterprise.elastic.co'
35+
if(server.isPresent() == false) {
36+
server = 'https://gradle-enterprise.elastic.co'
37+
}
3638
} else if( server.isPresent() == false) {
3739
publishing.onlyIf { false }
3840
}

0 commit comments

Comments
 (0)