diff options
author | Mats Wahlberg <rcxslinger@gmail.com> | 2020-04-21 21:33:27 +0200 |
---|---|---|
committer | Mats Wahlberg <rcxslinger@gmail.com> | 2020-09-30 13:52:31 +0200 |
commit | 3f0420544a87a974a04b957606a2ace8f9b96e47 (patch) | |
tree | 64052ec449d41e0d0f7f4ad3c5d56c27cc2142f3 /.circleci | |
parent | 4c24d1c29a726a67eabf86a9f9866e5daeca4ae8 (diff) | |
download | AntennaPod-3f0420544a87a974a04b957606a2ace8f9b96e47.zip |
Updated circleci debug and release jobs to explicitly build Play flavors
Changed the gradlew build targets assembleRelease to assemblePlayRelease
and assembleDebug to assemblePlayDebug, because the old targets causes
files for the free builds to get compiled when not needed. It's
unnecessary and also done without -PfreeBuild which gives build errors.
These are also the targets used in makeRelease.sh, so the workflow
should better match the expected.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index ccdd5aaee..a0cf32f37 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,7 +38,7 @@ workflows: build-steps: - run: name: Build debug - command: ./gradlew assembleDebug -PdisablePreDex + command: ./gradlew assemblePlayDebug -PdisablePreDex - run: name: Execute debug unit tests command: ./gradlew :core:testPlayDebugUnitTest -PdisablePreDex @@ -47,7 +47,7 @@ workflows: build-steps: - run: name: Build release - command: ./gradlew assembleRelease -PdisablePreDex + command: ./gradlew assemblePlayRelease -PdisablePreDex - run: name: Execute release unit tests command: ./gradlew :core:testPlayReleaseUnitTest -PdisablePreDex |