39eb0491fb
Adding a yml file to the project but not listing it in the .pp file only really ever caused bugs. Moved the full openstack project list to a variable for re-use. Change-Id: I211b5cf54d5a84c6136a4b04ea819c688cc1e2b6
30 lines
986 B
Bash
30 lines
986 B
Bash
#!/bin/bash
|
|
# This file is managed by puppet.
|
|
# https://github.com/openstack/openstack-ci-puppet
|
|
|
|
export PIP_DOWNLOAD_CACHE=${PIP_DOWNLOAD_CACHE:-/var/cache/pip}
|
|
export PIP_TEMP_DOWNLOAD=${PIP_TEMP_DOWNLOAD:-/var/lib/pip-download}
|
|
|
|
project=$1
|
|
pip_command='/usr/local/bin/pip install -M -U -I --exists-action=w --no-install'
|
|
|
|
cd ${PIP_TEMP_DOWNLOAD}
|
|
short_project=`echo ${project} | cut -f2 -d/`
|
|
if [ ! -d ${short_project} ] ; then
|
|
git clone git://github.com/${project}.git ${short_project} >/dev/null 2>&1
|
|
fi
|
|
cd ${short_project}
|
|
$pip_command pip
|
|
git fetch origin
|
|
for branch in `git branch -a | grep remotes.origin | grep -v origin.HEAD | awk '{print $1}' ` ; do
|
|
git reset --hard $branch
|
|
git clean -x -f -d -q
|
|
echo "*********************"
|
|
echo "Fetching pip requires for $project:$branch"
|
|
for requires_file in tools/pip-requires tools/test-requires ; do
|
|
if [ -f ${requires_file} ] ; then
|
|
$pip_command -r $requires_file
|
|
fi
|
|
done
|
|
done
|