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

chore(devcontainer): update image: v1.0.8 #2815

Merged
merged 1 commit into from
Dec 17, 2024
Merged

chore(devcontainer): update image: v1.0.8 #2815

merged 1 commit into from
Dec 17, 2024

Conversation

tarrencev
Copy link
Contributor

@tarrencev tarrencev commented Dec 16, 2024

Automated changes by create-pull-request GitHub action

Summary by CodeRabbit

  • New Features

    • Updated Docker image version to v1.0.8 across various workflows and development environments.
    • Added a new step in the test job to download artifacts and set executable permissions.
    • Introduced a new test-hurl job for running tests against .hurl files.
    • Included a check in the ensure-docker job to monitor the katana process.
  • Bug Fixes

    • Ensured proper functioning of the katana process with error messaging for unexpected exits.

Copy link

coderabbitai bot commented Dec 16, 2024

Walkthrough

Ohayo, sensei! This pull request focuses on updating the Docker image version from v1.0.7 to v1.0.8 across multiple configuration files. The changes span the development container configuration, GitHub Actions workflows for benchmarking, continuous integration, and release dispatching. The update is consistent across .devcontainer/devcontainer.json, .github/workflows/bench.yml, .github/workflows/ci.yml, and .github/workflows/release-dispatch.yml.

Changes

File Change Summary
.devcontainer/devcontainer.json Docker image version updated from v1.0.7 to v1.0.8
.github/workflows/bench.yml Docker image version updated from v1.0.7 to v1.0.8 in bench-katana and bench-sozo jobs
.github/workflows/ci.yml Docker image version updated from v1.0.7 to v1.0.8 across multiple jobs
Added new test-hurl job and artifact download step in test job
.github/workflows/release-dispatch.yml Docker image version updated from v1.0.7 to v1.0.8 in propose-release job

Possibly related PRs

Suggested reviewers

  • glihm

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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. (Beta)
  • @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.

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.

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 (2)
.github/workflows/ci.yml (2)

Line range hint 184-203: Ohayo sensei! Nice addition of API testing with Hurl

The new test-hurl job is well structured with proper setup of dependencies and test execution. Consider adding a comment to document the purpose of these API tests.

  test-hurl:
+   # Executes API integration tests using Hurl to validate RPC endpoints
    needs: build
    runs-on: ubuntu-latest
🧰 Tools
🪛 actionlint (1.7.4)

32-32: label "ubuntu-latest-32-cores" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2022", "windows-2019", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-22.04", "ubuntu-20.04", "macos-latest", "macos-latest-xl", "macos-latest-xlarge", "macos-latest-large", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xl", "macos-14-xlarge", "macos-14-large", "macos-14", "macos-13-xl", "macos-13-xlarge", "macos-13-large", "macos-13", "macos-12-xl", "macos-12-xlarge", "macos-12-large", "macos-12", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file

(runner-label)


36-36: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue

(action)


Line range hint 95-104: Consider enhancing error diagnostics, sensei

The katana process verification is a good addition, but we could capture more diagnostic information when it fails.

          ./katana &
          KATANA_PID=$!
          sleep 2
          if ! kill -0 $KATANA_PID; then
-           echo "Katana exited with an error"
+           echo "Katana process (PID: $KATANA_PID) exited unexpectedly"
+           echo "Last few lines of katana output:"
+           tail -n 10 katana.log
            exit 1
          fi
          kill $KATANA_PID
🧰 Tools
🪛 actionlint (1.7.4)

32-32: label "ubuntu-latest-32-cores" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2022", "windows-2019", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-22.04", "ubuntu-20.04", "macos-latest", "macos-latest-xl", "macos-latest-xlarge", "macos-latest-large", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xl", "macos-14-xlarge", "macos-14-large", "macos-14", "macos-13-xl", "macos-13-xlarge", "macos-13-large", "macos-13", "macos-12-xl", "macos-12-xlarge", "macos-12-large", "macos-12", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file

(runner-label)


36-36: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue

(action)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3f9c309 and f2e64fe.

📒 Files selected for processing (4)
  • .devcontainer/devcontainer.json (1 hunks)
  • .github/workflows/bench.yml (2 hunks)
  • .github/workflows/ci.yml (7 hunks)
  • .github/workflows/release-dispatch.yml (1 hunks)
✅ Files skipped from review due to trivial changes (3)
  • .github/workflows/bench.yml
  • .github/workflows/release-dispatch.yml
  • .devcontainer/devcontainer.json
🔇 Additional comments (1)
.github/workflows/ci.yml (1)

34-34: Ohayo! Verify the changelog for dojo-dev:v1.0.8

The Docker image version has been consistently updated across all jobs. Let's verify the changes in this version.

Also applies to: 59-59, 126-126, 142-142, 157-157, 166-166, 175-175

✅ Verification successful

Ohayo! The Docker image version v1.0.8 is verified and up-to-date, sensei!

The version update is appropriate as v1.0.8 is the latest release (published on December 16, 2024) with verified changes including:

  • Torii gRPC query improvements
  • Entity timestamp tracking updates
  • Proper version progression from v1.0.7
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check the latest version and changelog of dojo-dev image

# Check latest version tag
gh api \
  -H "Accept: application/vnd.github+json" \
  repos/dojoengine/dojo/packages/container/dojo-dev/versions \
  --jq '.[0].metadata.container.tags[0]'

# Check for changelog or release notes
gh release view v1.0.8 --repo dojoengine/dojo 2>/dev/null || echo "No release notes found for v1.0.8"

Length of output: 1452

Copy link

codecov bot commented Dec 16, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 55.67%. Comparing base (3f9c309) to head (f2e64fe).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2815      +/-   ##
==========================================
- Coverage   55.67%   55.67%   -0.01%     
==========================================
  Files         439      439              
  Lines       55699    55699              
==========================================
- Hits        31009    31008       -1     
- Misses      24690    24691       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@glihm glihm merged commit 28ec8e8 into main Dec 17, 2024
14 checks passed
@glihm glihm deleted the bump-devcontainer branch December 17, 2024 03:41
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.

2 participants