Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/weekly-proving-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
fi

- name: Run real proving benchmarks
timeout-minutes: 150
timeout-minutes: 180
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand All @@ -57,7 +57,7 @@ jobs:
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
RUN_ID: ${{ github.run_id }}
AWS_SHUTDOWN_TIME: 150
AWS_SHUTDOWN_TIME: 180
NO_SPOT: 1
run: |
./.github/ci3.sh network-proving-bench prove-n-tps-real prove-n-tps-real "aztecprotocol/aztec:${{ steps.nightly-tag.outputs.nightly_tag }}"
Expand Down
3 changes: 3 additions & 0 deletions yarn-project/end-to-end/src/spartan/utils/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export async function installTransferBot({
replicas = 1,
txIntervalSeconds = 10,
followChain = 'CHECKPOINTED',
pxeSyncChainTip = 'proposed',
mnemonic = process.env.LABS_INFRA_MNEMONIC ?? 'test test test test test test test test test test test junk',
mnemonicStartIndex,
botPrivateKey = process.env.BOT_TRANSFERS_L2_PRIVATE_KEY ?? '0xcafe01',
Expand All @@ -49,6 +50,7 @@ export async function installTransferBot({
replicas?: number;
txIntervalSeconds?: number;
followChain?: string;
pxeSyncChainTip?: string;
mnemonic?: string;
mnemonicStartIndex?: number | string;
botPrivateKey?: string;
Expand All @@ -67,6 +69,7 @@ export async function installTransferBot({
'bot.replicaCount': replicas,
'bot.txIntervalSeconds': txIntervalSeconds,
'bot.followChain': followChain,
'bot.pxeSyncChainTip': pxeSyncChainTip,
'bot.botPrivateKey': botPrivateKey,
'bot.nodeUrl': resolvedNodeUrl,
'bot.mnemonic': mnemonic,
Expand Down
Loading