forked from cpputest/cpputest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (54 loc) · 1.37 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
language: cpp
sudo: false
matrix:
include:
- compiler: clang
env: BUILD=autotools
addons:
apt:
packages:
- valgrind
- compiler: clang
env: BUILD=cmake
- compiler: clang
env: BUILD=autotools_gtest
- compiler: clang
env: BUILD=cmake_gtest
- compiler: gcc
env: BUILD=autotools
addons:
apt:
packages:
- valgrind
- compiler: gcc
env: BUILD=cmake
- compiler: gcc
env: BUILD=autotools_gtest
- compiler: gcc
env: BUILD=cmake_gtest
- compiler: gcc
env: BUILD=cmake_coverage
- compiler: gcc
env: BUILD=test_report
- compiler: wcl
env: BUILD=make_dos
addons:
apt:
packages:
- dosbox
global:
- os: linux
- rvm: '1.9.3'
- secure: |-
P05xUfJVw5YM4hF7hzQLjyMzDD4Q1/fyWP9Uk5aK5VrSWNY99EuxldXI5QK/
vA1NkcW49tQW1wQvBlRtdlLNOmUfDP/oiJFXPwNn4dqwOIOEet2P7JO/5hnH
MNHlZmGu2WpoZREhOFBfsIhK0IP8mloqLDq2XemBdga/LWygrLU=
- secure: |-
Y/8iNkf6uEbE3qltnM+7mGlCvFWzyttwwRGgVGw1m9xOiUJcobvOImQRU8XZ
91dgO+Fz0A3mljqs1sK1OPjpXmFGE1jP/NlotMw0WlDOuSIDjQ4ubwdTNGAw
NY53R9ygbIjEmqxHAJm9mOZqxW2hNaoI7TcX6oX248/hLibyx8M=
before_script:
- export CPPUTEST_BUILD_DIR=$TRAVIS_BUILD_DIR/cpputest_build
- mkdir -p $CPPUTEST_BUILD_DIR && cd $CPPUTEST_BUILD_DIR
script:
- "../scripts/travis_ci_build.sh"