Files
devstack-gate/slave_scripts/devstack-vm-update-image.sh
James E. Blair 94a54c4e64 Check out a branch of devstack.
Check out a specific branch of devstack when updating vm.

Change-Id: I28d3ae1b94e9972aa506c7e9d31f8bce7fd54c04
2011-12-14 14:46:32 -08:00

49 lines
1.6 KiB
Bash
Executable File

#!/bin/bash -xe
# Update the VM used in devstack deployments.
# Copyright (C) 2011 OpenStack LLC.
#
# Licensed 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.
CI_SCRIPT_DIR=$(cd $(dirname "$0") && pwd)
cd $WORKSPACE
if [[ ! -e devstack ]]; then
git clone https://review.openstack.org/p/openstack-dev/devstack
fi
cd devstack
git remote update
git pull --ff-only origin
git checkout $GERRIT_BRANCH
cd $WORKSPACE
cat devstack/files/apts/* | grep -v NOPRIME | cut -d\# -f1 > devstack-debs
cat devstack/files/pips/* > devstack-pips
source $WORKSPACE/devstack/stackrc
mkdir -p files
# Excerpt from devstack that downloads the images
for image_url in ${IMAGE_URLS//,/ }; do
# Downloads the image (uec ami+aki style), then extracts it.
IMAGE_FNAME=`echo "$image_url" | python -c "import sys; print sys.stdin.read().split('/')[-1]"`
IMAGE_NAME=`echo "$IMAGE_FNAME" | python -c "import sys; print sys.stdin.read().split('.tar.gz')[0].split('.tgz')[0]"`
if [ ! -f files/$IMAGE_FNAME ]; then
wget -c $image_url -O files/$IMAGE_FNAME
fi
done
$CI_SCRIPT_DIR/devstack-vm-update-image.py $WORKSPACE/devstack-debs $WORKSPACE/devstack-pips $WORKSPACE/files