Skip to content

Commit

Permalink
Add GRADLE_JAVA_HOME into GraalPy dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-s committed Dec 6, 2024
1 parent 6e1388b commit 7ea169e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ci/common.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,12 @@ local common_json = import "../common.json";
},
},

gradle:: {
downloads+: {
GRADLE_JAVA_HOME: jdks_data["oraclejdk21"],
}
},

local code_tools = {
downloads+: if 'jdk_version' in self && self.jdk_version > 21 then {
TOOLS_JAVA_HOME: jdks_data['oraclejdk21'],
Expand Down Expand Up @@ -251,7 +257,7 @@ local common_json = import "../common.json";
} else {},
},

graalpy:: {
graalpy:: self.gradle + {
packages+: if (self.os == "linux") then {
libffi: '>=3.2.1',
bzip2: '>=1.0.6',
Expand Down

0 comments on commit 7ea169e

Please sign in to comment.