Skip to content

Commit 0dd81ff

Browse files
committed
Merge pull request #89 from jtulach/master
mx javadoc to verify @SInCE tags
2 parents 1563406 + 08e2605 commit 0dd81ff

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

mx.truffle/mx_truffle.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535

3636
_suite = mx.suite('truffle')
3737

38+
def javadoc(args, vm=None):
39+
"""build the Javadoc for all API packages"""
40+
mx.javadoc(['--unified'] + args)
41+
3842
def build(args, vm=None):
3943
"""build the Java sources"""
4044
opts2 = mx.build(['--source', '1.7'] + args)
@@ -61,6 +65,7 @@ def _truffle_gate_runner(args, tasks):
6165
mx_gate.add_gate_runner(_suite, _truffle_gate_runner)
6266

6367
mx.update_commands(_suite, {
68+
'javadoc' : [javadoc, '[SL args|@VM options]'],
6469
'sl' : [sl, '[SL args|@VM options]'],
6570
'sldebug' : [sldebug, '[SL args|@VM options]'],
6671
})

mx.truffle/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
suite = {
2-
"mxversion" : "5.8.0",
2+
"mxversion" : "5.9.0",
33
"name" : "truffle",
44
"url" : "http://openjdk.java.net/projects/graal",
55
"developer" : {

0 commit comments

Comments
 (0)