2013-08-15 17:52:52 +00:00
|
|
|
#!/bin/bash -xe
|
|
|
|
|
|
|
|
# Copyright (C) 2011-2013 OpenStack Foundation
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
HOSTNAME=$1
|
|
|
|
|
2014-07-02 16:45:56 -07:00
|
|
|
export SUDO='true'
|
|
|
|
export THIN='true'
|
2015-01-12 17:25:06 +00:00
|
|
|
TEMPEST_DIR=${TEMPEST_DIR:-/opt/git/openstack/tempest}
|
2014-07-02 16:45:56 -07:00
|
|
|
|
|
|
|
./prepare_node.sh "$HOSTNAME"
|
|
|
|
sudo -u jenkins -i /opt/nodepool-scripts/prepare_devstack.sh "$HOSTNAME"
|
2014-02-19 09:03:19 -08:00
|
|
|
|
2014-11-20 23:01:37 -05:00
|
|
|
# Setup venv and install deps for prepare_tempest_testrepository.py
|
|
|
|
sudo virtualenv -p python2 /opt/git/subunit2sql-env
|
2015-12-23 13:36:33 +01:00
|
|
|
sudo -H /opt/git/subunit2sql-env/bin/pip install -U testrepository \
|
|
|
|
subunit2sql PyMySQL
|
2014-11-20 23:01:37 -05:00
|
|
|
|
|
|
|
# Pre-seed tempest testrepository with data from subunit2sql
|
2015-12-23 13:36:33 +01:00
|
|
|
sudo -i env PATH=/opt/git/subunit2sql-env/bin:$PATH \
|
|
|
|
/opt/git/subunit2sql-env/bin/python2 \
|
|
|
|
/opt/nodepool-scripts/prepare_tempest_testrepository.py \
|
|
|
|
$TEMPEST_DIR
|
2014-11-20 23:01:37 -05:00
|
|
|
|
2015-01-30 13:27:53 -05:00
|
|
|
sudo chown -R jenkins:jenkins $TEMPEST_DIR/preseed-streams
|
2015-01-23 16:02:19 -05:00
|
|
|
|
2015-08-04 02:28:37 -04:00
|
|
|
# Delete the venv after the script is called
|
2014-11-20 23:01:37 -05:00
|
|
|
sudo rm -rf /opt/git/subunit2sql-env
|
|
|
|
|
2014-03-05 14:33:39 -08:00
|
|
|
./restrict_memory.sh
|