summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConlain Kelly <conlain.k@gmail.com>2018-06-14 09:52:11 -0400
committerConlain Kelly <conlain.k@gmail.com>2018-06-14 09:52:11 -0400
commitb76af73cf445f9697b85a0126039f518d5052de8 (patch)
tree7e04b6f594c2adccf0819c89d4988ff7a2028517
parente63f6d7ebd19805022ea82dc4c73f0133740f3e0 (diff)
downloadsdl_core-b76af73cf445f9697b85a0126039f518d5052de8.tar.gz
Move style checking to top, move tests to after_success so build can succeed without them
-rw-r--r--.travis.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 51dfaf4988..73bbfbeb2a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,13 +20,13 @@ before_install:
- sudo apt-get install -f clang-format-3.6
script:
- - mkdir build
- - pushd build
- - cmake ../ -DBUILD_TESTS=ON
- - make install && sudo ldconfig && make test
- - popd
- cppcheck --force -isrc/3rd_party -isrc/3rd_party-static --quiet --error-exitcode=1 src
- ./tools/infrastructure/check_style.sh
+ - mkdir build && cd build
+ - cmake ../ -DBUILD_TESTS=ON
+ - make install && sudo ldconfig
+after_success:
+ - make test
env:
global:
- LC_CTYPE=en_US.UTF-8