Skip to content

Commit

Permalink
Don't stop the ninja build if errors occur
Browse files Browse the repository at this point in the history
This mirrors the behavior used for make
  • Loading branch information
randombit committed Mar 27, 2024
1 parent 5515966 commit 13504a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/ci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,8 @@ def validate_make_tool(make_tool, build_jobs):

if make_tool in ['make']:
return make_tool, ['-j%d' % (build_jobs), '-k']

elif make_tool in ['ninja']:
return make_tool, ['-k', '0']
else:
return make_tool, []

Expand Down

0 comments on commit 13504a7

Please sign in to comment.