forked from dascandy/hippomocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
97 lines (92 loc) · 2.26 KB
/
.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
script:
- mkdir build
- cd build
- cmake ${CMAKEFLAGS} -DCMAKE_CXX_COMPILER=${CXX} ..
- make
- make test
sudo: required
dist: trusty
matrix:
include:
- compiler: gcc
os: osx
before_script:
- brew update
- brew outdated cmake || brew upgrade cmake
env: CXX=g++
- compiler: clang
os: osx
before_script:
- brew update
- brew outdated cmake || brew upgrade cmake
env: CXX=clang++
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- g++-4.9-multilib
- cmake
env: CXX=g++-4.9
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- g++-5-multilib
- cmake
env: CXX=g++-5
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- g++-6-multilib
- cmake
env: CXX=g++-6
- compiler: clang
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- clang-3.6
- libc++-dev
- cmake
env: CXX=clang++-3.6
- compiler: clang
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
- libc++-dev
- cmake
env: CXX=clang++-3.7
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "Jt0baUgI9mwbUptf+4NpYJREp7s2YfDj+jH7e9ZTAdriuN6h8Qwtd+tHjIusAG5iO4wecHOh8kOxlDvqTAn6YiXnHELhJieNxFIFwUlyfwYpnNMF41JpO5nsvyffu/xSJHw1hUpJ5xJDOKOBAQ1UBR42gM56hJfyjRE8zoKxM0s="
addons:
coverity_scan:
project:
name: "dascandy/hippomocks"
description: "HippoMocks, C++11 Mocking Framework"
notification_email: [email protected]
build_command: make && make test
branch_pattern: master