Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
wercker: multithreaded cppcheck static analysis (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Blom authored Jul 18, 2016
1 parent 8a5b338 commit bf271d3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ build:
- script:
name: cppcheck
code: |
(cd src/fsi && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/RBFMeshMotionSolver && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/tests && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd applications && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/fsi && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
(cd src/RBFMeshMotionSolver && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
(cd src/tests && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
(cd applications && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
- script:
name: cleanup
code: rm -rf *
Expand Down Expand Up @@ -238,10 +238,10 @@ debug:
- script:
name: cppcheck
code: |
(cd src/fsi && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/RBFMeshMotionSolver && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/tests && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd applications && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/fsi && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
(cd src/RBFMeshMotionSolver -j `nproc` && cppcheck --error-exitcode=1 --enable=performance,portability .)
(cd src/tests && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
(cd applications && cppcheck -j `nproc` --error-exitcode=1 --enable=performance,portability .)
- script:
name: cleanup
code: rm -rf *

0 comments on commit bf271d3

Please sign in to comment.