From 2a6a2ff244704dd107ab8141c078ccc5197a1fd4 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 20 Feb 2018 21:00:31 +0000 Subject: [PATCH] Add travis support --- .gitmodules | 3 +++ .travis-support | 1 + .travis.yml | 18 ++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 .gitmodules create mode 160000 .travis-support create mode 100644 .travis.yml diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c50d110 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule ".travis-support"] + path = .travis-support + url = https://github.com/kemitix/kemitix-travis-support.git diff --git a/.travis-support b/.travis-support new file mode 160000 index 0000000..b97def2 --- /dev/null +++ b/.travis-support @@ -0,0 +1 @@ +Subproject commit b97def251b784ecc8de6d3cc30d2793ac0bd375e diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..aa0c9ed --- /dev/null +++ b/.travis.yml @@ -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: