Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bp core #60

Merged
merged 4 commits into from
Mar 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 17 additions & 14 deletions .github/workflows/docker_android_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,23 @@ jobs:
sleep 10
appium -v

# - name: Android Emulator Runner Without SDK Setup
# uses: RandyLutcavich/[email protected]

- name: Check out code
id: co_code
if: steps.install_driver.outcome == 'success'
uses: actions/checkout@v4

- name: Setup dependencies
id: setup_dependencies
if: steps.co_code.outcome == 'success'
run: |
sh setup_install.sh

- name: Run Android Emulator
id: run_emulator
if: steps.setup_appium.outcome == 'success'
if: steps.setup_dependencies.outcome == 'success'
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 30
Expand All @@ -144,7 +158,7 @@ jobs:
disable-animations: true
target: default
arch: x86_64
script: echo "Generated AVD"
script: echo "Generated AVD Started"

- name: Run Android Emulator Again
id: run_emulator_again
Expand All @@ -157,20 +171,9 @@ jobs:
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.run_emulator_again.outcome == 'success'
uses: actions/checkout@v4

- name: Setup dependencies
id: setup_dependencies
if: steps.co_code.outcome == 'success'
run: |
sh setup_install.sh

- 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
Loading