Update all dependencies (end) #559
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: BasicLayoutsCodelab | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'BasicLayoutsCodelab/**' | |
pull_request: | |
paths: | |
- 'BasicLayoutsCodelab/**' | |
env: | |
SAMPLE_PATH: BasicLayoutsCodelab | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- 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 assembleDebug lintDebug --stacktrace | |
- name: Upload build outputs (APKs) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-outputs | |
path: ${{ env.SAMPLE_PATH }}/app/build/outputs | |
- name: Upload build reports | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-reports | |
path: ${{ env.SAMPLE_PATH }}/app/build/reports |