From 8cba06d96ea7b9c4d83ff0eca24dc348dc0988b9 Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Mon, 18 Dec 2023 21:01:09 +0200 Subject: [PATCH] [CI] Add way more emulator targets to the matrix --- .github/workflows/build.yml | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26260e1c..c8ac0bff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,13 +79,41 @@ jobs: strategy: fail-fast: false matrix: - api-level: [21, 29] + api-level: [21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] arch: [x86, x86_64] api-type-target: [default] + exclude: + - api-level: 30 + arch: x86 + api-type-target: default + - api-level: 31 + arch: x86 + api-type-target: default + - api-level: 32 + arch: x86 + api-type-target: default + - api-level: 33 + arch: x86 + api-type-target: default + - api-level: 34 + arch: x86 + api-type-target: default include: + - api-level: 30 + arch: x86 + api-type-target: aosp_atd + - api-level: 31 + arch: x86 + api-type-target: aosp_atd + - api-level: 32 + arch: x86 + api-type-target: aosp_atd + - api-level: 33 + arch: x86 + api-type-target: aosp_atd - api-level: 34 - arch: x86_64 - api-type-target: google_apis + arch: x86 + api-type-target: aosp_atd steps: - uses: actions/checkout@v4 - uses: actions/setup-java@v4