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>
This commit is contained in:
Simon Glass 2020-04-05 14:35:43 -06:00 committed by Tom Rini
parent f5ec7eebf7
commit 4ee7f52781
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ jobs:
image: $(ci_runner_image) image: $(ci_runner_image)
options: $(container_option) options: $(container_option)
steps: steps:
- script: cppcheck --force --quiet --inline-suppr . - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
- job: htmldocs - job: htmldocs
displayName: 'Build HTML documentation' displayName: 'Build HTML documentation'

View File

@ -103,7 +103,7 @@ cppcheck:
tags: [ 'all' ] tags: [ 'all' ]
stage: testsuites stage: testsuites
script: script:
- cppcheck --force --quiet --inline-suppr . - cppcheck -j$(nproc) --force --quiet --inline-suppr .
# search for TODO within source tree # search for TODO within source tree
grep TODO/FIXME/HACK: grep TODO/FIXME/HACK:

View File

@ -448,7 +448,7 @@ matrix:
# static code analysis with cppcheck (we can add --enable=all later) # static code analysis with cppcheck (we can add --enable=all later)
- name: "cppcheck" - name: "cppcheck"
script: script:
- cppcheck --force --quiet --inline-suppr . - cppcheck -j$(nproc) --force --quiet --inline-suppr .
# build HTML documentation # build HTML documentation
- name: "htmldocs" - name: "htmldocs"
script: script: