Bump com.google.android.gms:play-services-basement from 18.3.0 to 18.4.0 #159
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, labeled, unlabeled, synchronize ] | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
JAVA_VERSION: 20 # can't use Java 21 yet due to mockito issues | |
ANDROID_API_LEVEL: 34 | |
jobs: | |
android: | |
name: JDK ${{ matrix.java-version }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/[email protected] | |
- name: Setup Gradle | |
uses: gradle/actions/[email protected] | |
with: | |
gradle-home-cache-cleanup: true | |
- run: ./gradlew --version | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/[email protected] | |
- name: Configure JDK ${{ env.JAVA_VERSION }} | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: ${{ env.JAVA_VERSION }} | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/actions/[email protected] | |
- run: ./gradlew --version | |
- name: Build Debug APK | |
run: ./gradlew assembleDebug -s | |
- name: Run Debug Lint Checks | |
run: ./gradlew lintDebug -s | |
- name: Run Debug Unit Tests | |
run: ./gradlew testDebug -s | |
- name: Cache AVD | |
uses: actions/[email protected] | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ env.ANDROID_API_LEVEL }} | |
- 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: Create AVD and generate snapshot for caching | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/[email protected] | |
with: | |
api-level: ${{ env.ANDROID_API_LEVEL }} | |
arch: x86_64 | |
target: google_apis | |
force-avd-creation: false | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: false | |
script: echo "Generated AVD snapshot for caching." | |
- name: Run Debug Instrumentation Tests on Android API ${{ matrix.api-level }} (Ran up to 2 times) | |
uses: reactivecircus/[email protected] | |
with: | |
api-level: ${{ env.ANDROID_API_LEVEL }} | |
arch: x86_64 | |
target: google_apis | |
force-avd-creation: false | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-snapshot-save | |
disable-animations: true | |
script: ./gradlew connectedDebugAndroidTest -s || ./gradlew connectedDebugAndroidTest -s |