Skip to content

Commit 3e36206

Browse files
committed
[GR-45708] Update graal to pick SVM fix for Assumption#ALWAYS_VALID
1 parent c1702b0 commit 3e36206

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

ci/common.jsonnet

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,24 @@ local common_json = import "../common.json";
208208
],
209209
},
210210

211+
// OS specific file handling
212+
os_utils:: {
213+
local lib_format = {
214+
"windows": "%s.dll",
215+
"linux": "lib%s.so",
216+
"darwin": "lib%s.dylib"
217+
},
218+
219+
# Converts unixpath to an OS specific path
220+
os_path(unixpath):: if self.os == "windows" then std.strReplace(unixpath, "/", "\\") else unixpath,
221+
222+
# Converts unixpath to an OS specific path for an executable
223+
os_exe(unixpath):: if self.os == "windows" then self.os_path(unixpath) + ".exe" else unixpath,
224+
225+
# Converts a base library name to an OS specific file name
226+
os_lib(name):: lib_format[self.os] % name,
227+
},
228+
211229
local ol7 = {
212230
docker+: {
213231
image: "buildslave_ol7",

mx.truffleruby/suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"name": "regex",
99
"subdir": True,
10-
"version": "c1f4265c6492e5eae21cd16c6fe51bb4c5b79661",
10+
"version": "db464f45d94a76851b5d1c9e6c2401157c9b9ac5",
1111
"urls": [
1212
{"url": "https://github.com/oracle/graal.git", "kind": "git"},
1313
{"url": "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind": "binary"},
@@ -16,7 +16,7 @@
1616
{
1717
"name": "sulong",
1818
"subdir": True,
19-
"version": "c1f4265c6492e5eae21cd16c6fe51bb4c5b79661",
19+
"version": "db464f45d94a76851b5d1c9e6c2401157c9b9ac5",
2020
"urls": [
2121
{"url": "https://github.com/oracle/graal.git", "kind": "git"},
2222
{"url": "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind": "binary"},

0 commit comments

Comments
 (0)