|
@@ -13,11 +13,11 @@ install:
|
13
|
13
|
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then cmake/travis_install_mac.sh; fi
|
14
|
14
|
|
15
|
15
|
script:
|
16
|
|
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake/travis_script_linux.sh; fi
|
17
|
|
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then cmake/travis_script_mac.sh; fi
|
|
16
|
+ - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake/travis_script_linux.sh; fi; fi
|
|
17
|
+ - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then if [ "$TRAVIS_OS_NAME" = "osx" ]; then cmake/travis_script_mac.sh; fi; fi
|
18
|
18
|
|
19
|
19
|
after_success:
|
20
|
|
- - if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake/travis_after_success_linux.sh; fi
|
|
20
|
+ - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake/travis_after_success_linux.sh; fi; fi
|
21
|
21
|
|
22
|
22
|
notifications:
|
23
|
23
|
email:
|
|
@@ -35,6 +35,10 @@ os:
|
35
|
35
|
- linux
|
36
|
36
|
- osx
|
37
|
37
|
|
|
38
|
+matrix:
|
|
39
|
+ allow_failures:
|
|
40
|
+ - os: osx
|
|
41
|
+
|
38
|
42
|
env:
|
39
|
43
|
global:
|
40
|
44
|
|
|
@@ -47,7 +51,7 @@ addons:
|
47
|
51
|
name: "xythobuz/OpenRaider"
|
48
|
52
|
description: "Build submitted via Travis CI"
|
49
|
53
|
notification_email: taucher.bodensee@googlemail.com
|
50
|
|
- build_command_prepend: "cmake; make clean"
|
|
54
|
+ build_command_prepend: "cmake .; make clean"
|
51
|
55
|
build_command: "make -j 4"
|
52
|
56
|
branch_pattern: coverity_scan
|
53
|
57
|
|