Nova (at least) now splits out test-requires but the current venv build job doesn't support it. Change-Id: I4425fde3a3768467021ae0acb7d5d9d17eb93415
29 lines
787 B
Bash
Executable File
29 lines
787 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# Make sure there is a location on this builder to cache pip downloads
|
|
mkdir -p ~/cache/pip
|
|
export PIP_DOWNLOAD_CACHE=~/cache/pip
|
|
|
|
# Start with a clean slate
|
|
rm -fr jenkins_venvs
|
|
mkdir -p jenkins_venvs
|
|
|
|
# Build a venv for every known branch
|
|
for branch in `git branch -r |grep "origin/"|grep -v HEAD|sed "s/origin\///"`
|
|
do
|
|
echo "Building venv for $branch"
|
|
git checkout $branch
|
|
mkdir -p jenkins_venvs/$branch
|
|
python tools/install_venv.py
|
|
virtualenv --relocatable .venv
|
|
if [ -e tools/test-requires ]
|
|
then
|
|
pip bundle .cache.bundle -r tools/pip-requires -r tools/test-requires
|
|
else
|
|
pip bundle .cache.bundle -r tools/pip-requires
|
|
fi
|
|
tar cvfz jenkins_venvs/$branch/venv.tgz .venv .cache.bundle
|
|
rm -fr .venv .cache.bundle
|
|
done
|
|
git checkout master
|