aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml17
1 files changed, 9 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 7c1c0b4..691d9d5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,17 +30,18 @@ before_install:
fi
script:
- # Fail on trailing whitespace in non-binary, non-generated-nanopb files
- - "! git grep -I ' $' ':(exclude)Firestore/Protos/nanopb'"
- - "! git grep -EL --name-only 'Copyright [0-9]{4}.*Google' | grep -v third_party | egrep '\\.(m|h|cc|mm|c)$'"
- - ./scripts/style.sh test-only # Validate clang-format compliance
+ - ./scripts/check_whitespace.sh
+ - ./scripts/check_copyright.sh
+ - ./scripts/style.sh test-only $TRAVIS_COMMIT_RANGE
- |
- if [ $SKIP_FIREBASE != 1 ]; then
- ./test.sh
+ # Google C++ style compliance
+ if [ $SKIP_FIRESTORE != 1 ]; then
+ ./scripts/lint.sh $TRAVIS_COMMIT_RANGE
fi
+
- |
- if [ $SKIP_FIRESTORE != 1 ]; then
- ./scripts/lint.sh # Google C++ style compliance
+ if [ $SKIP_FIREBASE != 1 ]; then
+ ./test.sh
fi
- |
if [ $SKIP_FIRESTORE != 1 ]; then