зеркало из https://github.com/nextcloud/android.git
Fix build(?)
This commit is contained in:
Родитель
b25fb3005e
Коммит
e4e5a249ba
|
@ -8,7 +8,7 @@ pipeline:
|
|||
# build app and assemble APK, in debug mode
|
||||
- ./gradlew assembleDebug
|
||||
# run all the local unit tests of app module
|
||||
- ./gradlew :testDebug
|
||||
- ./gradlew :testGenericDebugUnitTest
|
||||
# run all the instrumented tests of app module - DISABLED until we get an stable setup for Espresso in Travis
|
||||
# - ./gradlew connectedDebugAndroidTest --info
|
||||
# install app, then assemble and install instrumented tests of app module
|
||||
|
|
|
@ -38,6 +38,13 @@ repositories {
|
|||
}
|
||||
}
|
||||
|
||||
tasks.withType(Test) {
|
||||
/// increased logging for tests
|
||||
testLogging {
|
||||
events "passed", "skipped", "failed"
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
lintOptions {
|
||||
abortOnError true
|
||||
|
@ -96,6 +103,7 @@ android {
|
|||
packagingOptions {
|
||||
exclude 'META-INF/LICENSE.txt'
|
||||
}
|
||||
|
||||
task checkstyle(type: Checkstyle) {
|
||||
configFile = file("${rootProject.projectDir}/checkstyle.xml")
|
||||
configProperties.checkstyleSuppressionsPath = file("${project.rootDir}/config/quality/checkstyle/suppressions.xml").absolutePath
|
||||
|
|
Загрузка…
Ссылка в новой задаче