コード例 #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)
コード例 #2
0
ファイル: mx_fastr.py プロジェクト: graalvm/fastr
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)
コード例 #3
0
ファイル: mx_fastr.py プロジェクト: anukat2015/fastr
def gate(args):
    '''Run the R gate'''
    # exclude findbugs until compliant
    mx_gate.gate(args + ['-x', '-t', 'FindBugs,Checkheaders,Distribution Overlap Check,BuildJavaWithEcj'])
コード例 #4
0
ファイル: mx_fastr.py プロジェクト: zlongshen/fastr
def original_gate(args):
    '''Run the R gate (without filtering gate tasks)'''
    mx_gate.gate(args)
コード例 #5
0
ファイル: mx_fastr.py プロジェクト: umeshach/fastr
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'
    ])
コード例 #6
0
ファイル: mx_fastr.py プロジェクト: graalvm/fastr
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'])