Beispiel #1
0
def rgate(args):
    '''
    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)
Beispiel #2
0
def rgate(args):
    '''
    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)
Beispiel #3
0
def gate(args):
    '''Run the R gate'''
    # exclude findbugs until compliant
    mx_gate.gate(args + ['-x', '-t', 'FindBugs,Checkheaders,Distribution Overlap Check,BuildJavaWithEcj'])
Beispiel #4
0
def original_gate(args):
    '''Run the R gate (without filtering gate tasks)'''
    mx_gate.gate(args)
Beispiel #5
0
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'
    ])
Beispiel #6
0
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'])