diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-02-21 20:42:56 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 15:12:56 +0000 |
commit | 82e3ba6ce5bf770ea5b81fa5debdf7472e916cfd (patch) | |
tree | 8d814881013c0f53414ec2c8256dcc3d28d52e6a | |
parent | bbbcc76d6562531502ffc4db7831ab34acddbacf (diff) |
Add CI job to assemble release APKs and fix build (#1742)
-rw-r--r-- | .github/workflows/pull_request.yml | 35 | ||||
-rw-r--r-- | app/proguard-rules.pro | 2 |
2 files changed, 36 insertions, 1 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c66a5b0c..bad91e27 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -188,3 +188,38 @@ jobs: uses: gradle/gradle-build-action@v2.1.3 with: arguments: --no-configuration-cache lintDebug + + assemble-release-apks: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2.4.0 + with: + fetch-depth: 0 + + - name: Check if relevant files have changed + uses: actions/github-script@v6.0.0 + id: service-changed + with: + result-encoding: string + script: | + const script = require('.github/check-changed-files.js') + return await script({github, context}) + + - name: Set up JDK + if: "${{ steps.service-changed.outputs.result == 'true' }}" + uses: actions/setup-java@v2.5.0 + with: + distribution: zulu + java-version: 17 + cache: gradle + + - name: Copy CI gradle.properties + if: "${{ steps.service-changed.outputs.result == 'true' }}" + run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties + + - name: Assemble non-free release + if: "${{ steps.service-changed.outputs.result == 'true' }}" + uses: gradle/gradle-build-action@v2.1.3 + with: + arguments: --no-configuration-cache aNFR diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 13b032ec..9bd2a665 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -1,4 +1,4 @@ --keepattributes SourceFile,LineNumberTable,EnclosingMethod +-keepattributes SourceFile,LineNumberTable,EnclosingMethod,InnerClasses -dontobfuscate -keep class com.jcraft.jsch.** |