summaryrefslogtreecommitdiff
path: root/util/travis/common.sh
blob: 16c7db324383b408029285c52e86ef63a3be9077 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash -e

# Relative to git-repository root:
TRIGGER_COMPILE_PATHS="src/|CMakeLists.txt|cmake/Modules/|util/travis/|util/buildbot/"

needs_compile() {
	git diff --name-only $TRAVIS_COMMIT_RANGE | egrep -q "^($TRIGGER_COMPILE_PATHS)"
}