-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
30 lines (30 loc) · 863 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
language: java
sudo: false
jdk:
- oraclejdk8
install:
- mvn --settings .ci/settings.xml install -Dmaven.test.skip=true -Dgpg.skip -Dmaven.javadoc.skip=true
before_install:
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE
--import; fi
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE
--import-ownertrust; fi
after_success:
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent verify jacoco:report
coveralls:report -Dgpg.skip
cache:
directories:
- "$HOME/.m2/repository"
- "$HOME/.sonar/cache"
notifications:
email:
- marcos.hgb@gmail.com
- matheus.ggoes@outlook.com
deploy:
- provider: script
script: bash .ci/deploy.sh
skip_cleanup: true
on:
branch: master
repo: marcosbarbero/spring-boot-starter-purge-accesslog
jdk: oraclejdk8