precomp-cpp/.travis.yml
2020-03-18 11:50:52 +01:00

22 lines
438 B
YAML

language: cpp
sudo: required
dist: trusty
compiler:
- clang
- gcc
os:
- linux
- osx
matrix:
exclude:
- os: osx
compiler: gcc
before_install:
- echo $LANG
- echo $LC_ALL
script:
- if [ $TRAVIS_OS_NAME == linux ]; then cmake -DCMAKE_BUILD_TYPE=Release -Bbuild -H. -G"Unix Makefiles"; cd build; make; fi
- if [ $TRAVIS_OS_NAME == osx ]; then cmake -DCMAKE_BUILD_TYPE=Release -Bbuild -H. -G"Unix Makefiles"; cd build; make; fi