Create .travis.yml

This commit is contained in:
ksherlock 2019-12-10 12:59:45 -05:00 committed by GitHub
parent b55305d11c
commit 03b35d1bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
.travis.yml Normal file
View File

@ -0,0 +1,27 @@
language: generic
os: osx
matrix:
include:
- os: linux
env: COMPILER_NAME=gcc CXX=g++-5 CC=gcc-5
addons:
apt:
packages:
- g++-5
sources: &sources
- llvm-toolchain-precise-3.8
- ubuntu-toolchain-r-test
- os: linux
env: COMPILER_NAME=clang CXX=clang++-3.8 CC=clang-3.8
addons:
apt:
packages:
- clang-3.8
sources: *sources
script: make all
compiler:
- clang
- gcc