.travis-support: added
This commit is contained in:
parent
62e4d56c9a
commit
3b7d3435cf
4 changed files with 20 additions and 2 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 b8593e541ba9a11447fa9559a83e5f99097ca4d2
|
17
.travis.yml
17
.travis.yml
|
@ -1,5 +1,18 @@
|
|||
language: java
|
||||
jdk:
|
||||
- oraclejdk8
|
||||
- oraclejdk8
|
||||
cache:
|
||||
directories:
|
||||
- "$HOME/.m2"
|
||||
install: true
|
||||
script: "./mvnw clean install"
|
||||
after_success:
|
||||
- mvn clean test jacoco:report coveralls:report
|
||||
- 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:
|
||||
|
|
|
@ -4,6 +4,7 @@ CHANGELOG
|
|||
0.3.0
|
||||
-----
|
||||
|
||||
* Add `.travis-support`
|
||||
* Avoid danger of JVM-level deadlock during `Condition` initialisation
|
||||
* Upgrade `kemitix-parent` to 3.2.0
|
||||
* Upgrade `kemitix-checkstyle-parent` to 3.2.0
|
||||
|
|
Loading…
Reference in a new issue