diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 17:45:18 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 17:45:18 -0400 |
commit | a6fa0a7636fcdeebbc0eff6d20b27b59b0140086 (patch) | |
tree | fac8684806a1b85b54f6dad006cf7941598435e1 /src/scripts/ci_build.py | |
parent | ff0370bcffd0636c002e0a20360b7aceb4a442b9 (diff) |
Add -k to CI builds
Diffstat (limited to 'src/scripts/ci_build.py')
-rwxr-xr-x | src/scripts/ci_build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 3ba97a68c..ca339db65 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -380,6 +380,7 @@ def main(args=None): make_cmd += ['-C', root_dir] if options.build_jobs > 1: make_cmd += ['-j%d' % (options.build_jobs)] + make_cmd += ['-k'] if target == 'docs': cmds.append(make_cmd + ['docs']) |