From 3da67d79a193d85e08973e182a9ec7baadac1faa Mon Sep 17 00:00:00 2001 From: PixelyIon Date: Mon, 30 May 2022 21:45:53 +0530 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a1e8455..44fcbffc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/