summaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-05 14:35:43 -0600
committerTom Rini <trini@konsulko.com>2020-04-10 21:36:37 -0400
commit4ee7f527810ec77c6f0c64975ccbadbde3277696 (patch)
tree9287c271d41e984bb43fdb4cd21842c96c27de1c /.azure-pipelines.yml
parentf5ec7eebf774456f0c24fc5eae6d0421e353bea6 (diff)
travis/gitlab/azure: Run cppcheck in parallel
This takes ages to run single-threaded. Adjust it to use all available processors. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 8c3bb0abfd..d3e7b4dd02 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -52,7 +52,7 @@ jobs:
image: $(ci_runner_image)
options: $(container_option)
steps:
- - script: cppcheck --force --quiet --inline-suppr .
+ - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
- job: htmldocs
displayName: 'Build HTML documentation'