Remove Android Linting + R8 Mapping from CI

These steps were determined to be useless in practice as no one checked the lint report for any issues and R8 mappings were never utilized.
This commit is contained in:
PixelyIon 2022-05-30 21:45:53 +05:30
parent c516819e6e
commit 3da67d79a1
1 changed files with 0 additions and 17 deletions

View File

@ -34,17 +34,6 @@ jobs:
- name: Install CMake & Android NDK
run: echo "yes" | $ANDROID_HOME/tools/bin/sdkmanager "cmake;3.18.1" "ndk;25.0.8221429" --channel=3 | grep -v = || true
- name: Android Lint
run: |
chmod +x gradlew
./gradlew --stacktrace lint
- name: Upload Lint Report
uses: actions/upload-artifact@v2
with:
name: lint-result.html
path: app/build/reports/lint-results-debug.html
- name: Decode Keystore
env:
KEYSTORE_ENCODED: ${{ secrets.KEYSTORE }}
@ -74,11 +63,5 @@ jobs:
name: skyline-${{ github.run_number }}-release.apk
path: skyline-${{ github.run_number }}-release.apk
- name: Upload R8 Mapping
uses: actions/upload-artifact@v3
with:
name: r8-mapping.txt
path: app/build/outputs/mapping/release/mapping.txt
- name: Delete Build Folder
run: rm -rf app/build/