Skip to content

Commit 2e57ffb

Browse files
committed
Fix instrumentation tests package uninstalling
1 parent 8db3591 commit 2e57ffb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ jobs:
119119
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
120120
disable-animations: true
121121
script: |
122-
adb uninstall "com.bumble.appyx.core.test"
123-
adb uninstall "com.bumble.appyx.interop.ribs.test"
122+
adb shell pm list packages -3 | cut -f 2 -d ":" | while read package; do if [ "$package" = "com.bumble.appyx.sample.navigation.compose.test" ] || [ "$package" = "com.bumble.appyx.core.test" ] || [ "$package" = "com.bumble.appyx.interop.ribs.test" ]; then adb uninstall $package; fi; done
124123
adb logcat > logcat.out &
125124
./gradlew connectedCheck
126125
- name: Upload failed instrumentation artifacts

0 commit comments

Comments
 (0)