2018-04-08 13:13:40 +00:00
|
|
|
sudo: false
|
2018-04-06 02:15:11 +00:00
|
|
|
language: cpp
|
2018-04-08 13:13:40 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
script:
|
|
|
|
- cd build
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
- make -j
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
compiler: clang
|
|
|
|
script:
|
|
|
|
- cd build
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
- make -j
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
script:
|
|
|
|
- cd build
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
- make -j
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
compiler: clang
|
|
|
|
script:
|
|
|
|
- cd build
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
- make -j
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
script:
|
|
|
|
- cd build
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
- make -j
|
2018-04-06 01:24:12 +00:00
|
|
|
|
|
|
|
notifications:
|
2018-04-06 02:15:11 +00:00
|
|
|
email:
|
|
|
|
- phundrak@phundrak.fr
|