Skip to content
Snippets Groups Projects
Commit 7b60982d authored by Mick Jordan's avatar Mick Jordan
Browse files

ci.hocon: gate -> rgate

parent 85cdc274
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ common : ${java8Downloads} ${packagesLinux} {
# the "mx" tool. This defines a common prefix for all gate commands. The "-t"
# arg indicates the exact set of gate "tasks" that will be run.
gateCmd : ["mx", "--strict-compliance", "gate", "--strict-mode", "-t"]
gateCmd : ["mx", "--strict-compliance", "rgate", "--strict-mode", "-t"]
# currently disabled gate commands: FindBugs,Checkheaders,Distribution Overlap Check,BuildJavaWithEcj
......
......@@ -260,7 +260,15 @@ def _fastr_gate_runner(args, tasks):
mx_gate.add_gate_runner(_fastr_suite, _fastr_gate_runner)
def rgate(args):
'''Run the R gate, with some standard tasks excluded as they currently fail'''
'''
Run 'mx.gate' with given args (used in CI system).
N.B. This will fail if run without certain exclusions; use the local
'gate' command for that.
'''
mx_gate.gate(args)
def gate(args):
'''Run 'mx.gate' with some standard tasks excluded as they currently fail'''
mx_gate.gate(args + ['-x', '-t', 'FindBugs,Checkheaders,Distribution Overlap Check,BuildJavaWithEcj'])
def _test_srcdir():
......@@ -518,6 +526,7 @@ _commands = {
'Rscript' : [rscript, '[options]'],
'rtestgen' : [testgen, ''],
'rgate' : [rgate, ''],
'gate' : [gate, ''],
'junit' : [junit, ['options']],
'junitsimple' : [junit_simple, ['options']],
'junitdefault' : [junit_default, ['options']],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment