aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2020-05-17 20:23:36 -0700
committerRuss Allbery <eagle@eyrie.org>2020-05-17 20:23:36 -0700
commitda31acd8a8c4996995c0df3302c15cf801094989 (patch)
treeaeed73a4fd2646f01921cfb24528d87bbd3fccd1
parent57cdf55034d3e435db5fb27deb9976196354945d (diff)
Add cppcheck to CI in the gcc MIT build
-rwxr-xr-xci/test6
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/test b/ci/test
index efe4021..f30b2c7 100755
--- a/ci/test
+++ b/ci/test
@@ -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