Skip to content

Commit

Permalink
chore: reduce bb_prover_full_rollup to a single block epoch test (#10679
Browse files Browse the repository at this point in the history
)

This reduces CI burden on the main runner as proving times have gone up
a lot. This should happen outside of PRs otherwise, e.g. nightly
Related #10678
  • Loading branch information
ludamad authored Dec 13, 2024
1 parent 3f5cf6c commit 0c2a4d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:

# all the non-bench end-to-end integration tests for aztec
e2e:
needs: [build, e2e-test-gate, configure]
needs: [build, configure]
if: needs.configure.outputs.non-docs == 'true'
runs-on: ubuntu-20.04
strategy:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('prover/bb_prover/full-rollup', () => {

it.each([
[1, 1, 0, 2], // Epoch with a single block, requires one padding block proof
[2, 2, 0, 2], // Full epoch with two blocks
// [2, 2, 0, 2], // Full epoch with two blocks // TODO(#10678) disabled for time x resource usage on main runner
// [2, 3, 0, 2], // Epoch with two blocks but the block merge tree was assembled as with 3 leaves, requires one padding block proof; commented out to reduce running time
])(
'proves a private-only epoch with %i/%i blocks with %i/%i non-empty txs each',
Expand Down

0 comments on commit 0c2a4d9

Please sign in to comment.