Skip to content

Commit

Permalink
Reference script in later step
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaygaba committed Jun 12, 2024
1 parent 7afdc2d commit 132f489
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ jobs:
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew connectedCheck --no-daemon --stacktrace
script: |
./gradlew connectedCheck --no-daemon --stacktrace
bash --noprofile --norc -eo pipefail "${{ steps.script.outputs.file }}"
- name: Start emulator and run UI Tests w/ KSP
uses: reactivecircus/android-emulator-runner@v2
Expand All @@ -139,7 +141,9 @@ jobs:
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew connectedCheck --no-daemon --stacktrace -PuseKsp=true
script: |
./gradlew connectedCheck --no-daemon --stacktrace -PuseKsp=true
bash --noprofile --norc -eo pipefail "${{ steps.script.outputs.file }}"
- name: Run Screenshot Tests
uses: reactivecircus/android-emulator-runner@v2
Expand Down

0 comments on commit 132f489

Please sign in to comment.