Skip to content

Commit

Permalink
💚 integrate ci pipelines to single yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
kmkim2689 committed Jul 24, 2024
1 parent c3bb82c commit 04cfeee
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 95 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/an-ci.yml
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
35 changes: 0 additions & 35 deletions .github/workflows/ci-android-build.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/ci-android-lint.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/ci-android-test.yml

This file was deleted.

0 comments on commit 04cfeee

Please sign in to comment.