forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
99 lines (82 loc) · 2.41 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
97
98
99
# this file is HEAVILY influenced by https://github.com/boostorg/hana/blob/master/.travis.yml
sudo: false
language: c++
cache: ccache
script: make
notifications:
email: false
irc: "irc.freenode.org#Cataclysm-DDA"
use_notice: true
skip_join: true
git:
depth: 500
env:
global:
# Workaround for https://github.com/travis-ci/travis-ci/issues/4681
# "Defining the build matrix only with matrix.include leads to an additional, unwanted job"
matrix:
- TRAVIS_EMPTY_JOB_WORKAROUND=true
addons:
# these apt sources will be referenced later (by using *name)
apt:
sources: &apt_sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
- llvm-toolchain-precise-3.5
- llvm-toolchain-precise-3.6
- llvm-toolchain-precise-3.7
- llvm-toolchain-precise-3.8
- llvm-toolchain-precise-3.9
- llvm-toolchain-trusty
- llvm-toolchain-trusty-4.0
compiler: gcc
os: linux
matrix:
exclude:
- env: TRAVIS_EMPTY_JOB_WORKAROUND=true
include:
# coverage
- env: COMPILER=g++-4.8 CODE_COVERAGE=true
compiler: gcc
addons: &gcc48
apt:
packages: ["g++-4.8", "g++-4.8-multilib", "libc6-dbg", "libc6-dbg:i386", "lcov", "astyle"]
sources: *apt_sources
# GCC 4.8
- env: COMPILER=g++-4.8
compiler: gcc
addons: &gcc48
apt:
packages: ["g++-4.8", "g++-4.8-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 4.9
- env: COMPILER=g++-4.9
compiler: gcc
addons: &gcc49
apt:
packages: ["g++-4.9", "g++-4.9-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 5
- env: COMPILER=g++-5
compiler: gcc
addons: &gcc5
apt:
packages: ["g++-5", "g++-5-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 6
- env: COMPILER=g++-6
compiler: gcc
addons: &gcc6
apt:
packages: ["g++-6", "g++-6-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# Clang 4.0
- env: COMPILER=clang++-4.0 CXXFLAGS=-Wno-error=unused-command-line-argument
dist: trusty
addons: &clang40
apt:
packages: ["clang-4.0", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
before_script:
- ${COMPILER} --version
script: CXX="ccache $COMPILER" make -j3 RELEASE=1