-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add scala to language template #14
base: main
Are you sure you want to change the base?
Conversation
Caution Review failedAn error occurred during the review process. Please try again later. WalkthroughThis pull request introduces several new files to establish a complete Scala project setup. It adds shell scripts for compiling with Changes
Sequence Diagram(s)sequenceDiagram
participant Dev as Developer
participant CS as compile.sh
participant SB as SBT Assembly
participant RS as run.sh
participant Jar as Scala JAR
Dev->>CS: Execute compile.sh
CS->>SB: Run "sbt assembly"
SB-->>CS: Return compiled JAR
CS-->>Dev: Compilation result
Dev->>RS: Execute run.sh with args
RS->>Jar: Run "java -jar [JAR]"
Jar-->>RS: Application output
Poem
🪧 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 using PR comments)
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: 1
🧹 Nitpick comments (2)
languages/scala/config.yml (1)
1-4
: Solid Configuration Setup
The configuration file properly declares the required executable and the user-editable file. As a minor refinement, consider quoting thesbt (1.10.7)
value to avoid any potential YAML parsing ambiguity (e.g.,required_executable: "sbt (1.10.7)"
).languages/scala/code/.codecrafters/run.sh (1)
1-12
: Shell script execution and quoting improvement.
The script is clear and usesset -e
appropriately to ensure early exit on error. However, on line 11 the jar path is not fully quoted, which triggers shellcheck warnings regarding literal curly braces. To avoid potential issues, consider quoting the jar path as shown below:- exec java -jar ./target/scala-3.3.5/{{course_slug}} "$@" + exec java -jar "./target/scala-3.3.5/{{course_slug}}" "$@"🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (9)
languages/scala/code/.codecrafters/compile.sh
(1 hunks)languages/scala/code/.codecrafters/run.sh
(1 hunks)languages/scala/code/.gitignore
(1 hunks)languages/scala/code/build.sbt
(1 hunks)languages/scala/code/project/build.properties
(1 hunks)languages/scala/code/project/plugins.sbt
(1 hunks)languages/scala/code/src/main/scala/Main.scala
(1 hunks)languages/scala/config.yml
(1 hunks)languages/scala/dockerfiles/scala-3.3.5.Dockerfile
(1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
languages/scala/code/.codecrafters/run.sh
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
🪛 Hadolint (2.12.0)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile
[error] 44-44: invalid flag: --exclude
(DL1000)
🔇 Additional comments (7)
languages/scala/code/project/build.properties (1)
1-2
: Valid SBT Version Declaration
The file correctly specifies the SBT version as1.10.7
, which aligns with the configuration defined inconfig.yml
.languages/scala/code/project/plugins.sbt (1)
1-3
: Inclusion of sbt-assembly Plugin
The addition of the sbt-assembly plugin with version2.3.1
is correct and will enable fat JAR creation for the Scala project.languages/scala/code/src/main/scala/Main.scala (1)
1-6
: Clean Main Object Implementation
TheMain
object leverages theApp
trait effectively, and the inclusion of a debug log statement to standard error is useful. The commented block provides clear guidance for future implementation.languages/scala/code/.codecrafters/compile.sh (1)
1-12
: Effective Compile Script
The shell script is concise and well-commented. Usingset -e
ensures the script exits on failure, and invokingsbt assembly
meets the required build step for packaging the application.languages/scala/code/.gitignore (1)
1-7
: Gitignore rules are well-defined.
The file correctly excludes build artifacts and IDE-specific directories related to Scala (e.g., target, bloop, bsp, metals).languages/scala/code/build.sbt (1)
1-17
: Build configuration looks solid.
The build file successfully sets the Scala version, project version, organization details, and defines the assembly jar name with a placeholder ({{course_slug}}
). Ensure that the templating system properly replaces placeholders during your build or deployment process.languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1)
1-42
: Dockerfile environment setup review.
The Dockerfile sets up the Scala environment well—installing required apt packages, adding the Scala SBT repositories, and configuring SBT with a pinned version. Ensure that using SBT version 1.9.9 aligns with your project needs and that the multi-stage approach (switching from a focal to an alpine image) is tested for compatibility with your build and deployment pipeline.Also applies to: 46-48
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses | ||
COPY --exclude=.git --exclude=README.md . /app | ||
|
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.
Critical issue with COPY command flags.
The COPY
command on line 44 uses unsupported --exclude
flags. Docker does not support these flags in the COPY command. Instead, manage exclusions by using a .dockerignore
file (e.g., include .git
and README.md
there) and update the command as follows:
- COPY --exclude=.git --exclude=README.md . /app
+ COPY . /app
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses | |
COPY --exclude=.git --exclude=README.md . /app | |
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses | |
COPY . /app |
🧰 Tools
🪛 Hadolint (2.12.0)
[error] 44-44: invalid flag: --exclude
(DL1000)
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
♻️ Duplicate comments (1)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1)
10-10
:⚠️ Potential issueCritical Issue: Unsupported Flags in COPY Command
TheCOPY
command on line 10 uses--exclude
flags, which are not supported in Dockerfile syntax. To exclude files such as.git
andREADME.md
, please remove the unsupported flags and manage exclusions via a.dockerignore
file instead. For example, update the command as follows:- COPY --exclude=.git --exclude=README.md . /app + COPY . /appAlso ensure that your
.dockerignore
file includes entries for.git
andREADME.md
to prevent them from being copied.🧰 Tools
🪛 Hadolint (2.12.0)
[error] 10-10: invalid flag: --exclude
(DL1000)
🧹 Nitpick comments (1)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1)
13-13
: Suggestion: Verify Execution Permissions for the Compile Script
The Dockerfile runs the script at.codecrafters/compile.sh
. Please ensure that this script exists in the expected location and has the proper execute permissions, otherwise the build may fail.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro (Legacy)
📒 Files selected for processing (1)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile
(1 hunks)
🧰 Additional context used
🪛 Hadolint (2.12.0)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile
[error] 10-10: invalid flag: --exclude
(DL1000)
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 (1)
languages/scala/code/.codecrafters/run.sh (1)
11-11
: Resolve Shellcheck Warning: Quote the JAR File PathShellcheck is flagging the unquoted placeholder (
{{course_slug}}
) in the file path. To clarify that the curly braces are intentional literals (used here as a templating placeholder) and to suppress the SC1083 warnings, consider enclosing the JAR file path in quotes.-exec java -jar ./target/scala-3.3.5/{{course_slug}}.jar "$@" +exec java -jar "./target/scala-3.3.5/{{course_slug}}.jar" "$@"🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro (Legacy)
📒 Files selected for processing (1)
languages/scala/code/.codecrafters/run.sh
(1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
languages/scala/code/.codecrafters/run.sh
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.
(SC1083)
🔇 Additional comments (1)
languages/scala/code/.codecrafters/run.sh (1)
1-9
: Overall Script Structure Looks GoodThe script uses a proper shebang, includes useful comments, and employs
set -e
to ensure early exit on failure. This structure adheres to typical shell script best practices for such utility scripts.
Summary by CodeRabbit
New Features
Chores