Skip to content

Commit ab8aa20

Browse files
committed
[GR-46151] Adapt python ci to use runspec.
PullRequest: graalpython/2852
2 parents 6541950 + 0e46dfe commit ab8aa20

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "d1d53e54bd6ccf9a6ba8d626307f04b09c7526df" }
1+
{ "overlay": "32dabcc2b777b4bbd934f634b3a07ad5ce4e8725" }

mx.graalpython/mx_graalpython.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1779,9 +1779,10 @@ def update_import_cmd(args):
17791779
shutil.copy(
17801780
join(mx.suite("truffle").dir, "..", "common.json"),
17811781
join(overlaydir, "python", "graal", "common.json"))
1782-
shutil.copy(
1783-
join(mx.suite("truffle").dir, "..", "ci", "common.jsonnet"),
1784-
join(overlaydir, "python", "graal", "ci", "common.jsonnet"))
1782+
shutil.copytree(
1783+
join(mx.suite("truffle").dir, "..", "ci"),
1784+
join(overlaydir, "python", "graal", "ci"),
1785+
dirs_exist_ok=True)
17851786

17861787
# update the graal-enterprise revision in the overlay (used by benchmarks)
17871788
with open(join(overlaydir, "python", "imported-constants.json"), 'w') as fp:

mx.graalpython/suite.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,31 +44,31 @@
4444
},
4545
{
4646
"name": "sdk",
47-
"version": "0bfd7f832e58a3dd57380ca43cb44ace67f68a77",
47+
"version": "53bd3f0cb3f3a4e07d725203f3c352e34c6a845d",
4848
"subdir": True,
4949
"urls": [
5050
{"url": "https://github.com/oracle/graal", "kind": "git"},
5151
]
5252
},
5353
{
5454
"name": "tools",
55-
"version": "0bfd7f832e58a3dd57380ca43cb44ace67f68a77",
55+
"version": "53bd3f0cb3f3a4e07d725203f3c352e34c6a845d",
5656
"subdir": True,
5757
"urls": [
5858
{"url": "https://github.com/oracle/graal", "kind": "git"},
5959
],
6060
},
6161
{
6262
"name": "sulong",
63-
"version": "0bfd7f832e58a3dd57380ca43cb44ace67f68a77",
63+
"version": "53bd3f0cb3f3a4e07d725203f3c352e34c6a845d",
6464
"subdir": True,
6565
"urls": [
6666
{"url": "https://github.com/oracle/graal", "kind": "git"},
6767
]
6868
},
6969
{
7070
"name": "regex",
71-
"version": "0bfd7f832e58a3dd57380ca43cb44ace67f68a77",
71+
"version": "53bd3f0cb3f3a4e07d725203f3c352e34c6a845d",
7272
"subdir": True,
7373
"urls": [
7474
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)