diff options
author | Russ Allbery <eagle@eyrie.org> | 2020-05-17 20:23:36 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2020-05-17 20:23:36 -0700 |
commit | da31acd8a8c4996995c0df3302c15cf801094989 (patch) | |
tree | aeed73a4fd2646f01921cfb24528d87bbd3fccd1 | |
parent | 57cdf55034d3e435db5fb27deb9976196354945d (diff) |
Add cppcheck to CI in the gcc MIT build
-rwxr-xr-x | ci/test | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -27,3 +27,9 @@ make warnings # Run the tests. make check + +# Run some additional checks for one of the builds. Arbitrarily pick the GCC +# MIT build. +if [ "$COMPILER" = 'gcc' ] && [ "$KERBEROS" = 'mit' ]; then + make check-cppcheck +fi |