forked from organicmaps/organicmaps
[android][ci] Fix debug symbols
`uploadCrashlyticsSymbolFile` must be called after `assemble` Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
42ba130f33
commit
5026b0eb75
1 changed files with 9 additions and 9 deletions
18
.github/workflows/android-beta.yaml
vendored
18
.github/workflows/android-beta.yaml
vendored
|
@ -35,12 +35,14 @@ jobs:
|
|||
|
||||
- name: Set up SDK
|
||||
shell: bash
|
||||
working-directory: tools/android
|
||||
run: |
|
||||
(cd tools/android; ./set_up_android.py --sdk /opt/Android/sdk --ndk /opt/Android/ndk)
|
||||
./set_up_android.py --sdk /opt/Android/sdk --ndk /opt/Android/ndk
|
||||
|
||||
- name: Compile
|
||||
shell: bash
|
||||
run: (cd android; ./gradlew -PsplitApk=true -x lint -x lintVitalWebBeta assembleWebBeta)
|
||||
working-directory: android
|
||||
run: ./gradlew -PsplitApk=true -x lint -x lintVitalWebBeta assembleWebBeta uploadCrashlyticsSymbolFileWebBeta
|
||||
|
||||
- name: Upload arm64-v8a beta apk
|
||||
uses: actions/upload-artifact@v2
|
||||
|
@ -70,12 +72,10 @@ jobs:
|
|||
path: android/build/outputs/apk/android-web-x86-beta-*.apk
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Upload debug symbols
|
||||
shell: bash
|
||||
run: (cd android; ./gradlew uploadCrashlyticsSymbolFileWebBeta)
|
||||
|
||||
- name: Upload to App Distribution
|
||||
- name: Upload universal beta apk to App Distribution
|
||||
shell: bash
|
||||
working-directory: android
|
||||
run: |
|
||||
git --no-pager show -s --format='%s%n%n%b' HEAD > android/RELEASE
|
||||
(cd android; ./gradlew -x lint -x lintVitalWebBeta assembleWebBeta appDistributionUploadWebBeta)
|
||||
git --no-pager show -s --format='%s%n%n%b' HEAD > RELEASE
|
||||
# Sic: Firebase App Distribution doesn't support splits
|
||||
./gradlew -Parm64 -x lint -x lintVitalWebBeta assembleWebBeta uploadCrashlyticsSymbolFileWebBeta appDistributionUploadWebBeta
|
||||
|
|
Loading…
Add table
Reference in a new issue