-
Notifications
You must be signed in to change notification settings - Fork 3.3k
improvement(runners): added blacksmith optimizations to workflows and dockerfiles to enhance performance #2055
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…e performance. please review before pushing to production
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile Summary
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as "Developer"
participant GH as "GitHub Actions"
participant Cache as "Registry Cache"
participant ECR as "Amazon ECR"
participant GHCR as "GitHub Container Registry"
Dev->>GH: "Push to main/staging"
GH->>GH: "Run test-build workflow"
GH->>Cache: "Cache Bun dependencies"
GH->>GH: "Build AMD64 images"
GH->>Cache: "Pull cache-from registry"
GH->>ECR: "Push images with tag (latest/staging)"
GH->>GHCR: "Push AMD64 images (main only)"
GH->>Cache: "Save cache-to inline"
alt Main branch only
GH->>GH: "Build ARM64 images"
GH->>Cache: "Pull cache-from registry"
GH->>GHCR: "Push ARM64 images"
GH->>Cache: "Save cache-to inline"
GH->>GHCR: "Create multi-arch manifests"
end
GH->>GH: "Deploy to Trigger.dev"
GH->>GH: "Process docs embeddings"
|
Contributor
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.
12 files reviewed, 2 comments
Edit Code Review Agent Settings | Greptile
React with 👍 or 👎 to share your feedback on this new summary format
…per blacksmith docs
10 tasks
waleedlatif1
added a commit
that referenced
this pull request
Nov 20, 2025
… dockerfiles to enhance performance (#2055) * added blacksmith optimizations to workflows and dockerfiles to enhance performance. please review before pushing to production * remove cache from and cache to directives from docker based actions, per blacksmith docs --------- Co-authored-by: Connor Mulholland <connormul@Connors-MacBook-Pro.local>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
added blacksmith optimizations to workflows and dockerfiles to enhance performance. please review before pushing to production
Type of Change
Testing
Tested manually
Checklist