summaryrefslogtreecommitdiff
path: root/util/travis/common.sh
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-03-25 19:12:18 +0100
committerGitHub <noreply@github.com>2017-03-25 19:12:18 +0100
commit22567d107fffe7a6833b96cc99d531e5303b47dd (patch)
tree8ca2a1a40965dfe362c16ec1d8fe4d1cfd43e1a3 /util/travis/common.sh
parent5a59ad230744a84a1474e8c3b97cf3d9080536d7 (diff)
downloadminetest-22567d107fffe7a6833b96cc99d531e5303b47dd.tar.gz
minetest-22567d107fffe7a6833b96cc99d531e5303b47dd.tar.bz2
minetest-22567d107fffe7a6833b96cc99d531e5303b47dd.zip
Add clang format & skip build if no source file modified (#5433)
* [BUILD] Add clang format + build skipping * Add clang-format tool to check codestyle. Warning: it check the whole modified file, not the diff part, it's why it's lazy. Please also look if rules are perfect, i take the Linux codestyle from LLVM site Fix issue #5415 * Skip building project if no file is modified * Fix a wrong brace to trigger LINT * Make lint step outside of unix build scope * Add AccessModifierOffset: -8 * Typo fix & needs compile fix * Fix header priorities
Diffstat (limited to 'util/travis/common.sh')
-rw-r--r--util/travis/common.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/travis/common.sh b/util/travis/common.sh
index 16c7db324..35ceec08d 100644
--- a/util/travis/common.sh
+++ b/util/travis/common.sh
@@ -1,8 +1,9 @@
#!/bin/bash -e
# Relative to git-repository root:
-TRIGGER_COMPILE_PATHS="src/|CMakeLists.txt|cmake/Modules/|util/travis/|util/buildbot/"
+TRIGGER_COMPILE_PATHS="src/.*\.(c|cpp|h)|CMakeLists.txt|cmake/Modules/|util/travis/|util/buildbot/"
needs_compile() {
git diff --name-only $TRAVIS_COMMIT_RANGE | egrep -q "^($TRIGGER_COMPILE_PATHS)"
}
+