Show pip freeze output for all docs jobs

With the 'pip freeze' block at the end of the script, it is not run if
the earlier call to tox to run the doc build fails. Move it up to the
top of the script and run it before the doc build instead.

Change-Id: I7e14ef07599c11babe99f110786a7025d97b1e32
This commit is contained in:
Doug Hellmann 2014-07-18 07:38:41 -07:00
parent e2476f8e92
commit e963ff82ea

View File

@ -17,6 +17,11 @@ source /usr/local/jenkins/slave_scripts/select-mirror.sh $org $project
venv=venv
echo "Begin pip freeze output from test virtualenv:"
echo "======================================================================"
tox -e$venv -- pip freeze
echo "======================================================================"
mkdir -p doc/build
export HUDSON_PUBLISH_DOCS=1
tox -e$venv -- python setup.py build_sphinx
@ -76,9 +81,4 @@ else
mv doc/build/tmp/* doc/build/html/$BRANCH
fi
echo "Begin pip freeze output from test virtualenv:"
echo "======================================================================"
.tox/$venv/bin/pip freeze
echo "======================================================================"
exit $result