Skip to content

Commit 229409c

Browse files
Fix atd only runs on api level 30
1 parent 57cc5d8 commit 229409c

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

.github/workflows/integration-tests-ui-critical.yml

+18-9
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,22 @@ jobs:
5454
# we want that the matrix keeps running, default is to cancel them if it fails.
5555
fail-fast: false
5656
matrix:
57-
api-level: [
58-
29, # Android 10
59-
30, # Android 11
60-
31, # Android 12
61-
33, # Android 13
62-
34, # Android 14
63-
]
57+
include:
58+
- api-level: 29 # Android 10
59+
target: default
60+
channel: stable
61+
- api-level: 30 # Android 11
62+
target: aosp_atd
63+
channel: canary # Necessary for ATDs
64+
- api-level: 31 # Android 12
65+
target: default
66+
channel: stable
67+
- api-level: 33 # Android 13
68+
target: default
69+
channel: stable
70+
- api-level: 34 # Android 14
71+
target: default
72+
channel: stable
6473
steps:
6574
- name: Checkout code
6675
uses: actions/checkout@v4
@@ -93,8 +102,8 @@ jobs:
93102
force-avd-creation: false
94103
disable-animations: true
95104
disable-spellchecker: true
96-
target: 'aosp_atd'
97-
channel: canary # Necessary for ATDs
105+
target: ${{ matrix.target }}
106+
channel: ${{ matrix.channel }}
98107
emulator-options: >
99108
-no-window
100109
-no-snapshot-save

0 commit comments

Comments
 (0)