Skip to content

Browserstack

Browserstack #23

Workflow file for this run

name: Android Performance
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '.github/workflows/android-perf.yml'
- 'lib/android/**'
- 'lib/common/**'
- 'resources/audio_samples/**'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+']
paths:
- '.github/workflows/android-perf.yml'
- 'lib/android/**'
- 'lib/common/**'
- 'resources/audio_samples/**'
defaults:
run:
working-directory: binding/android/KoalaTestApp
jobs:
build:
name: Run Android Speed Tests on BrowserStack
runs-on: ubuntu-latest
strategy:
matrix:
device: [ android-perf ]
include:
- device: android-perf
performanceThresholdSec: 0.4
steps:
- uses: actions/checkout@v3
- name: Installing Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- run:
pip3 install requests
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Copy test_resources
run: ./copy_test_resources.sh
- name: Inject AccessKey
run: echo pvTestingAccessKey="${{secrets.PV_VALID_ACCESS_KEY}}" >> local.properties
- name: Inject Android keystore variables
run: |
echo storePassword="${{secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD}}" >> local.properties
echo keyPassword="${{secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD}}" >> local.properties
echo keyAlias=picovoice >> local.properties
echo storeFile=../picovoice.jks >> local.properties
- name: Setup Android keystore file
run: echo "${{secrets.ANDROID_RELEASE_KEYSTORE_FILE_B64}}" | base64 -d > picovoice.jks
- name: Inject Number of Iterations
run: echo numTestIterations="30" >> local.properties
- name: Inject Proc Performance Threshold
run: echo performanceThresholdSec="${{ matrix.performanceThresholdSec }}" >> local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build app
run: ./gradlew assembleDebug
- name: Build androidTest
run: ./gradlew assembleAndroidTest -DtestBuildType=perf
- name: Run tests on BrowserStack
run: python3 ../../../script/automation/browserstack.py
--type espresso
--username "${{secrets.BROWSERSTACK_USERNAME}}"
--access_key "${{secrets.BROWSERSTACK_ACCESS_KEY}}"
--project_name "Koala-Android-Performance"
--devices "${{ matrix.device }}"
--app_path "koala-test-app/build/outputs/apk/debug/koala-test-app-debug.apk"
--test_path "koala-test-app/build/outputs/apk/androidTest/debug/koala-test-app-debug-androidTest.apk"