Skip to content

Commit

Permalink
Update common files
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Aug 8, 2023
1 parent 0aa0c4e commit 32870d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
18 changes: 13 additions & 5 deletions ci/common.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,13 @@ local common_json = import "../common.json";

graalnodejs:: {
packages+: if self.os == "linux" then {
"00:devtoolset": "==11",
cmake: "==3.22.2",
} else {},
} + (if self.arch == "aarch64" then {
"00:devtoolset": "==10",
} else {
"00:devtoolset": "==11",
})
else {},
},

svm:: {
Expand All @@ -141,9 +145,13 @@ local common_json = import "../common.json";
"*.log",
],

packages+: if self.os == "linux" && std.objectHas(self, "os_distro") && self.os_distro == "ol" then {
"00:devtoolset": "==11",
} else {},
packages+: if self.os == "linux" && std.objectHas(self, "os_distro") && self.os_distro == "ol" then
(if self.arch == "aarch64" then {
"00:devtoolset": "==10",
} else {
"00:devtoolset": "==11",
})
else {},
},
},

Expand Down
2 changes: 1 addition & 1 deletion common.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Jsonnet files should not include this file directly but use ci/common.jsonnet instead."
],

"mx_version": "6.35.1",
"mx_version": "6.38.0",

"COMMENT.jdks": "When adding or removing JDKs keep in sync with JDKs in ci/common.jsonnet",
"jdks": {
Expand Down

0 comments on commit 32870d4

Please sign in to comment.