From 57f0f98ba99017044312e5c97f57ff236215937c Mon Sep 17 00:00:00 2001 From: Artem Zinnatullin Date: Tue, 15 Mar 2016 23:40:22 +0300 Subject: [PATCH] Add integration of Travis CI with Codecov.io --- .travis.yml | 8 ++++++++ ci.sh | 3 --- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ab28aa6c..273c3e1dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,13 @@ sudo: false language: android jdk: oraclejdk8 +before_install: + - pip install --user codecov + android: components: + - platform-tools + - tools - android-23 - build-tools-23.0.1 - extra-android-m2repository @@ -13,6 +18,9 @@ android: script: - sh ci.sh + +after_success: + - codecov notifications: email: diff --git a/ci.sh b/ci.sh index 960f6923f..3bbf1bad2 100644 --- a/ci.sh +++ b/ci.sh @@ -1,6 +1,3 @@ #!/bin/bash # Please run it from root project directory ./gradlew clean build checkstyle -PdisablePreDex - -# TODO REMOVE -cat storio-common/build/outputs/lint-results.xml \ No newline at end of file