
This patches removes unnecessary utf-8 encoding Change-Id: Ida121eb29eb8ea1b5fb40c3eb6843c4f9cb1caff
47 lines
1.4 KiB
Bash
Executable File
47 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# 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.
|
|
|
|
export SHADE_DIR="$BASE/new/shade"
|
|
|
|
cd $SHADE_DIR
|
|
sudo chown -R jenkins:stack $SHADE_DIR
|
|
|
|
CLOUDS_YAML=/etc/openstack/clouds.yaml
|
|
|
|
if [ ! -e ${CLOUDS_YAML} ]
|
|
then
|
|
# stable/liberty had clouds.yaml in the home/base directory
|
|
sudo mkdir -p /etc/openstack
|
|
sudo cp $BASE/new/.config/openstack/clouds.yaml ${CLOUDS_YAML}
|
|
sudo chown -R jenkins:stack /etc/openstack
|
|
fi
|
|
|
|
# Devstack runs both keystone v2 and v3. An environment variable is set
|
|
# within the shade keystone v2 job that tells us which version we should
|
|
# test against.
|
|
if [ ${SHADE_USE_KEYSTONE_V2:-0} -eq 1 ]
|
|
then
|
|
sudo sed -ie "s/identity_api_version: '3'/identity_api_version: '2.0'/g" $CLOUDS_YAML
|
|
sudo sed -ie '/^.*domain_id.*$/d' $CLOUDS_YAML
|
|
fi
|
|
|
|
echo "Running shade functional test suite"
|
|
set +e
|
|
sudo -E -H -u jenkins tox -efunctional
|
|
EXIT_CODE=$?
|
|
sudo testr last --subunit > $WORKSPACE/tempest.subunit
|
|
set -e
|
|
|
|
exit $EXIT_CODE
|