From 3cbeb2440873a64228e88137da8dba7dc16928f8 Mon Sep 17 00:00:00 2001 From: Takeshi Hagikura Date: Fri, 12 Aug 2022 19:01:38 +0900 Subject: [PATCH] Add yml file for running instrumented tests with GMD --- .github/workflows/AndroidCIWithGmd.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/AndroidCIWithGmd.yml 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" +