-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
58 lines (49 loc) · 2.73 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
# Use new Travis-CI infrastructure
sudo: false
# Source language and JDK version to use
language: java
jdk: oraclejdk8
# Use cached Maven dependencies
cache:
directories:
- $HOME/.m2
# Pre-install Maven dependencies
install: mvn dependency:go-offline
# Compile and test source
script: mvn clean -DbuildNumber=$TRAVIS_BUILD_NUMBER -DciSystem=travis -Dcommit=${TRAVIS_COMMIT:0:7}
# Fetch resources, run deployment goal/task, and generate Javadocs and reports
after_success:
# Get files for use with build, namely the custom Maven settings.xml and scripts
- "git clone https://github.com/flow/travis-ci-resources.git $HOME/build/flow/travis"
# DEVELOP: Check if commit is not a pull request, if repo is official, if branch is not master; then deploy artifacts
- "[[ $TRAVIS_PULL_REQUEST == false ]] && [[ $TRAVIS_REPO_SLUG == flow/commands ]] && [[ $TRAVIS_BRANCH == develop ]] && mvn javadoc:jar source:jar deploy --settings $HOME/build/flow/travis/settings.xml"
# RELEASE: Check if commit is not a pull request, if repo is official, if branch is master; then run deployment script
- "[[ $TRAVIS_PULL_REQUEST == false ]] && [[ $TRAVIS_REPO_SLUG == flow/commands ]] && [[ $TRAVIS_BRANCH == master ]] && $HOME/build/flow/travis/deploy.sh && $HOME/build/flow/travis/gh-pages.sh"
# Generate Javadocs and report for Coveralls.io
- "mvn javadoc:javadoc cobertura:cobertura coveralls:report -DserviceJobId=$TRAVIS_JOB_ID"
# RELEASE: Deploy JARs to GitHub Releases
deploy:
provider: releases
api-key: $GITHUB_TOKEN
file_glob: true
file: target/flow-commands-*.jar
skip_cleanup: true
on:
branch: master
# Notification services
notifications:
# Disable build status email notifications, until the issue with forks is fixed
email: false
webhooks:
# Send build information and status to Notifico
- http://n.tkte.ch/h/2043/_Sv5ju6JlpWYN8UhlzGeABqR
# Environmental system variables
env:
global:
# Make the log output cleaner
- TERM=dumb
# Super secure, encrypted variables! Ssssh!
- secure: "yJGhC2f1qRlR9TvABLiUSTrEBEZilBc7CO8YNmA2eB9pni6+HXw/Jj4GsiIaUN6ZB7j40MAKi6+Wod7LkYHlDgpTg7/GqSLWAjCzbOrTsQYYht/AjDk74p2SOY13nbJFUXk6dRo4f8OEya62Js436XA/WNNck4diaeaIgqQGe/E="
- secure: "rcatKaxHGg8KT4jBcQ/J5TTOJsLcbe3CQesq/z57EzL0kOipCd8V5DxYVnYQ4DBYCmkZsc86yIBDhYqXSy9g5Emri6Z5/OzQZuh1SeiesMnwX4Zg5EsEC4MO5t1LfZsGNlBfsfi8We2/uwoKrmGt6jx4lteh+iyqpIZ1xBeITlU="
- secure: "irEsnbIH14DXBw2w8NNvGwqW8em6TvL8W4eo+OGIxguzTRkkRNQkTc7I984o+IfHVCZvcUCPHSku+ZJ4vrnPqfRvDUhdSsN/r9KzHudkz5TS0VVccJ2N2RwHOoMoSQphfKu9TyAxf5QM9AepkDiJEO6wlQCHBe8EZaHFQ1KOQtc="
- secure: "A9SThahd9DqeXaM/xUUp0/8HHxivuUVIJNq8ujXjXoE7uZJZEsAUAGU2t/LrLmp2rf7eXVYlW7KIiFHj9C/XCL/r5clRiS8I3GCxzITcVsLev916LjW0kSf//hBGxUzOl8S3f7ecfvF3xGQfjq928aoej2FucnPVXVLNaHfn5p8="