You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2019/02/27 05:05:03 UTC

[geode-benchmarks] branch develop updated: GEODE-6411: Fixes baseline version option.

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new dec1d89  GEODE-6411: Fixes baseline version option.
dec1d89 is described below

commit dec1d89fd65e4e2c93a161a2a41f6257087cab03
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Tue Feb 26 21:04:44 2019 -0800

    GEODE-6411: Fixes baseline version option.
---
 infrastructure/scripts/aws/run_against_baseline.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/infrastructure/scripts/aws/run_against_baseline.sh b/infrastructure/scripts/aws/run_against_baseline.sh
index 18f2e3a..8ae35b2 100755
--- a/infrastructure/scripts/aws/run_against_baseline.sh
+++ b/infrastructure/scripts/aws/run_against_baseline.sh
@@ -136,11 +136,10 @@ else
       -- "$@"
 fi
 
-if [ -z "${BASELINE_VERSION}" ]; then
+if [ -z "${BENCHMARK_BRANCH}" ]; then
   ./run_tests.sh \
       -t ${TAG} \
-      -r ${BASELINE_REPO} \
-      -b ${BASELINE_BRANCH} \
+      -v ${BASELINE_VERSION} \
       -p ${BENCHMARK_REPO} \
       -e ${BENCHMARK_BRANCH} \
       -o ${OUTPUT}/baseline \
@@ -149,7 +148,8 @@ if [ -z "${BASELINE_VERSION}" ]; then
 else
   ./run_tests.sh \
       -t ${TAG} \
-      -v ${BASELINE_VERSION} \
+      -r ${BASELINE_REPO} \
+      -b ${BASELINE_BRANCH} \
       -p ${BENCHMARK_REPO} \
       -e ${BENCHMARK_BRANCH} \
       -o ${OUTPUT}/baseline \