From b71739f916306dba724f78aa6661a2fcb930c3ed Mon Sep 17 00:00:00 2001 From: utzcoz Date: Mon, 21 Mar 2022 20:51:58 +0800 Subject: [PATCH] Use google_apis for Emulator images default All tests run Emulator with SDK larger than 26, and we should keep to use google_apis images. Signed-off-by: utzcoz --- .github/workflows/tests.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5978dbc12a3..919366d45fe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -127,17 +127,10 @@ jobs: with: java-version: 11.0.8 - # Determine what emulator image to use. We run all API 29+ emulators using - # the google_apis image - name: Determine emulator target id: determine-target - env: - API_LEVEL: ${{ matrix.api-level }} run: | - TARGET="default" - if [ "$API_LEVEL" -ge "26" ]; then - TARGET="google_apis" - fi + TARGET="google_apis" echo "::set-output name=TARGET::$TARGET" - name: Run device tests