Skip to content

Commit

Permalink
Docker IOS Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tauqirsarwar1 committed Mar 20, 2024
1 parent 9eb373f commit 72ed5dc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/docker_android_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
scheduled-regression:
if: github.event_name == 'schedule'
name: ${{ matrix.name }} - Regression
name: Schedule Android - Regression
runs-on: macos-latest
steps:
- name: Setup Python
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

- name: Set up JDK 21
id: setup_java
if: steps.co_code.outcome == 'success'
if: steps.setup_python.outcome == 'success'
uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand All @@ -128,8 +128,9 @@ jobs:
sleep 5
appium -v
- name: Run Emulator
- name: Run Android Emulator
id: run_emulator
if: steps.setup_appium.outcome == 'success'
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 30
Expand All @@ -142,12 +143,12 @@ jobs:

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

- name: Setup dependencies
id: setup_dependencies
if: steps.run_emulator.outcome == 'success'
if: steps.co_code.outcome == 'success'
run: |
sh install.sh
Expand Down

0 comments on commit 72ed5dc

Please sign in to comment.