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

[SQLite] CC-1656 Upgrade Zig to 0.14 #127

Merged
merged 1 commit into from
Mar 19, 2025
Merged

[SQLite] CC-1656 Upgrade Zig to 0.14 #127

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 a Dockerfile for a containerized Zig 0.14 environment.
  • Chores
    • Improved script portability by switching to relative paths.
    • Upgraded documentation and configuration to require Zig version 0.14.
    • Refined package metadata with dynamic identifiers and new versioning details.

…ed build.zig.zon and codecrafters.yml to reflect the new version, modified README.md for installation instructions, and updated run scripts for compatibility. Added Dockerfile for Zig 0.14.
@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 multiple Zig starter projects and solution files. Shell scripts now determine the executable’s location dynamically using $(dirname $0), replacing hardcoded paths. README and configuration files have been updated to require Zig version 0.14 instead of earlier versions. Package metadata in build configuration files now references a dynamic name, includes a new fingerprint field, and raises the minimum Zig version. Additionally, a new Dockerfile for Zig 0.14 has been introduced, configuring the Alpine environment and installation steps.

Changes

File(s) Change Summary
compiled_starters/zig/{.codecrafters/run.sh, your_program.sh}
solutions/zig/01-dr6/code/{.codecrafters/run.sh, your_program.sh}
starter_templates/zig/code/.codecrafters/run.sh
Replaced hardcoded executable path with $(dirname $0)/zig-out/bin/main for dynamic binary resolution.
compiled_starters/zig/README.md
solutions/zig/01-dr6/code/README.md
Updated Zig version requirement from 0.13+ to 0.14.
compiled_starters/zig/build.zig.zon
solutions/zig/01-dr6/code/build.zig.zon
starter_templates/zig/code/build.zig.zon
Updated package metadata: changed .name to reference .codecrafters_sqlite, added .fingerprint (0x558026c9dcdd8a05), and set .minimum_zig_version to 0.14.0.
compiled_starters/zig/codecrafters.yml
solutions/zig/01-dr6/code/codecrafters.yml
Updated language_pack from zig-0.13 to zig-0.14.
starter_templates/zig/config.yml Updated required_executable from "zig (0.13+)" to "zig (0.14)".
dockerfiles/zig-0.14.Dockerfile Introduced a new Dockerfile for Zig 0.14 with Alpine base, installation commands, environment variable setup, and build steps.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant Script
    participant Binary
    User->>Script: Execute run.sh
    Script->>Script: Determine directory via $(dirname $0)
    Script->>Binary: Build dynamic path (./zig-out/bin/main) and execute
Loading

Poem

In scripts I hop, a path anew,
No more hardcoded trails to pursue.
Zig leaps to 0.14 with a joyful spin,
Docker and configs join in the din.
My furry heart skips over each bug and byte,
Dancing through directories by day and by night,
Hoppy coding with every rabbit delight! 🐇

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 8bd979a into main Mar 19, 2025
25 of 26 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 (6)
solutions/zig/01-dr6/code/.codecrafters/run.sh (1)

11-11: Enhance Robustness by Quoting Command Substitution
The dynamic path resolution using $(dirname $0) is a good improvement for portability. However, to prevent potential word splitting (especially if the directory name contains spaces), it’s recommended to enclose the command substitution in quotes.
Suggested Diff:

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

starter_templates/zig/code/.codecrafters/run.sh (1)

11-11: Improve Shell Robustness with Proper Quoting
While switching to a dynamic path is beneficial, quoting the command substitution prevents any issues with word splitting.
Suggested Diff:

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

solutions/zig/01-dr6/code/your_program.sh (1)

24-24: Ensure Safe Execution with Correct Quoting
The updated execution command correctly uses dynamic path resolution. To guard against word splitting when directory names contain spaces, please enclose the command substitution in quotes.
Suggested Diff:

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

compiled_starters/zig/your_program.sh (1)

24-24: Add Quotes for Robust Path Resolution
The revised command for dynamically locating the Zig executable is a step in the right direction. For greater robustness, wrap the command substitution in quotes to prevent issues with unexpected word splitting.
Suggested Diff:

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

compiled_starters/zig/.codecrafters/run.sh (1)

11-11: Quote Command Substitution for Safety
The modification to use a dynamically resolved path is beneficial. Quoting the output of $(dirname $0) will eliminate potential issues arising from word splitting, thereby enhancing the script’s robustness.
Proposed Change:

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

dockerfiles/zig-0.14.Dockerfile (1)

20-20:

❓ Verification inconclusive

Fix the --exclude flag in Docker COPY command

The static analysis tool flagged an issue with the --exclude flag in the COPY command. While this syntax is supported in newer Docker versions with BuildKit enabled (as indicated by your docker/dockerfile:1.7-labs syntax), it's better to use the documented .dockerignore approach for broader compatibility.

- COPY --exclude=.git --exclude=README.md . /app
+ # Use a .dockerignore file instead of --exclude flags
+ COPY . /app

Consider adding a .dockerignore file in the repository to exclude .git and README.md files.


🏁 Script executed:

#!/bin/bash
# Check if Docker version supports the --exclude flag in COPY
docker --version

Length of output: 115


Replace unsupported COPY flag with .dockerignore approach
The current Dockerfile command using --exclude flags can lead to compatibility issues on environments without BuildKit enabled. Please update the command as follows:

  • Replace:
    COPY --exclude=.git --exclude=README.md . /app
  • With:
    # Use a .dockerignore file to manage ignored files
    COPY . /app

Also, ensure you add a .dockerignore file at the repository root containing entries for .git and README.md.

Note: The automated check for Docker’s version did not run as expected (docker command not found). Please manually verify that your build environment supports the --exclude flag if you intend to use it instead of the recommended .dockerignore method.

🧰 Tools
🪛 Hadolint (2.12.0)

[error] 20-20: invalid flag: --exclude

(DL1000)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 138fb54 and 486b84d.

📒 Files selected for processing (14)
  • compiled_starters/zig/.codecrafters/run.sh (1 hunks)
  • compiled_starters/zig/README.md (1 hunks)
  • compiled_starters/zig/build.zig.zon (2 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-dr6/code/.codecrafters/run.sh (1 hunks)
  • solutions/zig/01-dr6/code/README.md (1 hunks)
  • solutions/zig/01-dr6/code/build.zig.zon (2 hunks)
  • solutions/zig/01-dr6/code/codecrafters.yml (1 hunks)
  • solutions/zig/01-dr6/code/your_program.sh (1 hunks)
  • starter_templates/zig/code/.codecrafters/run.sh (1 hunks)
  • starter_templates/zig/code/build.zig.zon (2 hunks)
  • starter_templates/zig/config.yml (1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
compiled_starters/zig/your_program.sh

[warning] 24-24: Quote this to prevent word splitting.

(SC2046)

solutions/zig/01-dr6/code/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-dr6/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)

🪛 Hadolint (2.12.0)
dockerfiles/zig-0.14.Dockerfile

[error] 20-20: invalid flag: --exclude

(DL1000)

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: test_course_definition / test (kotlin)
🔇 Additional comments (12)
compiled_starters/zig/codecrafters.yml (1)

10-11: Zig Version Configuration Update Correct
The comment listing the available versions and the language_pack field now properly specify zig-0.14, which aligns with the new project requirement.

solutions/zig/01-dr6/code/README.md (1)

32-36: Updated Zig Version in User Instructions
The installation instructions now clearly require zig (0.14) locally. This change is consistent with the upgrade and helps prevent version mismatches during development.

starter_templates/zig/config.yml (1)

2-2: Zig Compiler Requirement Set Correctly
Updating required_executable to zig (0.14) ensures that the starter template enforces the new minimum Zig version, keeping it in line with the overall upgrade.

solutions/zig/01-dr6/code/codecrafters.yml (1)

10-11: Language Pack Version Updated
The language_pack field is now correctly updated to zig-0.14. This update maintains consistency with other parts of the project and ensures that the correct Zig version is used by Codecrafters.

compiled_starters/zig/README.md (1)

32-36: README Instructions Now Reflect Zig 0.14 Requirement
The updated numbered instructions now instruct users to install zig (0.14) locally. This clear directive aligns with the configuration changes and the overall upgrade effort.

solutions/zig/01-dr6/code/build.zig.zon (2)

2-3: Updated package configuration for Zig 0.14 compatibility

The name format has been changed to use an identifier instead of a string literal, and a fingerprint has been added. These changes align with Zig 0.14's package format requirements.


12-12: Minimum Zig version correctly updated to 0.14.0

This change is consistent with the PR's objective of upgrading to Zig 0.14.

compiled_starters/zig/build.zig.zon (2)

2-3: Updated package configuration for Zig 0.14 compatibility

The name format has been changed to use an identifier instead of a string literal, and a fingerprint has been added. These changes align with Zig 0.14's package format requirements.


12-12: Minimum Zig version correctly updated to 0.14.0

This change is consistent with the PR's objective of upgrading to Zig 0.14.

starter_templates/zig/code/build.zig.zon (2)

2-3: Updated package configuration for Zig 0.14 compatibility

The name format has been changed to use an identifier instead of a string literal, and a fingerprint has been added. These changes align with Zig 0.14's package format requirements.


12-12: Minimum Zig version correctly updated to 0.14.0

This change is consistent with the PR's objective of upgrading to Zig 0.14.

dockerfiles/zig-0.14.Dockerfile (1)

1-28: New Dockerfile for Zig 0.14 looks good

The Dockerfile correctly sets up an environment for Zig 0.14.0, including appropriate base image, dependencies, and build configuration.

🧰 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