You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.9 KiB
88 lines
2.9 KiB
name: Benchmark on Emulator
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
BASELINE_BRANCH: main
|
|
GRADLE_BUILD_CACHE_DIR: ${{ github.workspace }}/.common-gradle-cache
|
|
|
|
jobs:
|
|
benchmark-android:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
|
|
steps:
|
|
- name: Free Disk Space
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /opt/ghc
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
|
|
- name: Enable KVM
|
|
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: Checkout branch (Baseline)
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ env.BASELINE_BRANCH }}
|
|
path: baseline
|
|
|
|
- name: Checkout branch (Candidate)
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: candidate
|
|
|
|
- name: Setup JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: "zulu"
|
|
java-version: "17"
|
|
|
|
- name: Setup Gradle
|
|
uses: gradle/actions/setup-gradle@v5
|
|
with:
|
|
# By default, The setup-gradle action will only write to the cache from Jobs on the default (main/master) branch.
|
|
# Jobs on other branches will read entries from the cache but will not write updated entries.
|
|
cache-read-only: false
|
|
|
|
- name: Build APKs (Baseline)
|
|
working-directory: ./baseline
|
|
run: |
|
|
chmod +x ./gradlew
|
|
./gradlew :app:assembleDemoBenchmark
|
|
|
|
- name: Build APKs (Candidate)
|
|
working-directory: ./candidate
|
|
run: |
|
|
chmod +x ./gradlew
|
|
./gradlew :app:assembleDemoBenchmark :benchmarks:assembleDemoBenchmark
|
|
|
|
- name: Run Benchmarks
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
with:
|
|
api-level: 30
|
|
target: google_apis
|
|
arch: x86_64
|
|
force-avd-creation: true
|
|
emulator-options: -no-snapshot -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -memory 4096
|
|
disable-animations: true
|
|
script: |
|
|
adb install ./candidate/benchmarks/build/outputs/apk/demo/benchmarkRelease/benchmarks-demo-benchmarkRelease.apk
|
|
chmod +x ./candidate/.github/scripts/run_macrobenchmarks.sh
|
|
./candidate/.github/scripts/run_macrobenchmarks.sh "./baseline/app/build/outputs/apk/demo/benchmarkRelease/app-demo-benchmarkRelease.apk" "./candidate/app/build/outputs/apk/demo/benchmarkRelease/app-demo-benchmarkRelease.apk"
|
|
|
|
- name: Run step fit
|
|
run: python3 .github/scripts/step_fit.py
|
|
working-directory: ./candidate
|
|
|
|
- name: Upload Artifacts
|
|
if: always()
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: benchmark-results
|
|
path: ./candidate/benchmarks/json_reports/
|