forked from teragonaudio/MrsWatson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (29 loc) · 826 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: cpp
sudo: required
dist: trusty
notifications:
email: false
branches:
only:
- master
matrix:
include:
- os: osx
compiler: clang
osx_image: xcode11.3
env: C_COMPILER=clang CXX_COMPILER=clang++ CONFIGURATION=Release APPLE=1
- os: linux
compiler: clang
env: C_COMPILER=clang-3.8 CXX_COMPILER=clang++-3.8 CONFIGURATION=Release
- os: linux
compiler: gcc
env: C_COMPILER=gcc CXX_COMPILER=g++ CONFIGURATION=Release
- os: linux
compiler: clang
env: C_COMPILER=clang-format-3.8 CXX_COMPILER=clang-format-3.8 CONFIGURATION=Formatting
before_install:
- ./scripts/travis-before-install.sh $TRAVIS_OS_NAME
install:
- git submodule update --init --recursive
script:
- ./scripts/travis-build.sh $CONFIGURATION $C_COMPILER $CXX_COMPILER