-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
46 lines (39 loc) · 976 Bytes
/
.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
notifications:
email:
on_success: never
on_failure: change
language:
- cpp
matrix:
include:
- os: linux
dist: trusty
compiler: gcc
- os: linux
dist: trusty
compiler: clang
- os: linux
dist: trusty
addons:
coverity_scan:
project:
name: "CoolProp/REFPROP-headers"
description: "Build submitted via Travis CI"
notification_email: [email protected]
build_command_prepend: "cmake ."
build_command: "cmake --build . --target Main"
branch_pattern: coverity_scan
# Build all branches
branches:
only:
- /.*/
env:
global:
- secure: "NPlkNTLzYM1bZgI09fsoShW36AmEQq7VJHARIxQkv37rvhEMcEzkWSumEvoZrVlk5v0oGSFofllAAUI9cIdDjBd6nQ8wyO+/PMFliiU5CtwAjA7WMwRHloH/G8dxbHbLFl/ahHrkIyyGuaJDMfsmd6VMBSmIVpbHUHeobbr6oUU="
before_script:
- mkdir -p build
- pushd build
- cmake ..
- popd
script:
- cmake --build build --target Main