File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ language: cpp
8
8
# Compiler selection
9
9
compiler : gcc
10
10
11
+ env :
12
+ global :
13
+ # coverity key
14
+ - secure : " MQNBwhFpj7NaDbN6NujsXQGRMpBYHvGtcjLXY9gCXhLUw+Ex40ArBEy1IEQAol7aGtFZiTZDijH1ihL4itzVmu4Bo2sx5WdMGRFS5tp/t4zFFiqpmmtbkYOUHY8wAp3xyxV2NL2EU0KlDloNvFd/4tY2opklUB3eTF+7TQ5CmwWRFGOf2GpGpmQ3+KS1ANhrxdn9sQIP8rSU+JD1/zwrAgeEN7RAxB23t9AU9MeGsOW3CCp3te8vrgNJ/xnOh7T4F/8hQ4lA5iCqqf7OUvcWOif3uBPzlckBTmQ6ylMvOncslj6TBkPJOd33MOmZcWHiPPEAvcXQlzERaLqgHLIg5A/0aTVo27J4iImHbwE61L2JhWvrx5mPkKz/9aTpZyYyQL1hXInk8R9VJ5+JENA5+maF+KNvdf1Zp2Foa3BLFFdRl5thpgyafvcEAZ/7KJ1BC3u4OgTBhh9Tw+1UMFXB9W9+2W2iYUIun8BunDny1aLmnp/t7O1auXjqW2lAWHtH86v9NickDupzkw1klN3Ac+hmfBDffyxUjE2LlmjpC20z2uwKrZCT7XRhalYstPPIwQ6uGr6TVZjqq6mzEjpmmF93U8WYx7iWBJmen0CHbkjY3n8dbUe7aiXQHwjbXFZ8MsWszFvr9eicJOcAOxXKK5jOw4uQSER6NI2H04rwbIs="
15
+
11
16
# addons
12
17
addons :
13
18
apt :
@@ -17,9 +22,20 @@ addons:
17
22
sources :
18
23
- ubuntu-toolchain-r-test
19
24
25
+ coverity_scan :
26
+ project :
27
+ name : " mpaland/avl_array"
28
+ description : " <Your project description here>"
29
+ notification_email :
[email protected]
30
+ build_command_prepend : " make clean"
31
+ build_command : " make"
32
+ branch_pattern : master
33
+
20
34
before_install :
21
35
# install coveralls
22
36
- pip install --user cpp-coveralls
37
+ # connect coverity
38
+ - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
23
39
24
40
# Active branches
25
41
branches :
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ SED = $(PATH_TOOLS_UTIL)sed
107
107
108
108
GCCFLAGS = $(C_INCLUDES ) \
109
109
$(C_DEFINES) \
110
+ -std =c++11 \
110
111
-g \
111
112
-Wall \
112
113
-pedantic \
Original file line number Diff line number Diff line change 1
1
# AVL Array container class
2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/mpaland/avl_array.svg?branch=master )] ( https://travis-ci.org/mpaland/avl_array )
4
- [ ![ Coverage Status] ( https://coveralls.io/repos/github/mpaland/avl_array/badge.svg?branch=master )] ( https://coveralls.io/github/mpaland/avl_array?branch=master )
4
+ [ ![ Coveralls Status] ( https://coveralls.io/repos/github/mpaland/avl_array/badge.svg?branch=master )] ( https://coveralls.io/github/mpaland/avl_array?branch=master )
5
+ [ ![ Coverity Status] ( https://img.shields.io/coverity/scan/14061.svg )] ( https://scan.coverity.com/projects/mpaland-avl_array )
5
6
[ ![ Github Issues] ( https://img.shields.io/github/issues/mpaland/avl_array.svg )] ( http://github.com/mpaland/avl_array/issues )
6
7
[ ![ Github Releases] ( https://img.shields.io/github/release/mpaland/avl_array.svg )] ( https://github.com/mpaland/avl_array/releases )
7
8
[ ![ GitHub license] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://raw.githubusercontent.com/mpaland/avl_array/master/LICENSE )
You can’t perform that action at this time.
0 commit comments