Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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'])
Ejemplo n.º 4
0
def original_gate(args):
    '''Run the R gate (without filtering gate tasks)'''
    mx_gate.gate(args)
Ejemplo n.º 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'
    ])
Ejemplo n.º 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'])