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

Make sure restoration benchmarks do not interfere with microbenchmarks #4907

Merged
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
17 changes: 13 additions & 4 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ steps:
./scripts/buildkite/main/benchmark-history.sh
agents:
system: x86_64-linux
key: benchmarks-history

- input: Restoration Benchmark
if: build.env("RELEASE_CANDIDATE") == null || build.env("TEST_RC") == "TRUE"
Expand All @@ -436,7 +437,9 @@ steps:
command: |
nix develop path:./scripts/buildkite/main --command bash -c \
"./scripts/buildkite/main/bench-restore.sh mainnet base $HOME/databases/node/mainnet-1"
depends_on: restoration-parameters
depends_on:
- restoration-parameters
- benchmarks-history # Avoid overlapping with micro-benchmarks
timeout_in_minutes: 1380
agents:
system: ${linux}
Expand All @@ -448,7 +451,9 @@ steps:
command: |
nix develop path:./scripts/buildkite/main --command bash -c \
"./scripts/buildkite/main/bench-restore.sh mainnet seq0 $HOME/databases/node/mainnet-2"
depends_on: restoration-parameters
depends_on:
- restoration-parameters
- benchmarks-history # Avoid overlapping with micro-benchmarks
timeout_in_minutes: 1380
agents:
system: ${linux}
Expand All @@ -460,7 +465,9 @@ steps:
command: |
nix develop path:./scripts/buildkite/main --command bash -c \
"./scripts/buildkite/main/bench-restore.sh mainnet seq1 $HOME/databases/node/mainnet-3"
depends_on: restoration-parameters
depends_on:
- restoration-parameters
- benchmarks-history # Avoid overlapping with micro-benchmarks
timeout_in_minutes: 1380
agents:
system: ${linux}
Expand All @@ -472,7 +479,9 @@ steps:
command: |
nix develop path:./scripts/buildkite/main --command bash -c \
"./scripts/buildkite/main/bench-restore.sh mainnet rnd5 $HOME/databases/node/mainnet-4"
depends_on: restoration-parameters
depends_on:
- restoration-parameters
- benchmarks-history # Avoid overlapping with micro-benchmarks
timeout_in_minutes: 1380
agents:
system: ${linux}
Expand Down
Loading