lzw-assignment/.travis.yml

58 lines
1.3 KiB
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
2018-04-08 13:57:12 +00:00
sudo: true
compiler: g++
before_install:
# C++17
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
# C++17
- sudo apt-get install -qq g++-6
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90
2018-04-08 13:16:22 +00:00
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
2018-04-08 13:57:12 +00:00
sudo: true
compiler: g++
before_install:
# C++17
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
# C++17
- sudo apt-get install -qq g++-6
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90
2018-04-08 13:16:22 +00:00
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
2018-04-08 13:37:20 +00:00
2018-04-08 13:57:12 +00:00
2018-04-06 01:24:12 +00:00
notifications:
2018-04-06 02:15:11 +00:00
email:
- phundrak@phundrak.fr