aboutsummaryrefslogtreecommitdiffstats
path: root/.ci
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-07-01 09:23:56 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2021-07-12 16:51:01 -0500
commitdf9491bd9a5e643d3dca679f69317396bc228a08 (patch)
treed27b3a5ee286a4dcdf5f1934c82cfbe6bb93ee1e /.ci
parentci: Add clang as a compiler to all Fedora and Ubuntu containers (diff)
downloaduhd-df9491bd9a5e643d3dca679f69317396bc228a08.tar.xz
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')
-rw-r--r--.ci/templates/steps-build-uhd-make.yml2
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 }}