diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-07-01 09:23:56 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-07-12 16:51:01 -0500 |
commit | df9491bd9a5e643d3dca679f69317396bc228a08 (patch) | |
tree | d27b3a5ee286a4dcdf5f1934c82cfbe6bb93ee1e /.ci/templates | |
parent | 31624a5b3aa1d19dd3bbe5344731de741f008568 (diff) | |
download | uhd-df9491bd9a5e643d3dca679f69317396bc228a08.tar.gz uhd-df9491bd9a5e643d3dca679f69317396bc228a08.tar.bz2 uhd-df9491bd9a5e643d3dca679f69317396bc228a08.zip |
ci: Let make keep building upon failure
This is useful to get a full list of compile errors instead of just the
first few. Particularly useful since we enabled -Werror.
Diffstat (limited to '.ci/templates')
-rw-r--r-- | .ci/templates/steps-build-uhd-make.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/templates/steps-build-uhd-make.yml b/.ci/templates/steps-build-uhd-make.yml index a3c4c7eb5..cc0d491e8 100644 --- a/.ci/templates/steps-build-uhd-make.yml +++ b/.ci/templates/steps-build-uhd-make.yml @@ -22,7 +22,7 @@ steps: - script: | cd ${{ parameters.uhdBuildDir }} - make -j$(nproc) + make -j$(nproc) -k displayName: make UHD - script: | cd ${{ parameters.uhdBuildDir }} |