forked from OPENDAP/olfs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
59 lines (47 loc) · 1.48 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
# Initial Travic-CI control file. 6.11.15 jhrg
# Use the docker container-based build systems
sudo: false
language: java
jdk:
- openjdk8
- openjdk7
# whitelist
branches:
only:
- master
- coverity_scan
notifications:
email:
- ndp@opendap.org
- jgallagher@opendap.org
- ukari@opendap.org
# Use this to prepare the system to install prerequisites or dependencies
#
# before_install:
# Use this to install any prerequisites or dependencies necessary to run your build
#
# install:
# Use this to prepare your build for testing
# e.g. copy database configurations, environment variables, etc.
#
# before_script:
# All commands must exit with code 0 on success. Anything else is considered failure.
#
script:
- ant server -DHYRAX_VERSION=CI-Build -DOLFS_VERSION=CI-Build
- ant check
# after_script:
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "IrgvTLC1I3GKe1bFiNNXBYqwqy72+26IchD7MvHg762OhAu/Ftit9Sw5aYd5ccqDY6CgfUzQ9gJemoABodMZ4iKeYti7snlRsxo+Kv2H5kJFLRwHYPfSu2wFLcy7Spi0w8Gt2OL/DN39nUAlYvnechu9XgNalMHN4M411ZfubG8="
addons:
coverity_scan:
project:
name: "OPENDAP/olfs"
description: "Build submitted via Travis CI"
notification_email: ndp@opendap.org
build_command_prepend: "ant clean"
build_command: "ant server -DHYRAX_VERSION=Coverity_Build -DOLFS_VERSION=Coverity_Build"
branch_pattern: coverity_scan