Checkout tests and download image file
This commit is contained in:
parent
b0e57cf38f
commit
264aba5543
1 changed files with 11 additions and 1 deletions
|
@ -31,7 +31,7 @@ cleanup() {
|
||||||
trap 2; kill -2 $$
|
trap 2; kill -2 $$
|
||||||
}
|
}
|
||||||
|
|
||||||
trap cleanup SIGHUP SIGINT SIGTERM
|
trap cleanup SIGHUP SIGINT SIGTERM SIGQUIT
|
||||||
|
|
||||||
# Echo commands
|
# Echo commands
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
|
@ -165,6 +165,7 @@ git_clone $NOVACLIENT_REPO $COPY_DIR/$DEST/python-novaclient $NOVACLIENT_BRANCH
|
||||||
git_clone $OPENSTACKX_REPO $COPY_DIR/$DEST/openstackx $OPENSTACKX_BRANCH
|
git_clone $OPENSTACKX_REPO $COPY_DIR/$DEST/openstackx $OPENSTACKX_BRANCH
|
||||||
git_clone $KEYSTONE_REPO $COPY_DIR/$DEST/keystone $KEYSTONE_BRANCH
|
git_clone $KEYSTONE_REPO $COPY_DIR/$DEST/keystone $KEYSTONE_BRANCH
|
||||||
git_clone $NOVNC_REPO $COPY_DIR/$DEST/noVNC $NOVNC_BRANCH
|
git_clone $NOVNC_REPO $COPY_DIR/$DEST/noVNC $NOVNC_BRANCH
|
||||||
|
git_clone $CITEST_REPO $COPY_DIR/$DEST/openstack-integration-tests $CITEST_BRANCH
|
||||||
|
|
||||||
# Back to devstack
|
# Back to devstack
|
||||||
cd $TOP_DIR
|
cd $TOP_DIR
|
||||||
|
@ -409,6 +410,15 @@ umount $ROOTFS/dev
|
||||||
chroot $ROOTFS dpkg-reconfigure openssh-server
|
chroot $ROOTFS dpkg-reconfigure openssh-server
|
||||||
sed -e 's/^PasswordAuthentication.*$/PasswordAuthentication yes/' -i $ROOTFS/etc/ssh/sshd_config
|
sed -e 's/^PasswordAuthentication.*$/PasswordAuthentication yes/' -i $ROOTFS/etc/ssh/sshd_config
|
||||||
|
|
||||||
|
# Pre-load an image for testing
|
||||||
|
UEC_NAME=$DIST_NAME-server-cloudimg-amd64
|
||||||
|
CIVMDIR=${ROOTFS}${DEST}/openstack-integration-tests/include/sample_vm
|
||||||
|
if [ ! -e $CIVMDIR/$UEC_NAME.tar.gz ]; then
|
||||||
|
mkdir -p $CIVMDIR
|
||||||
|
(cd $CIVMDIR && wget -N http://uec-images.ubuntu.com/$DIST_NAME/current/$UEC_NAME.tar.gz;
|
||||||
|
tar xzf $UEC_NAME.tar.gz;)
|
||||||
|
fi
|
||||||
|
|
||||||
# Unmount
|
# Unmount
|
||||||
umount $ROOTFS || echo 'ok'
|
umount $ROOTFS || echo 'ok'
|
||||||
ROOTFS=""
|
ROOTFS=""
|
||||||
|
|
Loading…
Reference in a new issue