mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-18 10:29:26 +01:00
92077203d8
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)
25 lines
567 B
YAML
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
|