From 908b72abf04da9c544aa8379a758fbf527112ac5 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Fri, 2 Oct 2015 17:30:30 +0200 Subject: [PATCH] Removed the BasicStyleCheck from Travis builds. The check is being done on dedicated CircleCI "build" now. --- .travis.yml | 1 - CIbuild.sh | 5 ----- 2 files changed, 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01b51ee9a..75702cf11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,6 @@ addons: - ubuntu-toolchain-r-test packages: - g++-4.8 - - lua5.1 script: ./CIbuild.sh diff --git a/CIbuild.sh b/CIbuild.sh index a6a4282a7..9e2fa7edb 100755 --- a/CIbuild.sh +++ b/CIbuild.sh @@ -13,11 +13,6 @@ if [ "$CXX" == "g++" ]; then fi cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1; -echo "Checking basic style..." -cd src -lua CheckBasicStyle.lua -cd .. - echo "Building..." make -j 2; make -j 2 test ARGS="-V";