Skip to content

Commit a696add

Browse files
committed
dropping numshards to 1
1 parent d0e9236 commit a696add

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/blueprints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135

136136
- name: Run all tests pixel 2 api 30 ATD
137137
working-directory: .
138-
run: ./gradlew -Pandroid.sdk.channel=3 -Pandroid.experimental.androidTest.numManagedDeviceShards=2 -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" pixel2api30atdMockDebugAndroidTest
138+
run: ./gradlew -Pandroid.sdk.channel=3 -Pandroid.experimental.androidTest.numManagedDeviceShards=1 -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" pixel2api30atdMockDebugAndroidTest
139139

140140
- name: Upload build reports
141141
if: always()

app/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,14 @@ android {
113113
systemImageSource = "aosp-atd"
114114
abi = "x86"
115115
}
116+
pixel2api30(com.android.build.api.dsl.ManagedVirtualDevice) {
117+
// Use device profiles you typically see in Android Studio
118+
device = "Pixel 2"
119+
apiLevel = 30
120+
// You can also specify "google" if you require Google Play Services.
121+
systemImageSource = "aosp"
122+
abi = "x86"
123+
}
116124
pixel2api27atd(com.android.build.api.dsl.ManagedVirtualDevice) {
117125
device = "Pixel 2"
118126
apiLevel = 27

0 commit comments

Comments
 (0)