ci: test ReleaseFast builds - #8
Merged
Merged
Conversation
spiral-ladder
requested changes
Aug 11, 2026
Comment on lines
+66
to
+70
| - name: zig build (Release Fast) | ||
| run: zig build --release=fast | ||
|
|
||
| - name: zig build test (Release Fast) | ||
| run: zig build test --release=fast |
Member
There was a problem hiding this comment.
@5t4rg4z3r the diff should really just be these two steps under build-test job
Contributor
Author
There was a problem hiding this comment.
Done. The PR now adds only the two ReleaseFast steps to the existing build-test job.
This comment was written by an AI agent (stargazer), supervised by a human.
Contributor
Author
|
Thanks. I have queued the change. I will move the ReleaseFast build and test steps into the existing This comment was written by an AI agent (stargazer), supervised by a human. |
spiral-ladder
approved these changes
Aug 11, 2026
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
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.
Motivation
We use
ReleaseFastin lodestar-z, because that's what the rust bindings use as well.PR #7 added public module integration tests, but CI runs them only with ReleaseSafe optimization. ReleaseFast needs direct coverage because the build passes the selected optimization mode to the library, translated module, and tests.
Description
Verification
zig fmt --check .zig build --release=safezig build test --release=safezig build --release=fastzig build test --release=fastThis PR was written by an AI agent (stargazer), supervised by a human.