fix clang part

This commit is contained in:
Erwin Coumans
2017-11-28 23:11:31 -08:00
parent 5736018b66
commit defda0135c

View File

@@ -14,11 +14,11 @@ addons:
script: script:
- echo "CXX="$CXX - echo "CXX="$CXX
- echo "CC="$CC - echo "CC="$CC
- sudo apt-get install python3-pip - if [ "$CXX" = "g++" ]; then sudo apt-get install python3-pip; fi
- sudo pip3 install -U pip wheel - if [ "$CXX" = "g++" ]; then sudo pip3 install -U pip wheel; fi
- sudo pip3 install setuptools - if [ "$CXX" = "g++" ]; then sudo pip3 install setuptools; fi
- sudo python3 setup.py install - if [ "$CXX" = "g++" ]; then sudo python3 setup.py install; fi
- python3 examples/pybullet/unittests/unittests.py --verbose - if [ "$CXX" = "g++" ]; then python3 examples/pybullet/unittests/unittests.py --verbose; fi
- cmake . -DBUILD_PYBULLET=ON -G"Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror - cmake . -DBUILD_PYBULLET=ON -G"Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror
- make -j8 - make -j8
- ctest -j8 --output-on-failure - ctest -j8 --output-on-failure