Skip to content

Commit

Permalink
#9: configure emulator-options
Browse files Browse the repository at this point in the history
  • Loading branch information
arburk committed Jan 7, 2024
1 parent 77fc963 commit 4b602f4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/android_it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-latest # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
env:
JAVA_TOOL_OPTIONS: -Xmx4g

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -43,9 +45,12 @@ jobs:

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew clean build supportedSdksGroupDebugAndroidTest jacocoTestReport
# uses: reactivecircus/android-emulator-runner@v2
# with:
# emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -no-boot-anim -camera-back none
# disable-animations: true
run: ./gradlew clean build supportedSdksGroupDebugAndroidTest jacocoTestReport -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" -Pandroid.experimental.testOptions.managedDevices.emulators.emulator.showKernelLogging=true --info

- name: Sonar checks
env:
Expand Down

0 comments on commit 4b602f4

Please sign in to comment.