Skip to content

Commit

Permalink
Update sdk_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrio committed Dec 16, 2024
1 parent 65203dd commit cc13c48
Showing 1 changed file with 27 additions and 23 deletions.
50 changes: 27 additions & 23 deletions .github/workflows/sdk_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Gradle cache
uses: gradle/gradle-build-action@v2

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand All @@ -18,26 +21,26 @@ 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@v3
# id: avd-cache
# with:
# path: |
# ~/.android/avd/*
# ~/.android/adb*
# key: avd-29

- 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: 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: Setup Gradle
uses: gradle/gradle-build-action@v2
Expand All @@ -55,12 +58,13 @@ jobs:
- name: Run Instrumentation Test
uses: reactivecircus/android-emulator-runner@v2
with:
emulator-build: 7425822
api-level: 29
# emulator-build: 7425822
api-level: 30
target: google_apis
arch: x86_64
force-avd-creation: false
# force-avd-creation: false
ram-size: 4096M
script: ./gradlew :xendit-android:connectedCheck --stacktrace --no-daemon
script: ./gradlew :xendit-android:connectedCheck --stacktrace

# notify-slack:
# needs: unit-test
Expand Down

0 comments on commit cc13c48

Please sign in to comment.