diff --git a/.github/workflows/sdk_test.yml b/.github/workflows/sdk_test.yml index 2fbed09..84dd21f 100644 --- a/.github/workflows/sdk_test.yml +++ b/.github/workflows/sdk_test.yml @@ -5,13 +5,19 @@ on: jobs: unit-test: - runs-on: macos-13 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Gradle cache uses: gradle/gradle-build-action@v2 + - 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: Set up JDK 17 uses: actions/setup-java@v3 with: @@ -21,26 +27,25 @@ jobs: - name: Touch local properties run: touch local.properties -# - name: AVD cache -# uses: actions/cache@v3 -# id: avd-cache -# with: -# path: | -# ~/.android/avd/* -# ~/.android/adb* -# key: avd-29 + - name: AVD cache + uses: actions/cache@v4 + id: avd-cache + with: + path: | + ~/.android/avd/* + ~/.android/adb* + key: avd-30 -# - name: create AVD and generate snapshot for caching -# if: steps.avd-cache.outputs.cache-hit != 'true' -# uses: reactivecircus/android-emulator-runner@v2 -# with: -# api-level: 29 -# arch: arm64-v8a -# force-avd-creation: false -# emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -# disable-animations: false -# ram-size: 4096M -# script: echo "Generated AVD snapshot for caching." + - name: create AVD and generate snapshot for caching + if: steps.avd-cache.outputs.cache-hit != 'true' + uses: reactivecircus/android-emulator-runner@v2 + with: + api-level: 30 + force-avd-creation: false + emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none + disable-animations: false + ram-size: 4096M + script: echo "Generated AVD snapshot for caching." - name: Setup Gradle uses: gradle/gradle-build-action@v2 @@ -58,12 +63,11 @@ jobs: - name: Run Instrumentation Test uses: reactivecircus/android-emulator-runner@v2 with: -# emulator-build: 7425822 api-level: 30 - target: google_apis - arch: x86_64 -# force-avd-creation: false + force-avd-creation: false + disable-animations: true ram-size: 4096M + emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none script: ./gradlew :xendit-android:connectedCheck --stacktrace # notify-slack: