diff --git a/build_scripts/storage-scale/download_storage_scale.sh b/build_scripts/storage-scale/download_storage_scale.sh index c4ff2608..54c5252b 100644 --- a/build_scripts/storage-scale/download_storage_scale.sh +++ b/build_scripts/storage-scale/download_storage_scale.sh @@ -1,12 +1,22 @@ -WORKING_DIR="~/WORKSPACE/DOWNLOAD_STORAGE_SCALE" -mkdir -p ~/WORKSPACE/DOWNLOAD_STORAGE_SCALE +#!/bin/bash + +set -x + +WORKING_DIR="DOWNLOAD_STORAGE_SCALE" +mkdir -p $WORKING_DIR cd $WORKING_DIR +echo $PWD yum install -y unzip curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" +ls -ltr unzip -qq awscliv2.zip -sudo ./aws/install +chmod +x ./aws/* +./aws/install +aws --version aws configure set aws_access_key_id ${AWS_ACCESS_KEY} aws configure set aws_secret_access_key ${AWS_SECRET_KEY} -aws s3api get-object --bucket nfsganesha-ci --key "Storage_Scale_Developer-5.1.8.0-x86_64-Linux.zip" "Storage_Scale_Developer-5.1.8.0-x86_64-Linux.zip" -ls -ltr ${WORKING_DIR} -cat Storage_Scale_Developer-5.1.8.0-x86_64-Linux.zip +aws s3api get-object --bucket nfsganesha-ci --key "version_to_use.txt" "version_to_use.txt" +VERSION_TO_USE=$(cat version_to_use.txt) +echo ${VERSION_TO_USE} +aws s3api get-object --bucket nfsganesha-ci --key "${VERSION_TO_USE}" "Storage_Scale.zip" +ls -ltr