1
0
Fork 0

Removed the BasicStyleCheck from Travis builds.

The check is being done on dedicated CircleCI "build" now.
This commit is contained in:
Mattes D 2015-10-02 17:30:30 +02:00
parent c801985697
commit 908b72abf0
2 changed files with 0 additions and 6 deletions

View File

@ -11,7 +11,6 @@ addons:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- lua5.1
script: ./CIbuild.sh

View File

@ -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";