github: remove nonFree flavor from tests (#1102)

Our tests have zero differences between these flavors so running 4 jobs rather than 2 just slows us down

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-09-17 01:00:21 +05:30 committed by GitHub
parent 0810273444
commit bfd9c1d776
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,6 @@ jobs:
strategy:
matrix:
api-level: [23, 29]
variant: [freeDebug, nonFreeDebug]
steps:
- name: Check if relevant files have changed
@ -67,10 +66,10 @@ jobs:
- name: Run unit tests
if: ${{ steps.service-changed.outputs.result == 'true' }}
run: ./gradlew test${{ matrix.variant }} lint${{ matrix.variant}} -Dpre-dex=false
run: ./gradlew testFreeDebug lintFreeDebug
- name: Run instrumentation tests on free flavor
if: ${{ steps.service-changed.outputs.result == 'true' && matrix.variant == 'freeDebug' }}
- name: Run instrumentation tests
if: ${{ steps.service-changed.outputs.result == 'true' }}
uses: reactivecircus/android-emulator-runner@v2.11.0
with:
api-level: ${{ matrix.api-level }}
@ -81,18 +80,6 @@ jobs:
adb shell settings put global window_animation_scale 0
./gradlew :app:connectedFreeDebugAndroidTest
- name: Run instrumentation tests on nonFree flavor
if: ${{ steps.service-changed.outputs.result == 'true' && matrix.variant == 'nonFreeDebug' }}
uses: reactivecircus/android-emulator-runner@v2.11.0
with:
api-level: ${{ matrix.api-level }}
target: default
script: |
adb shell settings put global animator_duration_scale 0
adb shell settings put global transition_animation_scale 0
adb shell settings put global window_animation_scale 0
./gradlew :app:connectedNonFreeDebugAndroidTest
- name: (Fail-only) upload test report
if: failure()
uses: actions/upload-artifact@v2