Build before running cpplint
Let's make sure things build before we check coding style. If it doesn't even build, who cares about the style?
This commit is contained in:
parent
991133b8e9
commit
24fbf6e2ef
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,8 @@ def main():
|
|||
|
||||
url = 'https://{0}.s3.amazonaws.com/libchromiumcontent'.format(os.environ['JANKY_ARTIFACTS_S3_BUCKET'])
|
||||
return (run_script('bootstrap', url) or
|
||||
run_script('cpplint') or
|
||||
run_script('build'))
|
||||
run_script('build') or
|
||||
run_script('cpplint'))
|
||||
|
||||
|
||||
def copy_to_environment(credentials_file):
|
||||
|
|
Loading…
Reference in a new issue