forked from mbrossard/threadpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (47 loc) · 808 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
language: c
sudo: false
branches:
only:
- master
cache: apt
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- gcc-5
- gcc-6
matrix:
include:
- os: linux
compiler: clang
- os: linux
compiler: gcc
- os: linux
compiler: gcc-4.8
- os: linux
compiler: gcc-5
- os: linux
compiler: gcc-6
- os: osx
compiler: clang
osx_image: xcode6.2
- os: osx
compiler: clang
osx_image: xcode7.3
- os: osx
compiler: clang
osx_image: xcode8
- os: osx
env: INSTALL=gcc48
compiler: gcc-4.8
- os: osx
env: INSTALL=gcc
compiler: gcc-6
osx_image: xcode8
before_install:
- if [ "$TRAVIS_OS_NAME" == osx -a "$INSTALL" ] ; then brew install $INSTALL || true ; fi
script:
- make
- make test