Merge "Add environments to build install guides individually"

This commit is contained in:
Jenkins 2015-09-16 18:37:16 +00:00 committed by Gerrit Code Review
commit 74288ea2b0
2 changed files with 25 additions and 5 deletions

View File

@ -2,6 +2,8 @@
mkdir -p publish-docs mkdir -p publish-docs
TAGS=${1:-obs rdo ubuntu debian}
LINKCHECK="" LINKCHECK=""
if [[ $# > 0 ]] ; then if [[ $# > 0 ]] ; then
if [ "$1" = "--linkcheck" ] ; then if [ "$1" = "--linkcheck" ] ; then
@ -15,7 +17,7 @@ title_org=$(grep "title::" doc/install-guide/source/index.rst | \
trap "sed -i -e \"s/\.\. title::.*/.. title:: ${title_org}/\" \ trap "sed -i -e \"s/\.\. title::.*/.. title:: ${title_org}/\" \
doc/install-guide/source/index.rst" EXIT doc/install-guide/source/index.rst" EXIT
for tag in obs rdo ubuntu debian; do for tag in $TAGS; do
GLOSSARY="" GLOSSARY=""
if [[ ! -e doc/common-rst/glossary.rst ]] ; then if [[ ! -e doc/common-rst/glossary.rst ]] ; then
GLOSSARY="--glossary" GLOSSARY="--glossary"
@ -28,8 +30,10 @@ for tag in obs rdo ubuntu debian; do
tools/build-rst.sh doc/install-guide \ tools/build-rst.sh doc/install-guide \
$GLOSSARY --tag ${tag} --target "draft/install-guide-${tag}" \ $GLOSSARY --tag ${tag} --target "draft/install-guide-${tag}" \
$LINKCHECK $LINKCHECK
done
# Debian uses index-debian, rename it. # Debian uses index-debian, rename it.
if [[ "$tag" == "debian" ]]; then
mv publish-docs/draft/install-guide-debian/index-debian.html \ mv publish-docs/draft/install-guide-debian/index-debian.html \
publish-docs/draft/install-guide-debian/index.html publish-docs/draft/install-guide-debian/index.html
fi
done

16
tox.ini
View File

@ -52,6 +52,22 @@ commands =
commands = commands =
{toxinidir}/tools/build-install-guides-rst.sh {toxinidir}/tools/build-install-guides-rst.sh
[testenv:install-guide-debian]
commands =
{toxinidir}/tools/build-install-guides-rst.sh debian
[testenv:install-guide-obs]
commands =
{toxinidir}/tools/build-install-guides-rst.sh obs
[testenv:install-guide-rdo]
commands =
{toxinidir}/tools/build-install-guides-rst.sh rdo
[testenv:install-guide-ubuntu]
commands =
{toxinidir}/tools/build-install-guides-rst.sh ubuntu
[testenv:publishdocs] [testenv:publishdocs]
# Prepare all documents (except www subdir) so that they can get # Prepare all documents (except www subdir) so that they can get
# published on docs.openstack.org with just copying publish-docs/* # published on docs.openstack.org with just copying publish-docs/*