ZK Prove Any: tracking PR#4361
Draft
pmikolajczyk41 wants to merge 275 commits intomasterfrom
Draft
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## master #4361 +/- ##
===========================================
- Coverage 52.15% 33.15% -19.00%
===========================================
Files 506 506
Lines 73739 60415 -13324
===========================================
- Hits 38458 20033 -18425
- Misses 30083 36846 +6763
+ Partials 5198 3536 -1662 |
Contributor
❌ 8 Tests Failed:
View the top 3 failed tests by shortest run time
📣 Thoughts on this report? Let Codecov know! | Powered by Codecov |
CI: cancel old runs & do not require changelog
…dencies Cleanup workspace dependencies
Member
Author
|
state for 17 II 2026:
|
Use types from validation crate
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
…olchain point secp256k1 to SP1-provided RISC-V toolchain
Member
Author
|
state for 21 IV 2026: 56 files changed |
…. Reduce testcases, do some refactors
…iling Makify SP1. Record a few types of blocks.
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
When you invoke $(MAKE) in a recipe, make automatically: 1. Sets MAKEFLAGS (the make variable). 2. Exports MAKEFLAGS as an environment variable. 3. The sub-make reads MAKEFLAGS from the environment at startup and applies those flags. Passing $(MAKEFLAGS) as positional arguments (make $(MAKEFLAGS)) is redundant, not additive — it's the same info via a second channel. And it's actively harmful because of the argv quoting rules: MAKEFLAGS stores short flags concatenated without a leading dash (e.g. w, sw, j4), so when interpolated onto a command line, w becomes a target, sw becomes a target, etc. The env-based path has no such ambiguity because make parses it itself. Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Sync SP1 README with new Makefile workflow; add run target
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.
NOT INTENDED FOR MERGING (YET)
pulls in OffchainLabs/wasmer#34