Skip to content
Draft
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
9 changes: 7 additions & 2 deletions .buildkite/benchmarks.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,13 @@ steps:
# E2E test jobs with enabled benchmarking
#########################################
- label: E2E tests
parallelism: 7
timeout_in_minutes: 30
# Testing only:
# Since this pipeline was introduced the amount of registered tests has increased
# so much that existing parallelization/timeout is not sufficient.
# Currently, this is run every day so I am not worried increasing parallelism 4x
# and timeout 30% would cause the bill to skyrocket (at least after one run).
parallelism: 30
timeout_in_minutes: 40
command:
- .buildkite/scripts/download_e2e_test_artifacts.sh
- rm -rf /var/tmp/benchmarks/*
Expand Down
3 changes: 3 additions & 0 deletions .buildkite/pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,8 @@ if pr_and_no_code_related_changes; then
pipeline=.buildkite/code-skip.pipeline.yml
fi

# Temporary only to trigger benchmarks pipeline.
pipeline=.buildkite/benchmarks.pipeline.yml

# Upload the selected pipeline.
cat $pipeline | buildkite-agent pipeline upload
Loading