Skip to content

Commit cfeece5

Browse files
committed
update overlay (adds additional unittest weekly builder)
fix relative path in mx nativeclean
1 parent 4da0db3 commit cfeece5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

ci.jsonnet

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
overlay: "4c51f4dae2d670a4895aaafbe47780ac2541c008",
2+
overlay: "2081dc054251c6658f7ce8f4b6671a474edbf2f6",
33

44
// ======================================================================================================
55
//
@@ -23,7 +23,10 @@
2323
"2h": "2:00:00",
2424
"3h": "3:00:00",
2525
"4h": "4:00:00",
26-
"10h": "10:00:00"
26+
"8h": "8:00:00",
27+
"10h": "10:00:00",
28+
"16h": "16:00:00",
29+
"20h": "20:00:00",
2730
},
2831
TIME_LIMIT: TIME_LIMIT,
2932

@@ -142,6 +145,7 @@
142145
HOST_VM_CONFIG: "graal-core",
143146
},
144147
},
148+
graalCoreMixin: graalCoreMixin,
145149

146150
local sulongMixin = labsjdk8Mixin + {
147151
environment +: {

graalpython/com.oracle.graal.python.test/src/python_unittests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def table(tid, tcols, trows):
425425
</div>
426426
'''.format(title='missing modules', content='\n'.join([
427427
'<li class="list-group-item"><b>{}</b>&nbsp;<span class="text-muted">count: {}</span></li>'.format(name, cnt)
428-
for cnt, name in sorted(((cnt, name) for name, cnt in missing_modules.items()))
428+
for cnt, name in sorted(((cnt, name) for name, cnt in missing_modules.items()), reverse=True)
429429
]))
430430

431431
content = modules_info + table('stats', CSV_HEADER, rows)

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def nativebuild(args):
239239

240240

241241
def nativeclean(args):
242-
mx.run(['find', '.', '-name', '*.bc', '-delete'])
242+
mx.run(['find', _suite.dir, '-name', '*.bc', '-delete'])
243243

244244

245245
def python3_unittests(args):

0 commit comments

Comments
 (0)