Skip to content

Commit 4059d68

Browse files
committed
re-add task that apptests uses
1 parent 863352d commit 4059d68

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ class GraalPythonTags(object):
196196
cpyext_sandboxed = 'python-cpyext-sandboxed'
197197
svmunit = 'python-svm-unittest'
198198
graalvm = 'python-graalvm'
199-
license = 'python-license'
200-
so = 'python-so'
199+
shared_object = 'python-so'
201200
svm = 'python-svm'
201+
license = 'python-license'
202202

203203

204204
def python_gate(args):
@@ -356,7 +356,7 @@ def graalpython_gate_runner(args, tasks):
356356
if task:
357357
python_checkcopyrights(["--fix"])
358358

359-
with Task('GraalPython GraalVM shared-library build', tasks, tags=[GraalPythonTags.so, GraalPythonTags.graalvm]) as task:
359+
with Task('GraalPython GraalVM shared-library build', tasks, tags=[GraalPythonTags.shared_object, GraalPythonTags.graalvm]) as task:
360360
if task:
361361
run_shared_lib_test()
362362

@@ -909,6 +909,7 @@ def python_coverage(args):
909909
'python-update-import': [update_import_cmd, '[import-name, default: truffle]'],
910910
'python-style': [python_style_checks, ''],
911911
'python-svm': [python_svm, ''],
912+
'python-build-svm': [python_build_svm, ''],
912913
'python-unittests': [python3_unittests, ''],
913914
'nativebuild': [nativebuild, ''],
914915
'nativeclean': [nativeclean, ''],

0 commit comments

Comments
 (0)