Migrate to Gradle's new plugin declaration solution #365
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: | |
branches: [ master ] | |
env: | |
JDK_JAVA_DISTRIBUTION: 'temurin' | |
JDK_JAVA_VERSION: '17' | |
AVD_API_LEVEL: 30 | |
jobs: | |
static-analysis: | |
name: Static Analysis | |
runs-on: [ ubuntu-latest ] | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ env.JDK_JAVA_DISTRIBUTION }} | |
java-version: ${{ env.JDK_JAVA_VERSION }} | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Run Static Analysis Tools | |
run: ./gradlew lint detekt ktlintCheck --continue | |
unit-test: | |
name: Unit Tests | |
runs-on: [ubuntu-latest] | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ env.JDK_JAVA_DISTRIBUTION }} | |
java-version: ${{ env.JDK_JAVA_VERSION }} | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Run Unit Tests | |
run: ./gradlew test | |
instrumentation-test: | |
name: Instrumentation Tests | |
runs-on: [ubuntu-latest] | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ env.JDK_JAVA_DISTRIBUTION }} | |
java-version: ${{ env.JDK_JAVA_VERSION }} | |
- 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 Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Cache AVD | |
uses: actions/cache@v4 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ env.AVD_API_LEVEL }} | |
- name: Create AVD & Generate Snapshot | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ env.AVD_API_LEVEL }} | |
target: google_apis # https://github.com/ReactiveCircus/android-emulator-runner/issues/106 | |
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." | |
- name: Run Instrumentation Tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ env.AVD_API_LEVEL }} | |
target: google_apis # https://github.com/ReactiveCircus/android-emulator-runner/issues/106 | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true | |
script: ./gradlew connectedAndroidTest | |
assemble: | |
name: App Assembling | |
runs-on: [ubuntu-latest] | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ env.JDK_JAVA_DISTRIBUTION }} | |
java-version: ${{ env.JDK_JAVA_VERSION }} | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build Debug APK | |
run: ./gradlew assembleDebug |