-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
28 lines (28 loc) · 942 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
#language: java
#jdk:
# - oraclejdk8
#
## Each job in Travis CI has several steps:
## https://docs.travis-ci.com/user/job-lifecycle/
## The 'language: java' directive sets up sane defaults to test common java applications
## We use the defaults for installing dependencies, compiling and testing maven applications
## In our case it will be 'mvn install' followed by 'mvn test'
#
#before_script:
# - chmod +x gradlew
#script:
# - ./gradlew check
# - ./gradlew jacocoTestReport
#
#env:
# global:
# - CODECOV_TOKEN='a5cd0931-0a26-4b23-9e09-788b20525cc7'
#test:
# post:
# - if [ -e ./gradlew ]; then ./gradlew jacocoTestReport;else gradle jacocoTestReport;fi
# - bash <(curl -s https://codecov.io/bash)
#
## This is to enable CodeCov's coverage
## If a build is successful, the code is submitted for coverage analysis
#after_success:
# - bash <(curl -s https://codecov.io/bash)