mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
* Add initial esql test benchmark tests * Fix build-benchmark pipeline * Update gredle profiler
8 lines
392 B
Bash
Executable file
8 lines
392 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
# profiler version we wanna install
|
|
PROFILER_VERSION="0.22.0"
|
|
wget https://repo1.maven.org/maven2/org/gradle/profiler/gradle-profiler/$PROFILER_VERSION/gradle-profiler-$PROFILER_VERSION.zip -O $WORKSPACE/gradle-profiler-$PROFILER_VERSION.zip
|
|
unzip $WORKSPACE/gradle-profiler-$PROFILER_VERSION.zip
|
|
mv $WORKSPACE/gradle-profiler-$PROFILER_VERSION $WORKSPACE/gradle-profiler
|