forked from alxhoff/FreeRTOS-Emulator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
258 lines (232 loc) · 5.16 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# This will run on Travis' 'new' container-based infrastructure
sudo: false
language: c
os: linux
compiler: gcc
# Blacklist
branches:
only:
- master
- pong
- ci
addons:
apt:
packages:
- cmake
- libsdl2-ttf-dev
- libsdl2-mixer-dev
- libsdl2-image-dev
- libsdl2-gfx-dev
- libsdl2-dev
matrix:
include:
#
# Doxygen
#
- os: linux
env:
- TEST="Doxygen"
addons:
apt:
packages:
- doxygen
script:
- cd docs && doxygen Doxyfile
- cd ..
- |
if [[ -s "docs/doxygen_warnings.txt" ]]; then
echo "You must fix doxygen before submitting a pull request"
echo "Build doxygen: `cmake -DDOCS=ON .. & make` docs"
echo ""
cat doxygen_warnings.txt
exit -1
fi
# Generate and deploy documentation
deploy:
provider: pages
skip_cleanup: true
local_dir: docs/docs/html
github_token: $GH_REPO_TOKEN
keep_history: true
on:
branch: master
#
# Git Check
#
- os: linux
env:
- TEST="Git Check"
script:
- |
if [[ -n $(git diff --check HEAD^) ]]; then
echo "You must remove whitespace before submitting a pull request"
echo ""
git diff --check HEAD^
exit -1
fi
#
# Astyle Format
#
- os: linux
env:
- TEST="Astyle Format"
script:
- cd build
- cmake -DENABLE_ASTYLE=ON ..
- make
- make format
- |
if [[ -n $(git diff) ]]; then
echo "You must run make format before submitting a pull request"
echo ""
git diff
exit -1
fi
- cd ..
#
# Clang Tidy
#
- os: linux
env:
- TEST="Clang Tidy"
addons:
apt:
sources:
- llvm-toolchain-trusty-4.0
packages:
- libsdl2-ttf-dev
- libsdl2-mixer-dev
- libsdl2-image-dev
- libsdl2-gfx-dev
- libsdl2-dev
- clang-4.0
- clang-tidy-4.0
script:
- cd build
- cmake -DENABLE_CLANG_TIDY=ON ..
- make
- make tidy > output.txt
- cd ..
- |
if [[ -n $(grep "error: " build/output.txt) ]]; then
echo "You must pass the clang tidy checks before submitting a pull request"
echo "cmake -DENABLE_CLANG_TIDY=ON .. & make tidy"
echo ""
grep --color -E '^|error: ' build/output.txt
exit -1
elif [[ -n $(grep "warning: " build/output.txt) ]]; then
echo "Warnings:"
grep --color -E '^|warning: ' build/output.txt
echo -e "\033[1;32m\xE2\x9C\x93 passed - with warnings\033[0m $1"
exit 0
else
echo -e "\033[1;32m\xE2\x9C\x93 passed - no warnings\033[0m $1"
exit 0
fi
#TODO https://scan.coverity.com/travis_ci
# #
# # Coverity Scan
# #
# - os: linux
# env:
# - TEST="Coverity Scan"
# coverity_scan:
# project:
# name: "alxhoff/FreeRTOS_Emulator"
# description: "x86 POSIX FreeRTOS Emulator"
# notification_email: [email protected]
# build_command_prepend: "cmake .."
# build_command: "make"
# branch_pattern: master
# script:
# - cd build
# - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
# - cd ..
#
# CppCheck
#
- os: linux
env:
- TEST="CppCheck"
addons:
apt:
packages:
- cmake
- libsdl2-ttf-dev
- libsdl2-mixer-dev
- libsdl2-image-dev
- libsdl2-gfx-dev
- libsdl2-dev
script:
- cd build
- cmake -DENABLE_CPPCHECK=ON ..
- make
- make check
- cd ..
#
# Google Address Sanitizer
#
- os: linux
env:
- TEST="Google Address Sanitizer"
script:
- cd build
- cmake -DENABLE_ASAN=ON ..
- make
- ./../bin/FreeRTOS_Emulator_asan &
- sleep 20
- kill %1
- cd ..
#
# Google Undefined Sanitizer
#
- os: linux
env:
- TEST="Google Undefined Sanitizer"
script:
- cd build
- cmake -DENABLE_USAN=ON ..
- make
- ./../bin/FreeRTOS_Emulator_usan &
- sleep 20
- kill %1
- cd ..
#
# Google Thread Sanitizer
#
- os: linux
env:
- TEST="Google Thread Sanitizer"
script:
- cd build
- cmake -DENABLE_TSAN=ON ..
- make
- ./../bin/FreeRTOS_Emulator_tsan &
- sleep 20
- kill %1
- cd ..
#TODO check for errors
#
# Codecov
#
- os: linux
env:
- TEST="Codecov"
script:
- cd build
- cmake -DENABLE_COVERAGE=ON ..
- make
- make test &
- sleep 20
- cd ..
- bash <(curl -s https://codecov.io/bash)
#
# Standard Build
#
- os: linux
env:
- TEST="Standard Build"
script:
- cd build
- cmake ..
- make