-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.travis.yml
63 lines (52 loc) · 1.31 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
language: cpp
sudo: false
dist: trusty
compiler:
- gcc
- clang
branches:
only:
- master
os:
- linux
env:
global:
- secure: MOmSGUmQlEBdArqZgzvPq6Rc3fN/jqpHXgFqczCRZre8QOcokdzbkuhib5BntajR73y11gqzmPFFZ9sr+m3xEt7phM/PtxDcsZmtzy8gF5vLpY2HOvdN9rakp6uM2WSmWFv9T+Ebj3Ihd+yob5e4Tnszm4tJoJMCHO0JNW/thaU=
matrix:
- BUILD_TYPE=cmake BUILD_MODE=Release
- BUILD_TYPE=automake BUILD_MODE=Debug
- BUILD_TYPE=cmake BUILD_MODE=Debug
- BUILD_TYPE=automake BUILD_MODE=Release
- BUILD_TYPE=doxygen BUILD_MODE=Debug
matrix:
exclude:
- compiler: clang
env: BUILD_TYPE=doxygen BUILD_MODE=Debug
addons:
coverity_scan:
project:
name: mgerhardy/simpleai
description: Build submitted via Travis CI
notification_email: martin.gerhardy@gmail.com
build_command_prepend: cmake .
build_command: make -j 4
branch_pattern: coverity_scan
apt:
packages:
- doxygen
- graphviz
- qt5-default
- qtbase5-dev
before_install:
- openssl aes-256-cbc -K $encrypted_9796cc8955c8_key -iv $encrypted_9796cc8955c8_iv
-in .travis/travisci_rsa.enc -out .travis/travisci_rsa -d
- chmod 0600 .travis/travisci_rsa
- cp .travis/travisci_rsa ~/.ssh/id_rsa
script:
- ".travis/configure.sh"
- ".travis/cmake.sh"
- ".travis/doxygen.sh"
notifications:
email: true
cache: apt
cache: ccache