Merge pull request #624 from AppDevNext/dependabot/gradle/androidx.ap… #1535
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
# https://github.com/uber/AutoDispose/blob/master/.github/workflows/ci.yml | |
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
BuildTest: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macOS-13 ] | |
api: [ 28 ] | |
abi: [ x86_64 ] | |
tag: [ 'default' ] | |
java_version: [ 17 ] | |
# include: | |
# - java_version: 17 | |
# os: macOS-14 | |
# api: 31 | |
# abi: arm64-v8a | |
# tag: 'google_apis' | |
steps: | |
- name: Show architecture | |
run: uname -a | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK ${{ matrix.java_version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java_version }} | |
- uses: gradle/wrapper-validation-action@v3 | |
- name: Install Android SDK | |
uses: hannesa2/action-android/[email protected] | |
- name: Decrypt keystore | |
run: ./signing/decrypt.sh | |
env: | |
CRYPT_PASS: ${{ secrets.CRYPT_PASS }} | |
- name: Build project | |
run: ./gradlew assembleDebug | |
- name: Run tests | |
run: ./gradlew test | |
- 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 -metrics-collection | |
bootTimeout: 720 # seconds = 12 minutes | |
- name: Archive Espresso results | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: Logcat-Espresso-report | |
path: sample/build/reports/androidTests/connected | |
- name: Archive screenshots | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Logcat-Screenshots | |
path: | | |
sample/build/outputs/connected_android_test_additional_output/debugAndroidTest/connected | |
sample/build/outputs/androidTest-results/connected | |
- name: cleanup | |
run: ./signing/cleanup.sh | |
Check: | |
name: Check | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
java_version: [ 17 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK ${{ matrix.java_version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java_version }} | |
- name: gradle check | |
run: ./gradlew check | |
- name: Archive Lint report | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: Logcat-Lint-report | |
path: ./**/build/reports/lint-results*.html |