Skip to content

Commit

Permalink
[Simtest] reduce surfer traffic and increase simtest nightly timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtian committed May 9, 2024
1 parent a75de44 commit 3fdda69
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/simulator-nightly-mysticeti.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ concurrency:

on:
schedule:
- cron: '0 17 * * *' # UTC timing is every day at 9am PST
- cron: '0 15 * * *' # equivalent to 7am PST
workflow_dispatch:
inputs:
sui_ref:
Expand All @@ -28,7 +28,8 @@ env:

jobs:
simtest:
timeout-minutes: 240
# Allow running the job for up to 6 hours, maximum for GitHub Actions.
timeout-minutes: 360
permissions:
# The "id-token: write" permission is required or Machine ID will not be
# able to authenticate with the cluster.
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/simulator-nightly-narwhal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ concurrency:

on:
schedule:
- cron: '0 13 * * *' # UTC timing is every day at 5am PST
- cron: '0 3 * * *' # equivalent to 7PM PST
workflow_dispatch:
inputs:
sui_ref:
Expand All @@ -28,7 +28,8 @@ env:

jobs:
simtest:
timeout-minutes: 240
# Allow running the job for up to 6 hours, maximum for GitHub Actions.
timeout-minutes: 360
permissions:
# The "id-token: write" permission is required or Machine ID will not be
# able to authenticate with the cluster.
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/simulator-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ concurrency:

on:
schedule:
- cron: '0 9 * * *' # UTC timing is every day at 1am PST
- cron: '0 9 * * *' # equivalent to 1am PST
workflow_dispatch:
inputs:
sui_ref:
Expand All @@ -25,7 +25,8 @@ env:

jobs:
simtest:
timeout-minutes: 240
# Allow running the job for up to 6 hours, maximum for GitHub Actions.
timeout-minutes: 360
permissions:
# The "id-token: write" permission is required or Machine ID will not be
# able to authenticate with the cluster.
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-benchmark/tests/simtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ mod test {
.collect();
info!("using sui_surfer test packages: {test_package_paths:?}");

let surf_strategy = SurfStrategy::new(Duration::from_millis(250));
let surf_strategy = SurfStrategy::new(Duration::from_millis(400));
let results = sui_surfer::run_with_test_cluster_and_strategy(
surf_strategy,
test_duration,
Expand Down

0 comments on commit 3fdda69

Please sign in to comment.