-
Notifications
You must be signed in to change notification settings - Fork 10
wip #1101
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
wip #1101
Conversation
WalkthroughAdds explicit UTF-8 encoding to Java compilation by inserting "-encoding", "utf8" into javacOptions in build.mill’s BaseModule. No runtime logic or API changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
✨ Finishing Touches🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration 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.
Actionable comments posted: 0
🧹 Nitpick comments (3)
build.mill (3)
119-123: Prefer --release 11; use canonical UTF-8; drop trailing commaMore robust targeting across JDKs; clearer charset; consistent style.
- def javacOptions = Seq( - "-source", "11", - "-target", "11", - "-encoding", "utf8", - ) + def javacOptions = Seq( + "--release", "11", + "-encoding", "UTF-8" + )
110-117: Also set scalac encodingKeep Scala sources consistent with Java.
def scalacOptions = Seq( "-deprecation", "-feature", "-unchecked", "-language:implicitConversions", "-language:postfixOps", - "-language:reflectiveCalls" + "-language:reflectiveCalls", + "-encoding", "UTF-8" )
138-155: Propagate encoding to testsBaseTestModule doesn’t inherit BaseModule’s options; consider mixing it in or adding the same -encoding flags here to avoid drift.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
build.mill(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (15)
- GitHub Check: cloud_gcp_tests
- GitHub Check: cloud_aws_tests
- GitHub Check: join_tests
- GitHub Check: groupby_tests
- GitHub Check: analyzer_tests
- GitHub Check: streaming_tests
- GitHub Check: kv_store_tests
- GitHub Check: spark_tests
- GitHub Check: stats_tests
- GitHub Check: flink_tests
- GitHub Check: udafs_tests
- GitHub Check: online_tests
- GitHub Check: batch_tests
- GitHub Check: fetcher_tests
- GitHub Check: enforce_triggered_workflows
Summary
Checklist
Summary by CodeRabbit