From 675eef731a098f83aa98c2021b151b7e5ba1da7d Mon Sep 17 00:00:00 2001 From: Guo Ruijing Date: Tue, 21 Jun 2016 03:03:32 +0800 Subject: Add fuel plugin for Yardstick 1. fuel can deploy yardstick 2. todo: fuel run yardstick Change-Id: If1a4b178187d78bdc2d4c3b6469faff78dc51ead Signed-off-by: Chou, David J Signed-off-by: Hinman, John Signed-off-by: Guo Ruijing --- fuel-plugin/pre_build_hook | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 fuel-plugin/pre_build_hook (limited to 'fuel-plugin/pre_build_hook') diff --git a/fuel-plugin/pre_build_hook b/fuel-plugin/pre_build_hook new file mode 100755 index 000000000..9446d2a1a --- /dev/null +++ b/fuel-plugin/pre_build_hook @@ -0,0 +1,31 @@ +#!/bin/bash + +set -eux + +BUILD_FOR=${BUILD_FOR:-ubuntu} +DIR="$(dirname `readlink -f $0`)" + +function build_pkg { + case $1 in + ubuntu) + rm -rf ${DIR}/repositories/ubuntu; mkdir -p ${DIR}/repositories/ubuntu + + # don't support online installation now + # cd ${DIR}/repositories/ubuntu + # Use aptititude; apt-get -d will skip download if package is already installed + # sudo apt-get install aptitude -y + # Download python packages into the repository + # aptitude download python-virtualenv python-dev libffi-dev libssl-dev + + cd ${DIR}/.. + tar -czf ${DIR}/repositories/ubuntu/yardstick.tar.gz . --exclude=yardstick.tar.gz + ;; + + *) echo "Not supported system"; exit 1;; + esac +} + +for system in $BUILD_FOR +do + build_pkg $system +done -- cgit 1.2.3-korg