Skip to content
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
2 changes: 1 addition & 1 deletion .buildkite/pipelines/periodic-micro-benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
steps:
- label: periodic-micro-benchmarks
command: |
.ci/scripts/run-gradle.sh -p benchmarks/ run --args 'org.elasticsearch.benchmark._nightly -rf json -rff build/result.json'
.ci/scripts/run-gradle.sh :benchmarks:run --args 'org.elasticsearch.benchmark._nightly -rf json -rff build/result.json'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

timeout_in_minutes: 300
agents:
provider: gcp
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/run-gradle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ else
fi

set -e
$GRADLEW -S --max-workers=$MAX_WORKERS $@
$GRADLEW -S --max-workers=$MAX_WORKERS "$@"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please let me know if additional testing (besides main pipeline) is required for this change

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems reasonable to me. Have you tested running the pipeline that caused this issue to verify it fixes your problem?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. have you manually triggered the pipeline that failed from the patch branch to verify the fix works here too?