d24109b2b7
Use master branch of pbr to test before releasing new version of it. Change-Id: I29d00737aaee3464b49ce7904cfbd8e8ef7dcc92
130 lines
3.8 KiB
Bash
Executable File
130 lines
3.8 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# If a bundle file is present, call tox with the jenkins version of
|
|
# the test environment so it is used. Otherwise, use the normal
|
|
# (non-bundle) test environment. Also, run pbr freeze on the
|
|
# resulting environment at the end so that we have a record of exactly
|
|
# what packages we ended up testing.
|
|
#
|
|
# Usage: run-tox.sh VENV
|
|
#
|
|
# Where VENV is the name of the tox environment to run (specified in the
|
|
# project's tox.ini file).
|
|
|
|
venv=$1
|
|
|
|
if [[ -z "$venv" ]]; then
|
|
echo "Usage: $?"
|
|
echo
|
|
echo "VENV: The tox environment to run (eg 'py27')"
|
|
exit 1
|
|
fi
|
|
|
|
script_path=/usr/local/jenkins/slave_scripts
|
|
|
|
set +x
|
|
oslo_libs="automaton"
|
|
oslo_libs="$oslo_libs debtcollector"
|
|
oslo_libs="$oslo_libs futurist"
|
|
oslo_libs="$oslo_libs osprofiler"
|
|
oslo_libs="$oslo_libs oslo.cache"
|
|
oslo_libs="$oslo_libs oslo.concurrency"
|
|
oslo_libs="$oslo_libs oslo.config"
|
|
oslo_libs="$oslo_libs oslo.context"
|
|
oslo_libs="$oslo_libs oslo.db"
|
|
oslo_libs="$oslo_libs oslo.i18n"
|
|
oslo_libs="$oslo_libs oslo.log"
|
|
oslo_libs="$oslo_libs oslo.messaging"
|
|
oslo_libs="$oslo_libs oslo.middleware"
|
|
oslo_libs="$oslo_libs oslo.policy"
|
|
oslo_libs="$oslo_libs oslo.privsep"
|
|
oslo_libs="$oslo_libs oslo.reports"
|
|
oslo_libs="$oslo_libs oslo.rootwrap"
|
|
oslo_libs="$oslo_libs oslo.serialization"
|
|
oslo_libs="$oslo_libs oslo.service"
|
|
oslo_libs="$oslo_libs oslo.utils"
|
|
oslo_libs="$oslo_libs oslo.versionedobjects"
|
|
oslo_libs="$oslo_libs oslo.vmware"
|
|
oslo_libs="$oslo_libs oslosphinx"
|
|
oslo_libs="$oslo_libs oslotest"
|
|
oslo_libs="$oslo_libs pbr"
|
|
oslo_libs="$oslo_libs pycadf"
|
|
oslo_libs="$oslo_libs stevedore"
|
|
oslo_libs="$oslo_libs taskflow"
|
|
oslo_libs="$oslo_libs tooz"
|
|
oslo_libs_count=$(echo $oslo_libs | awk '{print NF}')
|
|
set -x
|
|
|
|
# NOTE(dims): tox barfs when there are {posargs} references
|
|
# in the commands we reference
|
|
sed -ri 's/\{posargs\}//g' tox.ini
|
|
|
|
# This is the actual script tox will run...
|
|
cat << EOF > oslo-from-master.sh
|
|
#!/bin/bash
|
|
|
|
# Since this will be triggered by run_tox.sh and run_tox.sh
|
|
# has settings for this, we shouldn't typically enter this block
|
|
# but just incase we do...
|
|
if [ -z "\${UPPER_CONSTRAINTS_FILE}" ]; then
|
|
wget -q https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt -O "\${PWD}/upper-constraints.txt"
|
|
UPPER_CONSTRAINTS_FILE="\${PWD}/upper-constraints.txt"
|
|
fi
|
|
|
|
echo "Adjusting and creating a new upper constraints file, please wait..."
|
|
oslo_upper_constraints_file=\${PWD}/oslo-upper-constraints.txt
|
|
tmp_oslo_upper_constraints_file=\${PWD}/oslo-upper-constraints.txt.bak
|
|
cp \${UPPER_CONSTRAINTS_FILE} \${oslo_upper_constraints_file}
|
|
for lib in $oslo_libs; do
|
|
cat \${oslo_upper_constraints_file} | grep -v "\${lib}" > "\${tmp_oslo_upper_constraints_file}"
|
|
mv \${tmp_oslo_upper_constraints_file} \${oslo_upper_constraints_file}
|
|
done
|
|
rm \${tmp_oslo_upper_constraints_file}
|
|
|
|
echo "Installing $oslo_libs_count oslo libraries (from git), please wait..."
|
|
pip freeze > pip_freeze_before.txt
|
|
set +x
|
|
install_what=""
|
|
for lib in $oslo_libs; do
|
|
install_what="\${install_what} -e git+https://git.openstack.org/openstack/\${lib}.git#egg=\${lib}"
|
|
done
|
|
set -x
|
|
pip install \${install_what} -c \${oslo_upper_constraints_file}
|
|
pip freeze > pip_freeze_after.txt
|
|
|
|
echo "Full freeze diff:"
|
|
|
|
# Diff seems to exit with non-zero on a difference, but since
|
|
# we expect there to be a difference, we don't want to have this
|
|
# (or tox) fail due to that...
|
|
diff -u pip_freeze_before.txt pip_freeze_after.txt || true
|
|
|
|
EOF
|
|
|
|
chmod +x oslo-from-master.sh
|
|
|
|
# Use the explicit environment (if we can).
|
|
if grep "^\[testenv:${venv}\]" tox.ini; then
|
|
cat << EOF >> tox.ini
|
|
|
|
[testenv:${venv}-oslo-master]
|
|
posargs =
|
|
commands =
|
|
bash oslo-from-master.sh
|
|
{[testenv:${venv}]commands}
|
|
EOF
|
|
else
|
|
cat << EOF >> tox.ini
|
|
|
|
[testenv:${venv}-oslo-master]
|
|
commands =
|
|
bash oslo-from-master.sh
|
|
{[testenv]commands}
|
|
EOF
|
|
fi
|
|
|
|
echo "Post-modification tox.ini:"
|
|
cat tox.ini
|
|
|
|
$script_path/run-tox.sh $venv-oslo-master
|