Skip to content

Commit

Permalink
cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
tauqirsarwar1 committed Mar 22, 2024
1 parent ffd04f4 commit 618dce2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/docker_android_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,6 @@ jobs:
# - name: Android Emulator Runner Without SDK Setup
# uses: RandyLutcavich/[email protected]

# - name: Run Android Emulator Again
# id: run_emulator_again
# if: steps.run_emulator.outcome == 'success'
# run: |
# echo "Running Emulator Again"
# cd ~/Library/Android/sdk/emulator
# sleep 5
# ./emulator -list-avds
# sleep 5
# ./emulator -avd test -no-snapshot-save -no-window -grpc-use-jwt -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none

- name: Check out code
id: co_code
if: steps.install_driver.outcome == 'success'
Expand All @@ -171,9 +160,20 @@ jobs:
arch: x86_64
script: echo "Generated AVD Started"

- name: Run Android Emulator Again
id: run_emulator_again
if: steps.run_emulator.outcome == 'success'
run: |
echo "Running Emulator Again"
cd ~/Library/Android/sdk/emulator
sleep 5
./emulator -list-avds
sleep 5
./emulator -avd test -no-snapshot-save -no-window -grpc-use-jwt -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
- name: Run Tests
id: run_manual_job
if: steps.setup_dependencies.outcome == 'success'
if: steps.run_emulator_again.outcome == 'success'
run: |
TAGS="${{ github.event.inputs.tags }}"
env
Expand Down

0 comments on commit 618dce2

Please sign in to comment.