22 lines
715 B
YAML
22 lines
715 B
YAML
|
language: cpp
|
||
|
os:
|
||
|
- linux
|
||
|
- osx
|
||
|
compiler:
|
||
|
- gcc
|
||
|
- clang
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
- develop
|
||
|
script:
|
||
|
- mkdir build_directory
|
||
|
- cd build_directory
|
||
|
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug —DDOUBLE_PRECISION_ENABLED=True -DCOMPILE_TESTS=True ../
|
||
|
- make && make test
|
||
|
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug —DDOUBLE_PRECISION_ENABLED=False -DCOMPILE_TESTS=True ../
|
||
|
- make && make test
|
||
|
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release —DDOUBLE_PRECISION_ENABLED=True -DCOMPILE_TESTS=True ../
|
||
|
- make && make test
|
||
|
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release —DDOUBLE_PRECISION_ENABLED=False -DCOMPILE_TESTS=True ../
|
||
|
- make && make test
|