lzw-assignment/.travis.yml

38 lines
706 B
YAML
Raw Normal View History

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:
2018-04-08 13:16:22 +00:00
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
2018-04-06 01:24:12 +00:00
notifications:
2018-04-06 02:15:11 +00:00
email:
- phundrak@phundrak.fr