generate-shapes/.travis.yml

31 lines
332 B
YAML
Raw Normal View History

language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make -j4
2018-07-23 01:07:28 +00:00
- ctest --verbose
notifications:
email:
on_success: never
2018-07-23 01:07:28 +00:00
on_failure: never