blob: c6213b4cc3fd2f2cb738e694cd193349e9566df7 (
plain)
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
|
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
env:
matrix:
- BUILD_MODE="shared"
- BUILD_MODE="static"
- BUILD_MODE="coverage"
- BUILD_MODE="sanitizer"
matrix:
exclude:
- os: osx
compiler: gcc
- compiler: clang
env: BUILD_MODE="coverage"
- compiler: clang
env: BUILD_MODE="sanitizer"
sudo: required
install:
- ./src/scripts/ci/setup.sh
script:
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then ./src/scripts/ci/build.sh ; fi
after_success:
- ./src/scripts/ci/after_success.sh
notifications:
email: lloyd@randombit.net
addons:
coverity_scan:
project:
name: "randombit/botan"
notification_email: lloyd@randombit.net
build_command_prepend: "./configure.py"
build_command: "make -j2"
branch_pattern: coverity_scan
|