protot/3rdparty/bx/.travis.yml

30 lines
448 B
YAML
Raw Normal View History

2016-08-29 22:31:11 +02:00
language: cpp
matrix:
include:
- compiler: gcc
os: linux
- compiler: clang
os: osx
2018-02-03 17:39:28 +01:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
- clang
2016-08-29 22:31:11 +02:00
script:
2018-02-03 17:39:28 +01:00
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then make test CXX="g++-5" CC="gcc-5"; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then make test; fi
2016-08-29 22:31:11 +02:00
branches:
only:
- master
notifications:
email: false
2018-02-03 17:39:28 +01:00
osx_image: xcode9.3