Apktool/.travis.yml
Connor Tumbleson 92077203d8 have travis use github public URLs
attempt to run tests with default tasks

remove notifications & override install command

add git config setup for travis-ci

set email/name globally on travis-ci

run applyPatches before compileJava

remove incremental java build

add "build fatJar proguard" to script run

applyPatches before running script

Update build.gradle

add wrapper to footer (post cleanup)
2015-10-14 13:34:30 -05:00

25 lines
567 B
YAML

env:
- TERM=dumb
language: java
git:
submodules: false
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
os:
- linux
before_install:
- git config --global user.email "travis@connortumbleson.com"
- git config --global user.name "Travis CI Bot"
- sudo apt-get update -qq
- sudo apt-get install -qq libstdc++6:i386 lib32z1 expect
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install: ./gradlew applyPatches
script: ./gradlew build fatJar proguard
branches:
only:
- master
- stable