Skip to content

Commit

Permalink
Fix bwc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
breskeby committed Nov 15, 2023
1 parent 7873b94 commit 5d92c32
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ private TaskProvider<LoggedExec> createRunBwcGradleTask(
return getJavaHome(Integer.parseInt(minimumCompilerVersion));
}));

// temporally workaround for reworked gradle enterprise setup
// removed when PR https://github.com/elastic/elasticsearch/pull/102180 backported
// to all BWC branches
loggedExec.getEnvironment().put("BUILDKITE", "false");

if (BuildParams.isCi() && OS.current() != OS.WINDOWS) {
// TODO: Disabled for now until we can figure out why files are getting corrupted
// loggedExec.getEnvironment().put("GRADLE_RO_DEP_CACHE", System.getProperty("user.home") + "/gradle_ro_cache");
Expand Down

0 comments on commit 5d92c32

Please sign in to comment.