adds 34 (#1174) #831
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: DataLayer | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'DataLayer/**' | |
pull_request: | |
paths: | |
- 'DataLayer/**' | |
env: | |
SAMPLE_PATH: DataLayer | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Generate cache key | |
run: ./scripts/checksum.sh $SAMPLE_PATH checksum.txt | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches/modules-* | |
~/.gradle/caches/jars-* | |
~/.gradle/caches/build-cache-* | |
key: gradle-${{ hashFiles('checksum.txt') }} | |
- name: Build project | |
working-directory: ${{ env.SAMPLE_PATH }} | |
run: ./gradlew check --stacktrace | |
- name: Upload build outputs (APKs) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-outputs | |
path: | | |
${{ env.SAMPLE_PATH }}/Wearable/build/outputs | |
${{ env.SAMPLE_PATH }}/Application/build/outputs | |
- name: Upload build reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-reports | |
path: | | |
${{ env.SAMPLE_PATH }}/Wearable/build/reports | |
${{ env.SAMPLE_PATH }}/Application/build/reports | |
apk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Generate cache key | |
run: ./scripts/checksum.sh $SAMPLE_PATH checksum.txt | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches/modules-* | |
~/.gradle/caches/jars-* | |
~/.gradle/caches/build-cache-* | |
key: gradle-${{ hashFiles('checksum.txt') }} | |
- name: Build project | |
working-directory: ${{ env.SAMPLE_PATH }} | |
run: ./gradlew app:assembleRelease | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: App | |
path: ${{ env.SAMPLE_PATH }}/Wearable/build/outputs/apk/release/Wearable-release.apk |