You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
846 B
32 lines
846 B
2 years ago
|
name: Android CI with GMD
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
android-ci:
|
||
|
runs-on: macos-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/setup-java@v3
|
||
|
with:
|
||
|
distribution: 'zulu'
|
||
|
java-version: '11'
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Run instrumented tests with GMD
|
||
|
continue-on-error: true
|
||
|
run: ./gradlew cleanManagedDevices --unused-only && ./gradlew pixel4api30DemoDebugAndroidTest -Dorg.gradle.workers.max=1 -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" -Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true --info
|
||
|
|
||
|
- name: Upload test reports
|
||
|
if: success() || failure()
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: test-reports
|
||
|
path: |
|
||
|
'**/*/build/reports/androidTests/'
|