forked from spring/spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (46 loc) · 1.42 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
os:
- linux
# - osx
sudo: required
dist: trusty
cache: ccache
addons:
coverity_scan:
project:
name: "spring/spring"
notification_email: ashdnazg.springrts@gmail.com
build_command: make engine-headless
branch_pattern: coverity_scan
language: cpp
compiler:
- gcc
- clang
env:
global:
- SPRING_DATADIR=~/build/spring/spring
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
# also note that forks don't get access to secure keys
# you have to test using a branch in the main repo
- secure: "QSZUdSH72Y+X73FBy6cDdhlMH3ppMewbU/LquXe/sIUdJE0LmcCFHnPayI91TTRgS8r6YXKh3DIhE9XTs1OUxmV+RUL84z85byAtotb+ukHSzlSLSGGZfrqey+/vrCXbYykfaxhazlVDfk5vx63lRYiD5lp5KLL24+PIdK6Qd5E="
matrix:
- TARGET="AAI CppTestAI E323AI HughAI KAIK NullAI NullJavaAI NullOOJavaAI RAI demotool"
- TARGET="engine-headless tests check"
matrix:
fast_finish: true
before_install:
- test "${TRAVIS_BRANCH}" != "coverity_scan" -o "${TRAVIS_JOB_NUMBER##*.}" = "1" || exit 0
- tools/scripts/travis_before_install.sh
install:
- tools/scripts/travis_install.sh
before_script:
- tools/scripts/travis_before_script.sh
script:
- test "${TRAVIS_BRANCH}" != "coverity_scan" || exit 0
- make -k $TARGET
notifications:
irc:
channels:
- chat.freenode.net#taspring
on_success: change
on_failure: change