File tree 1 file changed +18
-9
lines changed
1 file changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,22 @@ jobs:
54
54
# we want that the matrix keeps running, default is to cancel them if it fails.
55
55
fail-fast : false
56
56
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
64
73
steps :
65
74
- name : Checkout code
66
75
uses : actions/checkout@v4
93
102
force-avd-creation : false
94
103
disable-animations : true
95
104
disable-spellchecker : true
96
- target : ' aosp_atd '
97
- channel : canary # Necessary for ATDs
105
+ target : ${{ matrix.target }}
106
+ channel : ${{ matrix.channel }}
98
107
emulator-options : >
99
108
-no-window
100
109
-no-snapshot-save
You can’t perform that action at this time.
0 commit comments