setup maestro performance testing and reports on CI #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android Performance | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
api-level: [29, 32, 35] | |
target: [default, google_apis] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: gradle | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Install RN dependencies | |
run: npm install | |
- name: create .env | |
run: | | |
echo "OWM_API_KEY=${{ secrets.OWM_API_KEY }}" >> .env | |
- name: run tests | |
run: npm run test | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./android/gradlew | |
- name: setup maestro and flashlight | |
run: | | |
yes | ./bin/maestroSetup.sh | |
source /home/runner/.bashrc | |
- name: Enable KVM group perms | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: run maestro tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: ${{ matrix.target }} | |
arch: x86_64 | |
profile: Nexus 6 | |
script: npm run performance-test | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: results-${{ github.event.repository.updated_at}}-${{ matrix.api-level }}-${{ matrix.target }} | |
path: results.json |