This is an automated email from the ASF dual-hosted git repository.
heybales pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 9403eb8 GEODE-6479: change calls to benchmark (#3280)
9403eb8 is described below
commit 9403eb8b6cd2cdb04b9c3c47ea033d718b276ba1
Author: Helena Bales <[email protected]>
AuthorDate: Fri Mar 8 10:35:08 2019 -0800
GEODE-6479: change calls to benchmark (#3280)
Use the new CLI options and add --ci option to reflect changes to
benchmark scripts.
Signed-off-by: Sean Goller <[email protected]>
---
ci/scripts/cleanup_benchmarks.sh | 2 +-
ci/scripts/run_benchmarks.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ci/scripts/cleanup_benchmarks.sh b/ci/scripts/cleanup_benchmarks.sh
index 1e8859c..9a59ff3 100755
--- a/ci/scripts/cleanup_benchmarks.sh
+++ b/ci/scripts/cleanup_benchmarks.sh
@@ -51,7 +51,7 @@ else
fi
pushd geode-benchmarks/infrastructure/scripts/aws/
-./destroy_cluster.sh ${CLUSTER_TAG}
+./destroy_cluster.sh -t ${CLUSTER_TAG} --ci
popd
pushd ${RESULTS_BASE_DIR}
diff --git a/ci/scripts/run_benchmarks.sh b/ci/scripts/run_benchmarks.sh
index 79a6aca..7c8c0dc 100755
--- a/ci/scripts/run_benchmarks.sh
+++ b/ci/scripts/run_benchmarks.sh
@@ -41,7 +41,7 @@ GEODE_SHA=$(git rev-parse --verify HEAD)
popd
pushd geode-benchmarks/infrastructure/scripts/aws/
-./launch_cluster.sh ${CLUSTER_TAG} ${CLUSTER_COUNT}
+./launch_cluster.sh -t ${CLUSTER_TAG} -c ${CLUSTER_COUNT} --ci
if [ -z "${BASELINE_VERSION}" ]; then
./run_against_baseline.sh -t ${CLUSTER_TAG} -b ${GEODE_SHA} -B
${BASELINE_BRANCH} -e ${BENCHMARKS_BRANCH} -o ${RESULTS_DIR} -m
"'source':'geode-ci','benchmark_branch':'${BENCHMARK_BRANCH}','baseline_branch':'${BASELINE_BRANCH}','geode_branch':'${GEODE_SHA}'"
-- -i