-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: ci 用の gradle.properties を追加 #255
Conversation
Walkthroughこの更新では、Gradleビルドプロセスのための設定が導入されました。これには、Gradleデーモンの無効化、並列実行の有効化、最大ワーカー数を2に設定、Kotlinのインクリメンタルコンパイルの無効化、および警告をエラーとして扱わない設定が含まれます。また、CIの Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 1
Configuration used: CodeRabbit UI
Files selected for processing (2)
- .github/ci-gradle.properties (1 hunks)
- .github/workflows/checks.yml (3 hunks)
Additional comments: 4
.github/ci-gradle.properties (1)
- 1-6:
ci-gradle.properties
ファイルの設定はCI環境向けの最適化と一貫性の向上を目的としており、適切に設定されています。ただし、org.gradle.workers.max=2
の設定はCI環境の能力に応じて最適な値に調整することをお勧めします。.github/workflows/checks.yml (3)
- 72-76: AndroidチェックのためのCI
gradle.properties
ファイルのコピー手順は正しく設定されています。この手順により、ビルド開始前にCI固有の設定が適用されます。- 107-111: iOSチェックのためのCI
gradle.properties
ファイルのコピー手順も正しく設定されています。この手順はビルドプロセスの効率化と信頼性の向上に寄与します。- 150-154: バックエンドチェックのためのCI
gradle.properties
ファイルのコピー手順も適切に設定されています。CI環境でのビルドにおいて、これらの設定が適用されることが重要です。
- name: Copy CI gradle.properties | ||
shell: bash | ||
run: | | ||
mkdir -p ~/.gradle | ||
cp .github/ci-gradle.properties ~/.gradle/gradle.properties |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
各ジョブでCI gradle.properties
ファイルのコピー手順が繰り返されています。メンテナンス性を向上させるために、再利用可能なワークフローやアクションを検討することをお勧めします。
Also applies to: 107-111, 150-154
Issue
概要
ci 用の gradle.properties を追加します.
レビュー観点
レビューレベル
レビュー優先度
参考リンク
スクリーンショット
Summary by CodeRabbit
gradle.properties
ファイルをワークフローで複数回コピーするステップを追加しました。