-
Notifications
You must be signed in to change notification settings - Fork 20
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
[HTTP] CC-1656 Upgrade Zig to 0.14 #116
Conversation
- Update Zig version in configuration files and README - Rename executable from 'zig' to 'main' in build scripts - Adjust .gitignore to include new patterns - Add Dockerfile for Zig 0.14 - Update run scripts to reflect changes in executable name
WalkthroughThe changes update several Zig projects to invoke a new executable named Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Script
participant Binary
User->>Script: Execute run.sh with arguments
Script->>Binary: Invoke $(dirname $0)/zig-out/bin/main "$@"
Binary-->>User: Return output
Possibly related PRs
Suggested reviewers
Poem
Tip ⚡🧪 Multi-step agentic review comment chat (experimental)
✨ Finishing Touches
🪧 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: 0
🧹 Nitpick comments (5)
compiled_starters/zig/your_program.sh (1)
24-24
: Path correctly updated to use the new 'main' executableGood change to use the new executable name and make the path relative to the script location, which makes the script more robust regardless of current working directory.
However, the command substitution should be quoted to prevent word splitting issues if the path contains spaces or special characters.
-exec $(dirname $0)/zig-out/bin/main "$@" +exec "$(dirname "$0")"/zig-out/bin/main "$@"🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 24-24: Quote this to prevent word splitting.
(SC2046)
starter_templates/zig/code/.codecrafters/run.sh (1)
11-11
: Path correctly updated to use the new 'main' executableGood change to use the new executable name and make the path relative to the script location, ensuring consistency with the other updated files.
However, the command substitution should be quoted to prevent word splitting issues if the path contains spaces or special characters.
-exec $(dirname $0)/zig-out/bin/main "$@" +exec "$(dirname "$0")"/zig-out/bin/main "$@"🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 11-11: Quote this to prevent word splitting.
(SC2046)
compiled_starters/zig/.codecrafters/run.sh (1)
11-11
: Update is correct but consider quoting the command substitution.The change from
zig
tomain
correctly implements the Zig 0.14 upgrade by updating the executable name. Using$(dirname $0)
ensures the script runs from its current directory, which is a good practice.Consider addressing the Shellcheck warning by quoting the command substitution:
-exec $(dirname $0)/zig-out/bin/main "$@" +exec "$(dirname $0)"/zig-out/bin/main "$@"This prevents word splitting issues if paths contain spaces.
🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 11-11: Quote this to prevent word splitting.
(SC2046)
solutions/zig/01-at4/code/.codecrafters/run.sh (1)
11-11
: Update is correct but consider quoting the command substitution.The change from
zig
tomain
correctly implements the Zig 0.14 upgrade by updating the executable name. Using$(dirname $0)
ensures the script runs from its current directory, which is a good practice.Consider addressing the Shellcheck warning by quoting the command substitution:
-exec $(dirname $0)/zig-out/bin/main "$@" +exec "$(dirname $0)"/zig-out/bin/main "$@"This prevents word splitting issues if paths contain spaces.
🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 11-11: Quote this to prevent word splitting.
(SC2046)
solutions/zig/01-at4/code/your_program.sh (1)
24-24
: Update is correct but consider quoting the command substitution.The change from
zig
tomain
correctly implements the Zig 0.14 upgrade by updating the executable name in the local run script. Using$(dirname $0)
ensures the script runs from its current directory, which is a good practice.Consider addressing the Shellcheck warning by quoting the command substitution:
-exec $(dirname $0)/zig-out/bin/main "$@" +exec "$(dirname $0)"/zig-out/bin/main "$@"This prevents word splitting issues if paths contain spaces.
🧰 Tools
🪛 Shellcheck (0.10.0)
[warning] 24-24: Quote this to prevent word splitting.
(SC2046)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (20)
compiled_starters/zig/.codecrafters/run.sh
(1 hunks)compiled_starters/zig/.gitignore
(2 hunks)compiled_starters/zig/README.md
(1 hunks)compiled_starters/zig/build.zig
(1 hunks)compiled_starters/zig/build.zig.zon
(1 hunks)compiled_starters/zig/codecrafters.yml
(1 hunks)compiled_starters/zig/your_program.sh
(1 hunks)dockerfiles/zig-0.14.Dockerfile
(1 hunks)solutions/zig/01-at4/code/.codecrafters/run.sh
(1 hunks)solutions/zig/01-at4/code/.gitignore
(2 hunks)solutions/zig/01-at4/code/README.md
(1 hunks)solutions/zig/01-at4/code/build.zig
(1 hunks)solutions/zig/01-at4/code/build.zig.zon
(1 hunks)solutions/zig/01-at4/code/codecrafters.yml
(1 hunks)solutions/zig/01-at4/code/your_program.sh
(1 hunks)starter_templates/zig/code/.codecrafters/run.sh
(1 hunks)starter_templates/zig/code/.gitignore
(2 hunks)starter_templates/zig/code/build.zig
(1 hunks)starter_templates/zig/code/build.zig.zon
(1 hunks)starter_templates/zig/config.yml
(1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
solutions/zig/01-at4/code/.codecrafters/run.sh
[warning] 11-11: Quote this to prevent word splitting.
(SC2046)
starter_templates/zig/code/.codecrafters/run.sh
[warning] 11-11: Quote this to prevent word splitting.
(SC2046)
compiled_starters/zig/your_program.sh
[warning] 24-24: Quote this to prevent word splitting.
(SC2046)
compiled_starters/zig/.codecrafters/run.sh
[warning] 11-11: Quote this to prevent word splitting.
(SC2046)
solutions/zig/01-at4/code/your_program.sh
[warning] 24-24: Quote this to prevent word splitting.
(SC2046)
🪛 Hadolint (2.12.0)
dockerfiles/zig-0.14.Dockerfile
[error] 20-20: invalid flag: --exclude
(DL1000)
🔇 Additional comments (24)
starter_templates/zig/code/build.zig (1)
6-6
: Executable name change looks goodThe change from "zig" to "main" for the executable name is appropriate and avoids potential naming conflicts with the Zig compiler itself.
starter_templates/zig/code/.gitignore (3)
2-2
: Updated ignore rule for main executable is appropriateIgnoring the "main" executable aligns with the name change in build.zig.
4-4
: Adding .zig-cache/ to ignored directories is appropriateThis properly ignores Zig build artifacts that shouldn't be committed.
16-16
: Improved .DS_Store ignore patternThe pattern
**/.DS_Store
is better as it will ignore .DS_Store files in all subdirectories, not just the root.starter_templates/zig/code/build.zig.zon (2)
2-4
: Package metadata updates for Zig 0.14The package name change and addition of fingerprint field align with Zig 0.14's package management requirements.
12-12
: Minimum Zig version update is appropriateSetting the minimum Zig version to 0.14.0 is consistent with the PR objective to upgrade Zig.
compiled_starters/zig/README.md (1)
33-33
: Documentation updated to reflect Zig version requirementDocumentation properly updated to inform users that Zig 0.14 is now required.
starter_templates/zig/config.yml (1)
2-2
: Version update looks good.The update from Zig 0.12 to 0.14 in the configuration file is consistent with the PR objective.
solutions/zig/01-at4/code/README.md (1)
33-33
: Version update looks good.The README has been correctly updated to reference Zig 0.14 instead of 0.12, aligning with the PR objective.
compiled_starters/zig/codecrafters.yml (1)
10-11
: Version update looks good.The configuration file has been properly updated to reference Zig 0.14 as both the available version and the language pack to use.
solutions/zig/01-at4/code/build.zig (1)
6-6
: Executable name change looks good.The executable name has been updated from "zig" to "main", which is consistent with the changes described in the PR summary.
solutions/zig/01-at4/code/codecrafters.yml (1)
10-11
: Language pack version correctly updated to zig-0.14The configuration has been properly updated to specify Zig 0.14 as required. This aligns perfectly with the PR objective to upgrade Zig.
compiled_starters/zig/build.zig (1)
6-6
: Executable name correctly updated from 'zig' to 'main'Good change to rename the executable from "zig" to "main" which avoids potential confusion with the Zig compiler itself. This change is consistent with the updated run scripts and improves the project's naming convention.
solutions/zig/01-at4/code/build.zig.zon (2)
12-12
: Minimum Zig version correctly updated to 0.14.0.The minimum Zig version has been updated from 0.11.0 to 0.14.0, which is consistent with the PR objective to upgrade Zig to version 0.14.
2-4
:❓ Verification inconclusive
Package name and fingerprint updated for Zig 0.14 compatibility.
The package name has been changed from a string literal to a reference
.codecrafters_http_server
and a fingerprint has been added. These changes align with Zig 0.14's package system requirements.
🏁 Script executed:
#!/bin/bash # Verify that .codecrafters_http_server is properly defined elsewhere in the codebase rg -l "codecrafters_http_server" --type zigLength of output: 43
Action: Verify Package Identifier Definition
The package name update—replacing the string literal with the reference
.codecrafters_http_server
and adding a fingerprint—is appropriate for aligning with Zig 0.14's package system requirements. However, an automated search did not locate any definition for.codecrafters_http_server
in the repository. Please verify manually that this identifier is declared (or imported) appropriately elsewhere in the codebase; if it’s missing, you should add the necessary definition to ensure proper linkage.
- Location to verify:
solutions/zig/01-at4/code/build.zig.zon
- Next steps: Confirm that
.codecrafters_http_server
is defined or imported according to the new package system requirements and that its usage here is valid.compiled_starters/zig/.gitignore (3)
2-2
: Added 'main' to gitignore to reflect the new executable name.This change is consistent with the update mentioned in the AI summary, where the executable name has been changed from "zig" to "main".
4-4
: Added '.zig-cache/' pattern to gitignore.This properly ensures that both variants of the Zig cache directory are ignored in the repository.
16-16
: Improved .DS_Store ignoring with pattern that works for all subdirectories.The change from
.DS_Store
to**/.DS_Store
expands the ignore rule to match macOS system files in any subdirectory, not just the root.solutions/zig/01-at4/code/.gitignore (1)
2-2
: Consistent .gitignore updates across project directories.These changes mirror those made in the compiled_starters directory, ensuring consistent ignore patterns throughout the project.
Also applies to: 4-4, 16-16, 18-18
compiled_starters/zig/build.zig.zon (2)
2-3
: Updated package name and added fingerprint for identification.The package name has been changed from "zig" to ".codecrafters_http_server" and a fingerprint has been added, which helps uniquely identify the package.
12-12
: Updated minimum Zig version requirement to 0.14.0.This change aligns with the PR objective to upgrade Zig to version 0.14.
dockerfiles/zig-0.14.Dockerfile (3)
1-14
: New Dockerfile for Zig 0.14 with proper version and dependencies.The Dockerfile properly sets up a container with Zig 0.14.0 installed, using Alpine 3.20 as the base image and specifying minimum versions for dependencies.
26-27
: Good use of caching for build artifacts.Creating a cache directory for the .zig-cache helps speed up subsequent builds. The
|| true
ensures the command doesn't fail if the directory doesn't exist.
20-20
:❓ Verification inconclusive
The --exclude flag requires BuildKit to be enabled.
The static analysis tool flagged this as an issue, but it's actually supported in newer Docker versions with BuildKit enabled, which is specified by your syntax directive on line 1.
🏁 Script executed:
#!/bin/bash # Check Docker version to confirm BuildKit support docker --versionLength of output: 115
Action: Please verify BuildKit is enabled to support the
--exclude
flagIt appears our automated Docker version check couldn’t run since the Docker command wasn’t available in the sandbox environment. However, as indicated by the syntax directive on line 1 of your Dockerfile, BuildKit is enabled, which supports the use of the
--exclude
flag. Please manually verify in your local environment that Docker is running a newer version with BuildKit correctly enabled.
- Confirm the syntax directive on line 1 effectively enables BuildKit.
- Manually run
docker --version
and, if needed, validate that BuildKit features (like--exclude
) are available in your Docker setup.🧰 Tools
🪛 Hadolint (2.12.0)
[error] 20-20: invalid flag: --exclude
(DL1000)
Summary by CodeRabbit
New Features
Chores/Configuration
Refactor
Documentation