Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Simtest] reduce surfer traffic and increase simtest nightly timeout #17599

Merged
merged 1 commit into from
May 9, 2024
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
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
Loading