Add travis support
This commit is contained in:
parent
71a4f2dd83
commit
2a6a2ff244
3 changed files with 22 additions and 0 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule ".travis-support"]
|
||||||
|
path = .travis-support
|
||||||
|
url = https://github.com/kemitix/kemitix-travis-support.git
|
1
.travis-support
Submodule
1
.travis-support
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b97def251b784ecc8de6d3cc30d2793ac0bd375e
|
18
.travis.yml
Normal file
18
.travis.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
language: java
|
||||||
|
jdk:
|
||||||
|
- oraclejdk8
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- "$HOME/.m2"
|
||||||
|
install: true
|
||||||
|
script: "./mvnw --batch-mode --errors --update-snapshots clean install"
|
||||||
|
after_success:
|
||||||
|
- sh .travis-support/coveralls.sh
|
||||||
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
deploy:
|
||||||
|
provider: script
|
||||||
|
script: sh .travis-support/deploy.sh
|
||||||
|
on:
|
||||||
|
branch: master
|
||||||
|
env:
|
||||||
|
global:
|
Loading…
Reference in a new issue