Skip to content

Commit

Permalink
Revert "Add build type for CI builds"
Browse files Browse the repository at this point in the history
This reverts commit 1bc3791.
  • Loading branch information
divadsn committed Mar 4, 2018
1 parent 7b7e725 commit 9f23a96
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 17 deletions.
5 changes: 2 additions & 3 deletions .drone.yml
Expand Up @@ -13,7 +13,7 @@ pipeline:
- TRAVIS_BUILD_NUMBER=${DRONE_BUILD_NUMBER}
- TRAVIS_EVENT_TYPE=${DRONE_BUILD_EVENT}
commands:
- bash ./gradlew assembleCi
- bash ./gradlew assembleDebug
deploy:
image: lawnchairlauncher/drone-telegram:latest
secrets: [ bot_token, channel_id ]
Expand All @@ -23,8 +23,7 @@ pipeline:
telegram:
image: appleboy/drone-telegram:latest
secrets: [ bot_token ]
environment:
- PLUGIN_TOKEN=${BOT_TOKEN}
token: ${BOT_TOKEN}
to: "-1001092684628"
message: >
{{#success build.status}}
Expand Down
8 changes: 0 additions & 8 deletions app/build.gradle
Expand Up @@ -66,14 +66,6 @@ android {
minifyEnabled false
}
}
ci {
debuggable true
applicationIdSuffix ".ci"
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (System.getenv("TRAVIS_EVENT_TYPE") != "pull_request") {
signingConfig signingConfigs.travis
}
}
release {
applicationIdSuffix ".plah"
buildConfigField "boolean", "ENABLE_LAWNFEED", "true"
Expand Down
Empty file modified gradlew 100755 → 100644
Empty file.
6 changes: 1 addition & 5 deletions launcherclient/build.gradle
Expand Up @@ -16,12 +16,8 @@ android {

}
buildTypes {
ci {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled true
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down
2 changes: 1 addition & 1 deletion lawnfeed/build.gradle
Expand Up @@ -37,7 +37,7 @@ android {
}
}
release {
minifyEnabled true
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down

0 comments on commit 9f23a96

Please sign in to comment.