Skip to content
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

Merged
merged 1 commit into from
Mar 19, 2025
Merged

[HTTP] CC-1656 Upgrade Zig to 0.14 #116

merged 1 commit into from
Mar 19, 2025

Conversation

andy1li
Copy link
Member

@andy1li andy1li commented Mar 19, 2025

Summary by CodeRabbit

  • New Features

    • Introduced an updated Docker configuration for a streamlined development environment with Zig 0.14.
  • Chores/Configuration

    • Revised project settings and dependency declarations to require Zig 0.14.
    • Adjusted file ignore patterns to better manage development artifacts.
  • Refactor

    • Renamed the executable from its former identifier to “main” across execution and build processes for enhanced consistency.
  • Documentation

    • Updated installation instructions to reflect the new Zig version requirement.

- 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
@andy1li andy1li self-assigned this Mar 19, 2025
Copy link

linear bot commented Mar 19, 2025

Copy link

coderabbitai bot commented Mar 19, 2025

Walkthrough

The changes update several Zig projects to invoke a new executable named main instead of zig. Execution scripts in various directories now use a relative path based on the script’s location. Build configuration files and package metadata have been updated accordingly—including renaming the executable, setting a new fingerprint, and updating the minimum Zig version from 0.11/0.12 to 0.14. Additionally, Git ignore rules have been revised for directories and files such as .zig-cache, main, and .DS_Store, and a new Dockerfile for Zig 0.14 has been introduced.

Changes

File(s) Change Summary
compiled_starters/zig/.codecrafters/run.sh
compiled_starters/zig/your_program.sh
solutions/zig/01-at4/code/.codecrafters/run.sh
solutions/zig/01-at4/code/your_program.sh
starter_templates/zig/code/.codecrafters/run.sh
Updated the execution command from invoking zig to main using $(dirname $0) for a relative path, preserving argument passing.
compiled_starters/zig/.gitignore
solutions/zig/01-at4/code/.gitignore
starter_templates/zig/code/.gitignore
Revised ignore patterns: adjusted rules for .zig-cache, main, and .DS_Store (and backup files) to reflect the project changes.
compiled_starters/zig/README.md
solutions/zig/01-at4/code/README.md
Updated the Zig version requirement from 0.12 to 0.14.
compiled_starters/zig/build.zig
solutions/zig/01-at4/code/build.zig
starter_templates/zig/code/build.zig
Changed the executable’s name from "zig" to "main".
compiled_starters/zig/build.zig.zon
solutions/zig/01-at4/code/build.zig.zon
starter_templates/zig/code/build.zig.zon
Updated package metadata: changed .name to .codecrafters_http_server, added a .fingerprint field, and set .minimum_zig_version to "0.14.0".
compiled_starters/zig/codecrafters.yml
solutions/zig/01-at4/code/codecrafters.yml
Updated the language_pack version from zig-0.12 to zig-0.14.
starter_templates/zig/config.yml Updated the required_executable attribute from zig (0.12) to zig (0.14).
dockerfiles/zig-0.14.Dockerfile Introduced a new Dockerfile for Zig 0.14 based on Alpine 3.20, installing required packages, downloading and configuring Zig, and setting up environment variables for the build process.

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
Loading

Possibly related PRs

Suggested reviewers

  • rohitpaulk

Poem

I'm a bunny of code, in a garden of change,
Hopping from zig to main in a neat range.
Paths now resolve with a clever little trick,
Docker and metadata updated real quick.
In each file I nibble, improvements take flight—
A hop-happy sprint to keep builds light! 🐰

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@andy1li andy1li merged commit 1441ccd into main Mar 19, 2025
27 of 28 checks passed
Copy link

@coderabbitai coderabbitai bot left a 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' executable

Good 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' executable

Good 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 to main 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 to main 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 to main 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

📥 Commits

Reviewing files that changed from the base of the PR and between 921681e and 6cf35d1.

📒 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 good

The 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 appropriate

Ignoring the "main" executable aligns with the name change in build.zig.


4-4: Adding .zig-cache/ to ignored directories is appropriate

This properly ignores Zig build artifacts that shouldn't be committed.


16-16: Improved .DS_Store ignore pattern

The 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.14

The package name change and addition of fingerprint field align with Zig 0.14's package management requirements.


12-12: Minimum Zig version update is appropriate

Setting 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 requirement

Documentation 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.14

The 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 zig

Length 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 --version

Length of output: 115


Action: Please verify BuildKit is enabled to support the --exclude flag

It 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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant