mirror of
https://github.com/schnaader/precomp-cpp
synced 2026-08-23 00:23:04 -04:00
22 lines
438 B
YAML
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
|