| #!/usr/bin/env bash |
| |
| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| DATE=$(date '+%m-%d-%Y-%H-%M-%S') |
| |
| TAG=${1} |
| BRANCH=${2:-develop} |
| BENCHMARK_BRANCH=${3:-develop} |
| OUTPUT=${4:-output-${DATE}-${TAG}} |
| PREFIX="geode-performance-${TAG}" |
| |
| SSH_OPTIONS="-i ~/.ssh/geode-benchmarks/${TAG}.pem" |
| HOSTS=`aws ec2 describe-instances --query 'Reservations[*].Instances[*].PrivateIpAddress' --filter "Name=tag:geode-benchmarks,Values=${TAG}" --output text` |
| HOSTS=$(echo ${HOSTS} | tr ' ' ',') |
| FIRST_INSTANCE=`aws ec2 describe-instances --query 'Reservations[*].Instances[*].PublicIpAddress' --filter "Name=tag:geode-benchmarks,Values=${TAG}" --output text | cut -f 1` |
| |
| echo "FIRST_INSTANCE=${FIRST_INSTANCE}" |
| echo "HOSTS=${HOSTS}" |
| |
| ssh ${SSH_OPTIONS} geode@$FIRST_INSTANCE "\ |
| rm -rf geode-benchmarks geode && \ |
| git clone --depth=1 https://github.com/apache/geode --branch ${BRANCH} geode && \ |
| cd geode && \ |
| ./gradlew pTML -PversionNumber=${DATE} -PreleaseType="-BENCHMARKBUILD" && \ |
| cd .. && \ |
| git clone https://github.com/apache/geode-benchmarks --branch ${BENCHMARK_BRANCH} && \ |
| cd geode-benchmarks && \ |
| ./gradlew -PgeodeVersion=${DATE}-BENCHMARKBUILD benchmark -Phosts=${HOSTS}" |
| |
| |
| mkdir -p ${OUTPUT} |
| |
| scp ${SSH_OPTIONS} -r geode@${FIRST_INSTANCE}:geode-benchmarks/geode-benchmarks/build/reports ${OUTPUT}/reports |
| BENCHMARK_DIRECTORY="$(ssh ${SSH_OPTIONS} geode@${FIRST_INSTANCE} ls -l geode-benchmarks/geode-benchmarks/build/ | grep benchmark | awk 'NF>1{print $NF}')" |
| scp ${SSH_OPTIONS} -r geode@${FIRST_INSTANCE}:geode-benchmarks/geode-benchmarks/build/${BENCHMARK_DIRECTORY} ${OUTPUT} |
| |