Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function test_cmds {
local prefix="$hash:ISOLATE=1:TIMEOUT=20m"

if [ "$CI_FULL" -eq 1 ]; then
echo "$prefix:TIMEOUT=20m:CPUS=16:MEM=96g:NAME=e2e_prover_full_real $run_test_script simple e2e_prover/full"
echo "$prefix:TIMEOUT=45m:CPUS=16:MEM=96g:NAME=e2e_prover_full_real $run_test_script simple e2e_prover/full"
else
echo "$prefix:NAME=e2e_prover_full_fake FAKE_PROOFS=1 $run_test_script simple e2e_prover/full"
fi
Expand Down
8 changes: 7 additions & 1 deletion yarn-project/end-to-end/src/e2e_prover/full.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ describe('full_prover', () => {
beforeAll(async () => {
t.logger.warn(`Running suite with ${REAL_PROOFS ? 'real' : 'fake'} proofs`);

await t.setup({ ...PIPELINING_SETUP_OPTS });
await t.setup({
...PIPELINING_SETUP_OPTS,
// Real epoch proving takes longer than the default one-epoch proof-submission window.
// Keep the window open for the duration of this test so the chain does not prune/reorg
// the epoch while the prover is still working.
aztecProofSubmissionEpochs: 640,
});

({ provenAsset, accounts, tokenSim, logger, cheatCodes, provenWallet, aztecNode } = t);
[sender, recipient] = accounts;
Expand Down
Loading