We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8db3591 commit 2e57ffbCopy full SHA for 2e57ffb
.github/workflows/build.yml
@@ -119,8 +119,7 @@ jobs:
119
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
120
disable-animations: true
121
script: |
122
- adb uninstall "com.bumble.appyx.core.test"
123
- adb uninstall "com.bumble.appyx.interop.ribs.test"
+ 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
124
adb logcat > logcat.out &
125
./gradlew connectedCheck
126
- name: Upload failed instrumentation artifacts
0 commit comments