Fix Gradle Error & Refactor Multiple Activity to Single Activity #1359
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: Mobile-Wallet CI[Master/Dev] | |
on: | |
push: | |
branches: [ dev, master, payment_hub ] | |
pull_request: | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- uses: gradle/actions/setup-gradle@v4 | |
- name: Cache Gradle and build outputs | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
build | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: ${{ runner.os }}-gradle- | |
checks: | |
needs: setup | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
check: [ build_logic, spotless, dependency_guard ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Run ${{ matrix.check }} | |
run: | | |
if [ "${{ matrix.check }}" = "build_logic" ]; then | |
./gradlew check -p build-logic | |
elif [ "${{ matrix.check }}" = "spotless" ]; then | |
./gradlew spotlessCheck --no-configuration-cache --no-daemon | |
elif [ "${{ matrix.check }}" = "dependency_guard" ]; then | |
./gradlew dependencyGuard | |
fi | |
tests_and_lint: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Run tests and lint | |
run: | | |
./gradlew testDemoDebug detekt | |
- name: Upload reports | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-and-lint-reports | |
path: | | |
**/build/reports/detekt/detekt.md | |
**/build/test-results/test*UnitTest/**.xml | |
build: | |
needs: [ checks, tests_and_lint ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Build APKs | |
run: ./gradlew :app:assemble :benchmarks:assemble | |
-x pixel6Api33ProdNonMinifiedReleaseAndroidTest | |
-x pixel6Api33DemoNonMinifiedReleaseAndroidTest | |
-x collectDemoNonMinifiedReleaseBaselineProfile | |
-x collectProdNonMinifiedReleaseBaselineProfile | |
- name: Check badging | |
run: ./gradlew :app:checkProdReleaseBadging | |
- name: Upload APKs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: APKs | |
path: '**/build/outputs/apk/**/*.apk' | |