tweaking travis config
This commit is contained in:
parent
a1f9fea971
commit
bbcad17a89
|
@ -72,7 +72,7 @@ before_script:
|
|||
- test -f twidere/src/google/AndroidManifest.xml
|
||||
|
||||
script:
|
||||
- ./gradlew -Pandroid.incrementalJavaCompile=false clean build
|
||||
- ./gradlew clean build
|
||||
|
||||
deploy:
|
||||
provider: releases
|
||||
|
|
|
@ -76,6 +76,12 @@ subprojects {
|
|||
exclude 'META-INF/ASL2.0'
|
||||
}
|
||||
|
||||
if (System.getenv('TRAVIS') == 'true') {
|
||||
compileOptions {
|
||||
incremental = false
|
||||
}
|
||||
}
|
||||
|
||||
if (android.hasProperty('buildTypes') && project.plugins.hasPlugin('com.android.application')) {
|
||||
android.buildTypes.each { buildType ->
|
||||
def file = rootProject.file('private/signing.properties')
|
||||
|
|
Loading…
Reference in New Issue