mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 23:03:46 +01:00
9 lines
241 B
Bash
9 lines
241 B
Bash
#!/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)"
|
|
}
|