forked from flowpowered/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
58 lines (49 loc) · 2.72 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/react ]] && [[ $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/react ]] && [[ $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/react-*.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/2706/sBWzX8LRWtZPWo2EmAlFQzAM
# Environmental system variables
env:
global:
# Make the log output cleaner
- TERM=dumb
# Super secure, encrypted variables! Ssssh!
- secure: "f9ktzIdIVbDJ6Ufp994qV3S05p/0o8MWu0VXFjy+zZDeAXJ8kpKspyDCRZc3rEXNknt4JZjbe/0azv0u/lzkc5Vkvj57ShaWrihh0owMAaU7kg+ot4hFrhPXXBIosOhU/2vx253WqMoFO8mPtQ/zet/DnY7IyCEp3ZnAF4Emc44="
- secure: "FUdwmQB3Xammty3HuixmHU6CeCrmkapcfSOAT4nI4ASmAyRnhmSgxYnQjM/5lCkltqQWOEnrDQezaPBWTq/y69vMOu6Wjp7kANV/GXFItRTHvTn53ty0lAf+tpaLAgaqY7h1qHb++RuTJ8TFbgab+4YFIfonO823bCYx1+AIKiA="
- secure: "R+cvcpDT+zRcevpz1hKW3vZVLCFzDgJyy6HzyzN7a0TdgxQeWZFnBil9okak6HqVOraUQ4ct4tO7Qd9WWzq0kz5zQNttcuez6e69HApjquEvhnnfVa8QcIMrKDQ6mE3UztuIfQ95ytmvoNPbGsFyw9fpVNrLGcn8k09DtBlQPw0="
- secure: "VN8Ou5EZjUz6RF2Ac/CEYH/hR3P4xbOSNgnAGL++Zb8CHUAY7CMuhd3rAqC1F1SETvw/r2oJRc7eSDUzAlnvZKRgCUHoHDtkPCJazM5VxmNylBPMAMHD13zSKnRbIgRTJI4cpfzYYw1bznBYkbIEIfihTTfijEOoHWrxZncirEg="