-
Notifications
You must be signed in to change notification settings - Fork 295
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
feat: PG recursive verifier constructors based on stdlib inputs #8052
Merged
Merged
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ef2830a
rec folding test passes with new stdlib based constructors
ledwards2225 f40fd4c
Merge branch 'master' into lde/pg_verifier_updates
ledwards2225 b405ba7
use new constructor from precursor branch
ledwards2225 51c9ad1
pg verify method that takes a stdlib proof
ledwards2225 0460b98
use new interface in aztec ivc
ledwards2225 5f0c10f
use new interface in client ivc
ledwards2225 6f2010c
there is only the new interface
ledwards2225 f55c7fe
update ci yml to run e2e when client ivc is changed
ledwards2225 ae65fb2
fix: use new verifier constructor in client ivc
ledwards2225 051a4d9
try to force CI to run e2e
ledwards2225 1021e38
remove some no longer needed native input constructors
ledwards2225 1f5aa27
cleanup and simplify accumulator constructor
ledwards2225 8b292f0
Merge branch 'master' into lde/pg_verifier_updates
ledwards2225 bf7fe39
revert debugging changes in ci yml
ledwards2225 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ env: | |
GIT_COMMIT: ${{ github.event.pull_request.head.sha || github.sha }} | ||
# kludge until we move away from runners | ||
WAIT_FOR_RUNNERS: false | ||
FULL_CI: true | ||
|
||
jobs: | ||
setup: | ||
|
@@ -78,6 +79,7 @@ jobs: | |
- barretenberg/cpp/pil/** | ||
- barretenberg/cpp/src/barretenberg/vm/** | ||
- barretenberg/cpp/src/barretenberg/**/generated/* | ||
- barretenberg/cpp/src/barretenberg/client_ivc.{hpp,cpp} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change will actually stay. It just says run e2e if client_ivc changes which is a no-brainer |
||
non-docs: | ||
- '!(docs/**)' | ||
non-misc-ci: | ||
|
@@ -105,7 +107,7 @@ jobs: | |
|
||
build: | ||
needs: [build-images, changes] | ||
if: ${{ needs.changes.outputs.non-docs == 'true' && needs.changes.outputs.non-misc-ci == 'true' && needs.changes.outputs.non-barretenberg-cpp == 'true' }} | ||
if: ${{ (needs.changes.outputs.non-docs == 'true' && needs.changes.outputs.non-misc-ci == 'true' && needs.changes.outputs.non-barretenberg-cpp == 'true') || 'true' }} | ||
runs-on: ${{ github.event.pull_request.user.login || github.actor }}-x86 | ||
outputs: | ||
e2e_list: ${{ steps.e2e_list.outputs.list }} | ||
|
@@ -133,7 +135,7 @@ jobs: | |
# all the non-bench end-to-end integration tests for aztec | ||
e2e: | ||
needs: [build, changes] | ||
if: ${{ needs.changes.outputs.non-barretenberg-cpp == 'true' }} | ||
if: ${{ needs.changes.outputs.non-barretenberg-cpp == 'true' || 'true' }} | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
|
@@ -163,7 +165,7 @@ jobs: | |
# all the benchmarking end-to-end integration tests for aztec (not required to merge) | ||
bench-e2e: | ||
needs: [build, changes] | ||
if: ${{ needs.changes.outputs.non-barretenberg-cpp == 'true' }} | ||
if: ${{ needs.changes.outputs.non-barretenberg-cpp == 'true' || 'true'}} | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
|
@@ -196,7 +198,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
needs: [build-images, changes] | ||
# Note: not fully accurate, but to work with bench-summary needs to be the same as bench-e2e | ||
if: ${{ needs.changes.outputs.non-barretenberg-cpp == 'true' }} | ||
if: ${{ needs.changes.outputs.non-barretenberg-cpp == 'true' || 'true' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: { ref: "${{ env.GIT_COMMIT }}" } | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
Changes in this file are just intended to make sure e2e tests run on this PR since they're plausibly effected. Will undo them before merge