protot/3rdparty/bx/.travis.yml

30 lines
448 B
YAML

language: cpp
matrix:
include:
- compiler: gcc
os: linux
- compiler: clang
os: osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
- clang
script:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then make test CXX="g++-5" CC="gcc-5"; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then make test; fi
branches:
only:
- master
notifications:
email: false
osx_image: xcode9.3