summaryrefslogtreecommitdiff
path: root/.travis.sh
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2021-04-06 23:19:40 +0200
committerSebastian Pipping <sebastian@pipping.org>2021-04-06 23:52:35 +0200
commit2cfa1dd63f9bc27f435168e32373acc7707fbedd (patch)
tree626f8b280be2561e445c00122a79bd32e9686b5a /.travis.sh
parentae6c9b40af08f385a99a655e71564e1e35a28d21 (diff)
downloadlibexpat-git-2cfa1dd63f9bc27f435168e32373acc7707fbedd.tar.gz
Actions: Split off Cppcheck to stop installing 13 unrelated Homebrew formulas
Diffstat (limited to '.travis.sh')
-rwxr-xr-x.travis.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/.travis.sh b/.travis.sh
index c9e57d01..0b6bec15 100755
--- a/.travis.sh
+++ b/.travis.sh
@@ -59,20 +59,6 @@ elif [[ ${MODE} = cmake-oos ]]; then
make VERBOSE=1 CTEST_OUTPUT_ON_FAILURE=1 all test
make DESTDIR="${PWD}"/ROOT install
find ROOT -printf "%P\n" | sort
-elif [[ ${MODE} = cppcheck ]]; then
- cppcheck --version
- find_args=(
- -type f \(
- -name \*.cpp
- -o -name \*.c
- \)
- -not \( # Exclude .c files that are merely included by other files
- -name xmltok_ns.c
- -o -name xmltok_impl.c
- \)
- -exec cppcheck --quiet --error-exitcode=1 --force --suppress=objectIndex {} +
- )
- find "${find_args[@]}"
elif [[ ${MODE} = clang-format ]]; then
./apply-clang-format.sh
git diff --exit-code