41 lines
784 B
YAML
41 lines
784 B
YAML
sudo: false
|
|
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: g++
|
|
script:
|
|
- cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
- make -j
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: clang
|
|
script:
|
|
- cd build
|
|
- cmake --version
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
- make -j
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: g++
|
|
script:
|
|
- cd build
|
|
- cmake --version
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
- make -j
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: clang
|
|
script:
|
|
- cd build
|
|
- cmake --version
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
- make -j
|
|
|
|
notifications:
|
|
email:
|
|
- phundrak@phundrak.fr
|