From 7b99cab7618baa1114304b86fd776c05be0110d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Mart=C3=ADn?= Date: Thu, 18 Jul 2024 08:34:21 +0200 Subject: [PATCH] Android (CI): use API level 29 for the emulator as API 31 somehow breaks the emulator action --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 767ef62e2..c3b09557f 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -22,13 +22,14 @@ concurrency: jobs: tests: if: | + github.event_name == 'workflow_dispatch' || github.event_name == 'push' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'Android')) name: Run all tests runs-on: ubuntu-latest strategy: matrix: - api-level: [31] + api-level: [29] steps: - uses: actions/checkout@v4 with: @@ -68,7 +69,6 @@ jobs: api-level: ${{ matrix.api-level }} arch: ${{ env.ARCH }} profile: ${{ env.DEVICE }} - force-avd-creation: false emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true enable-hw-keyboard: true