-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
32 lines (27 loc) · 898 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
31
32
language: java
jdk: oraclejdk8
before_install:
- sudo apt-get update -y
- sudo apt-get install -y python-software-properties build-essential
- sudo apt-get install -y libgd2-xpm ia32-libs ia32-libs-multiarch
- sudo pip install codecov
env:
global:
- APP_VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.4.0:exec)
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/19792f1aab7f7585c739
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
after_success:
- codecov
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file:
- "poker-helper-gui/dist/poker-helper-gui-$APP_VERSION-bin.zip"
skip_cleanup: true
on:
tags: true