Skip to content

Commit 4454035

Browse files
committed
Fix lucene compatibility tests
- failing due to buildscan setup
1 parent c211040 commit 4454035

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.ci/init.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ final boolean buildCachePush = Boolean.valueOf(System.getProperty('org.elasticse
44
gradle.settingsEvaluated { settings ->
55
settings.pluginManager.withPlugin("com.gradle.develocity") {
66
settings.develocity {
7-
server = "https://gradle-enterprise.elastic.co"
7+
// Workaround to fix lucene compatibility tests
8+
if (System.getenv("ES_COMMIT") != "b2cc9d9b8f00ee621f93ddca07ea9c671aab1578") {
9+
server = "https://gradle-enterprise.elastic.co"
10+
}
811
}
912
if (buildCacheUrl) {
1013
settings.buildCache {

0 commit comments

Comments
 (0)