Skip to content

Commit

Permalink
Docker Mobile Android
Browse files Browse the repository at this point in the history
  • Loading branch information
tauqirsarwar1 committed Mar 19, 2024
1 parent c497be6 commit a18a9bc
Showing 1 changed file with 56 additions and 22 deletions.
78 changes: 56 additions & 22 deletions .github/workflows/docker_android_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,52 +12,86 @@ on:
tags:
description: Gherkin Tags
required: true
default: android_mobile_test
default: android_mobile_tests

jobs:
scheduled-regression:
if: github.event_name == 'schedule'
strategy:
max-parallel: 1
fail-fast: false
matrix:
include:
- name: Android Mobile
tags: 'android_mobile_tests'
config_file: ./configs/android_mobile_BS.json
html_report: android-mobile
testrail_configuration_name: 'Samsung Galaxy S23 Ultra'

name: ${{ matrix.name }} - Regression
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- name: Validate Input Parameter
id: validate_input
run: |
if [[ -z "${{ github.event.inputs.tags }}" ]]; then
echo "Invalid input: 'tags' is required but not provided."
exit 1
fi
- name: Setup Python
id: setup_python
if: steps.validate_input.outcome == 'success'
uses: actions/setup-python@v5
with:
python-version: "3.9"

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

- name: Set up JDK 21
id: setup_java
if: steps.co_code.outcome == 'success'
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21

- name: Install and Run Appium Server
id: setup_appium
if: steps.setup_java.outcome == 'success'
run: |
npm install -g appium
appium --log-level info &
sleep 5
appium -v
- name: Run Emulator
id: run_emulator
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 30
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -grpc-use-jwt -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
target: default
arch: x86_64
script: echo "Generated AVD"

- name: Setup dependencies
id: setup_dependencies
if: steps.run_emulator.outcome == 'success'
run: |
sh install.sh
- name: Run All Tests
- name: Run Tests
id: run_manual_job
if: steps.setup_dependencies.outcome == 'success'
run: |
TAGS="${{ github.event.inputs.tags }}"
env
source $HOME/.bp-venv/bin/activate
python -m pytest -v --driver Appium --selenium-host '${{secrets.BROWSERSTACK_API_USERNAME}}:${{secrets.BROWSERSTACK_ACCESS_KEY}}@hub-cloud.browserstack.com' \
--variables ${{ matrix.config_file }} --tags="${{ matrix.tags }}" \
--html=report.html \
--self-contained-html \
source $HOME/.bp-venv/bin/activate
python -m pytest -v --driver Appium --selenium-host 'localhost' --selenium-port '4723' \
--variables './configs/android_mobile_docker.json'
--tags="$TAGS" \
--html=report.html \
--self-contained-html \
- name: Upload HTML run report in the Artifacts Folder
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.html_report }}
name: pytest-results
path: |
./*.html
./output/
Expand Down

0 comments on commit a18a9bc

Please sign in to comment.