forked from openMF/android-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
101 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
name: Android Client CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
@@ -9,122 +12,51 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
# Set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
# Build with Gradle | ||
- name: Build with Gradle | ||
run: chmod +x gradlew && ./gradlew assembleDebug | ||
|
||
# Upload APK | ||
- name: Upload APK | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: android-client-app | ||
# File path describing what artifact to upload | ||
path: mifosng-android/build/outputs/apk/debug/mifosng-android-debug.apk | ||
|
||
test: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
# Test with Gradle | ||
- name: Test App | ||
run: ./gradlew test | ||
|
||
# Upload test reports | ||
- name: Upload Test Reports | ||
uses: actions/[email protected] | ||
uses: actions/setup-java@v2 | ||
with: | ||
# Artifact name | ||
name: test-reports | ||
# File path describing what artifact to upload | ||
path: mifosng-android/build/reports/tests/** | ||
|
||
lintCheck: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
distribution: 'zulu' | ||
java-version: '17' | ||
|
||
# Set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
- name: Cache Gradle packages | ||
uses: actions/cache@v2 | ||
with: | ||
java-version: 17 | ||
|
||
# Perform Lint Check | ||
- name: Lint Check | ||
run: ./gradlew lint | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
gradle-${{ runner.os }}- | ||
# Upload reports | ||
- name: Upload Lint Reports | ||
uses: actions/[email protected] | ||
- name: Set up Android SDK | ||
uses: android-actions/setup-android@v2 | ||
with: | ||
# Artifact name | ||
name: lint-reports | ||
# File path describing what artifact to upload | ||
path: mifosng-android/build/reports/lint-results** | ||
api-level: 30 | ||
build-tools: 30.0.3 | ||
|
||
pmd: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x ./gradlew | ||
|
||
# Set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
# Perform PMD Check | ||
- name: PMD Check | ||
run: ./gradlew pmd | ||
- name: Build with Gradle | ||
run: ./gradlew assembleDebug | ||
|
||
# Upload reports | ||
- name: Upload PMD Reports | ||
uses: actions/[email protected] | ||
- name: Upload APK | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
# Artifact name | ||
name: pmd-reports | ||
# File path describing what artifact to upload | ||
path: mifosng-android/build/reports/pmd/** | ||
name: android-client-app | ||
path: app/build/outputs/apk/debug/app-debug.apk | ||
|
||
checkstyle: | ||
test: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
# Set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
# Perform Checkstyle Check | ||
- name: Checkstyle | ||
run: ./gradlew checkstyle | ||
|
||
# Upload reports | ||
- name: Upload Checkstyle Reports | ||
uses: actions/[email protected] | ||
uses: actions/setup-java@v2 | ||
with: | ||
# Artifact name | ||
name: checkstyle-reports | ||
# File path describing what artifact to upload | ||
path: mifosng-android/build/reports/checkstyle/** | ||
|