update travis to add setuptools

This commit is contained in:
Erwin Coumans
2017-11-28 22:17:24 -08:00
parent ec0a182a12
commit eb9c252147

View File

@@ -14,6 +14,10 @@ addons:
script: script:
- echo "CXX="$CXX - echo "CXX="$CXX
- echo "CC="$CC - echo "CC="$CC
- pip install -U pip wheel
- pip install setuptools
- sudo python3 setup.py install
- python3 examples/pybullet/unittests/unittests.py
- 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
@@ -26,5 +30,3 @@ script:
- make -j8 - make -j8
- ctest -j8 --output-on-failure - ctest -j8 --output-on-failure
- sudo make install - sudo make install
- sudo python3 setup.py install
- python3 examples/pybullet/unittests/unittests.py