diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-08-21 02:38:58 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 02:38:58 +0530 |
commit | 1b8fedd8fa6462db230530f01b373fa28d5bc462 (patch) | |
tree | a5dd1bae28e0ddff936fef77ea781e430be1282f /.github | |
parent | cf5310e0fb20b6b090972ccf409596c078d8908d (diff) |
github: switch to debug builds (#1037)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull_request.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 8306d009..e6e600fb 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: api-level: [23, 29] - variant: [freeRelease, nonFreeRelease] + variant: [freeDebug, nonFreeDebug] steps: - name: Check if relevant files have changed @@ -70,7 +70,7 @@ jobs: run: ./gradlew test${{ matrix.variant }} lint${{ matrix.variant}} -Dpre-dex=false - name: Run instrumentation tests on free flavor - if: ${{ steps.service-changed.outputs.result == 'true' && matrix.variant == 'freeRelease' }} + if: ${{ steps.service-changed.outputs.result == 'true' && matrix.variant == 'freeDebug' }} uses: reactivecircus/android-emulator-runner@v2.11.0 with: api-level: ${{ matrix.api-level }} @@ -82,7 +82,7 @@ jobs: ./gradlew :app:connectedFreeDebugAndroidTest - name: Run instrumentation tests on nonFree flavor - if: ${{ steps.service-changed.outputs.result == 'true' && matrix.variant == 'nonFreeRelease' }} + if: ${{ steps.service-changed.outputs.result == 'true' && matrix.variant == 'nonFreeDebug' }} uses: reactivecircus/android-emulator-runner@v2.11.0 with: api-level: ${{ matrix.api-level }} |