[Refactor/#90] Gradle 빌드 성능 최적화 및 CI 파이프라인 고도화#91
Merged
Conversation
* chore: lint 및 test 잡을 check 잡으로 통합 * chore: gradle/actions/setup-gradle 도입 및 빌드 캐시 설정 추가 * chore: ktlint 및 unit test 병렬 실행 설정 * feat: JUnit 테스트 결과 리포트 게시 액션 추가
* chore: JVM 힙 메모리 증설 및 GC 옵션 추가 * chore: `parallel`, `vfs.watch`, `configureondemand` 활성화로 빌드 속도 개선 * chore: Kotlin 및 KSP 증분 컴파일(incremental) 옵션 활성화 * chore: 불필요한 주석 제거 및 설정 파일 정리
ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Free Run ID: 📒 Files selected for processing (1)
WalkthroughGitHub Actions Android CI/CD 워크플로우를 통합·최적화하고, Gradle 설정을 성능 중심으로 조정했습니다. 린트와 단위테스트를 단일 체크(job)으로 결합하고 Gradle 병렬 빌드·캐시 및 JVM 메모리·증분 컴파일 옵션을 활성화했습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant GH as GitHub Actions (Runner)
participant Setup as Setup Gradle Action
participant JDK as Setup JDK
participant Gradle as Gradle Wrapper / Daemon
participant Reporter as Test Reporter / Artifact Upload
GH->>Setup: 실행 (`gradle/actions/setup-gradle@v4`)
GH->>JDK: JDK 설치/설정
GH->>Gradle: `./gradlew ktlintCheck testDebugUnitTest --parallel --build-cache`
Gradle-->>GH: 빌드/테스트 결과 (JUnit XML)
GH->>Reporter: Publish Test Report & Upload artifacts
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
📝 Coding Plan
Note 🎁 Summarized by CodeRabbit FreeYour organization is on the Free plan. CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please upgrade your subscription to CodeRabbit Pro by visiting https://app.coderabbit.ai/login. Comment |
- add: 워크플로우 권한(checks, pull-requests) 추가 - add: FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 환경 변수 추가
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related issue 🛠
Work Description ✏️
실측 성능 개선 지표 (Local Benchmark)
Screenshot 📸
Uncompleted Tasks 😅
Summary by CodeRabbit
릴리스 노트
Tests
Chores