This is an automated email from the ASF dual-hosted git repository. bdemers pushed a commit to branch add-travis-ci in repository https://gitbox.apache.org/repos/asf/shiro.git
commit c2fd14c209a7b0ea8a941560cb1b63d1adc602c5 Author: Brian Demers <[email protected]> AuthorDate: Tue Jul 23 11:38:47 2019 -0400 Adding .travis.yml for PR builds --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0eb2689 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: java + +jdk: +- oraclejdk8 +- openjdk11 + +# skip the Travis-CI install phase because Maven handles that directly +install: +- 'true' + +script: +- "mv -e -Pci,docs install apache-rat:check" + +after_success: +- bash <(curl -s https://codecov.io/bash) -f test-coverage/target/site/jacoco-aggregate/jacoco.xml
