Handle quotes in gradle arguments (#128548)
Validate Gradle Wrapper / Validation (push) Waiting to run Details

This commit is contained in:
Ievgen Degtiarenko 2025-06-02 08:17:25 +02:00 committed by GitHub
parent aa0397fb49
commit c14037985d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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'
timeout_in_minutes: 300
agents:
provider: gcp

View File

@ -41,4 +41,4 @@ else
fi
set -e
$GRADLEW -S --max-workers=$MAX_WORKERS $@
$GRADLEW -S --max-workers=$MAX_WORKERS "$@"