-
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.
💚 integrate ci pipelines to single yml file
- Loading branch information
Showing
4 changed files
with
74 additions
and
95 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Android CI Pipeline | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- an/** | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
ktlint_check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: jdk | ||
- name: Cache Gradle | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Set up environment variable for BuildConfig | ||
env: | ||
GOOGLE_WEB_CLIENT_ID: ${{ secrets.GOOGLE_WEB_CLIENT_ID }} | ||
run: | | ||
echo google_web_client_id=\"$GOOGLE_WEB_CLIENT_ID\" > ./android/local.properties | ||
- name: Run ktLint | ||
run: ./gradlew ktlintCheck | ||
working-directory: ./android | ||
|
||
build_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: jdk | ||
- name: Cache Gradle | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Create google-services.json | ||
env: | ||
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} | ||
run: | | ||
echo $GOOGLE_SERVICES_JSON > ./android/app/google-services.json | ||
- name: Set up environment variable for BuildConfig | ||
env: | ||
GOOGLE_WEB_CLIENT_ID: ${{ secrets.GOOGLE_WEB_CLIENT_ID }} | ||
run: | | ||
echo google_web_client_id=\"$GOOGLE_WEB_CLIENT_ID\" > ./android/local.properties | ||
- name: Build and test | ||
run: ./gradlew build test | ||
working-directory: ./android |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.