blob: c656c72ade11f6cd452723246905386715407bc9 (
plain) (
blame)
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
|
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
before_script:
git clone https://github.com/bkaradzic/bx ../bx
script:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then make build CXX="g++-5" CC="gcc-5"; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then make build; fi
branches:
only:
- master
notifications:
email: false
osx_image: xcode9.3
|