mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-05 01:50:05 +00:00
27 lines
618 B
YAML
27 lines
618 B
YAML
language: cpp
|
|
os:
|
|
- linux
|
|
- osx
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python3-numpy
|
|
script:
|
|
- echo "CXX="$CXX
|
|
- echo "CC="$CC
|
|
- cmake . -DBUILD_PYBULLET=ON -G"Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror
|
|
- make -j8
|
|
- ctest -j8 --output-on-failure
|
|
# Build again with double precision
|
|
- cmake . -G "Unix Makefiles" -DUSE_DOUBLE_PRECISION=ON #-DCMAKE_CXX_FLAGS=-Werror
|
|
- make -j8
|
|
- ctest -j8 --output-on-failure
|
|
# Build again with shared libraries
|
|
- cmake . -G "Unix Makefiles" -DBUILD_SHARED_LIBS=ON
|
|
- make -j8
|
|
- ctest -j8 --output-on-failure
|
|
- sudo make install
|