diff --git a/.github/workflows/AndroidCIWithGmd.yml b/.github/workflows/AndroidCIWithGmd.yml new file mode 100644 index 000000000..534f6ac34 --- /dev/null +++ b/.github/workflows/AndroidCIWithGmd.yml @@ -0,0 +1,25 @@ +name: Android CI with GMD + +on: + push: + pull_request: + types: [opened, reopened] + +jobs: + + android-ci: + runs-on: macos-latest + + steps: + - uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '11' + - uses: actions/checkout@v2 + + - name: Setup Android SDK + uses: android-actions/setup-android@v2 + + - name: Run instrumented tests with GMD + run: ./gradlew pixel4Api30DemoDebugAndroidTest -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" +