Bump com.android.tools.build:gradle from 8.5.0 to 8.6.0 #232
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
Build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
api: [ 28 ] | |
abi: [ x86_64 ] | |
tag: [ 'default' ] | |
include: | |
# - api: 31 | |
# abi: x86_64 | |
# tag: 'google_apis' | |
- os: ubuntu-latest | |
api: 30 | |
abi: x86_64 | |
tag: 'google_apis' | |
steps: | |
- name: kvm support | |
run: | | |
egrep -c '(vmx|svm)' /proc/cpuinfo | |
id | |
sudo adduser $USER kvm | |
sudo chown -R $USER /dev/kvm | |
id | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: Install Android SDK | |
uses: hannesa2/action-android/[email protected] | |
- name: Build project | |
run: ./gradlew assemble | |
- name: Run instrumentation tests | |
uses: hannesa2/action-android/[email protected] | |
with: | |
cmd: ./gradlew cAT --continue | |
api: ${{ matrix.api }} | |
tag: ${{ matrix.tag }} | |
abi: ${{ matrix.abi }} | |
cmdOptions: -noaudio -no-boot-anim -no-window | |
- name: Archive Espresso results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Moka-Espresso-${{ matrix.api }}-${{ matrix.abi }}-report | |
path: sample/build/reports/androidTests/connected | |
- name: Archive screenshots | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Moka-Screenshots-${{ matrix.api }}-${{ matrix.abi }}-report | |
path: | | |
sample/build/outputs/connected_android_test_additional_output/debugAndroidTest/connected | |
sample/build/outputs/androidTest-results/connected | |
Check: | |
name: Check | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK ${{ matrix.java_version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- uses: gradle/[email protected] | |
- name: Install Android SDK | |
uses: hannesa2/action-android/[email protected] | |
- name: Build project | |
run: ./gradlew check | |
- name: Archive Lint report | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Lint-report | |
path: sample/build/reports/lint-results*.html |