Merge fc0a7c599a9d375478fd542e730ce602b65e0763 into sapling-pr-archiv… #21622
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 Android Sample App | |
# This action runs on 'git push' and PRs | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.5.3 | |
- name: set up JDK | |
uses: actions/setup-java@v3.11.0 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Compute build cache | |
run: ./scripts/checksum-android.sh checksum-android.txt | |
- uses: actions/cache@v3.3.1 | |
with: | |
path: | | |
~/.gradle/caches/modules-* | |
~/.gradle/caches/jars-* | |
~/.gradle/caches/build-cache-* | |
key: gradle-${{ hashFiles('checksum-android.txt') }} | |
- name: Build debug artifact | |
run: ./gradlew :android:assembleDebug | |
- name: Verify libraries in artifact | |
run: scripts/verify-android-libraries.sh | |
- name: Build sample apps with Gradle | |
run: ./gradlew :sample:assembleDebug :tutorial:assembleDebug | |
- name: Build remaining artifacts with Gradle | |
run: ./gradlew assembleDebug | |
- name: upload artifact | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: sample-app.apk | |
path: android/sample/build/outputs/apk/debug/sample-debug.apk |