Skip to content

Commit

Permalink
Tune replay granularity for speed
Browse files Browse the repository at this point in the history
mainnet: max-versions-per-range: 1M -> 0.8M,
testnet: max-versions-per-range: 1.8M -> 2M
  • Loading branch information
msmouse committed Sep 24, 2024
1 parent 51f896c commit 62c5a4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/replay-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# workflow config
RUNS_ON: "high-perf-docker-with-local-ssd"
TIMEOUT_MINUTES: 180
MAX_VERSIONS_PER_RANGE: 1800000
MAX_VERSIONS_PER_RANGE: 2000000

replay-mainnet:
if: |
Expand All @@ -98,7 +98,7 @@ jobs:
# workflow config
RUNS_ON: "high-perf-docker-with-local-ssd"
TIMEOUT_MINUTES: 180
MAX_VERSIONS_PER_RANGE: 1000000
MAX_VERSIONS_PER_RANGE: 800000

test-replay:
if: ${{ (github.event_name == 'pull_request') && contains(github.event.pull_request.labels.*.name, 'CICD:test-replay')}}
Expand All @@ -119,4 +119,4 @@ jobs:
# workflow config
RUNS_ON: "high-perf-docker-with-local-ssd"
TIMEOUT_MINUTES: 120 # increase test replay timeout to capture more flaky errors
MAX_VERSIONS_PER_RANGE: 1800000
MAX_VERSIONS_PER_RANGE: 2000000

0 comments on commit 62c5a4a

Please sign in to comment.