Skip to content

Commit

Permalink
Add test package removal
Browse files Browse the repository at this point in the history
  • Loading branch information
CherryPerry committed May 15, 2024
1 parent 7feab6c commit 895bdad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ jobs:
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: |
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
adb logcat > logcat.out &
./gradlew connectedCheck
- name: Upload failed instrumentation artifacts
Expand All @@ -139,4 +140,4 @@ jobs:
with:
python-version: '3.x'
- run: pip install mkdocs-material
- run: mkdocs build --strict
- run: mkdocs build --strict

0 comments on commit 895bdad

Please sign in to comment.