Add openstacksdk to draft builds

As https://review.openstack.org/#/c/180877 will soon merge,
openstacksdk verion of firstapp guide should be added to the
draft builds

Change-Id: I92c2cef38eba28723d1a37461f9b13de8f59844d
This commit is contained in:
Tom Fifield 2015-10-14 17:17:37 +08:00
parent 10aacc6bce
commit 26ee06d105
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ function build_rst {
TAG=""
# We need to extract all strings, so add all supported tags
if [ ${book} = "firstapp" ] ; then
TAG="-t libcloud -t fog -t dotnet -t pkgcloud -t shade"
TAG="-t libcloud -t fog -t dotnet -t openstacksdk -t pkgcloud -t shade"
fi
if [ ${book} = "install-guide" ] ; then
TAG="-t obs -t rdo -t ubuntu -t debian"
@ -87,7 +87,7 @@ function build_rst {
# Build all books
if [ ${book} = "firstapp" ] ; then
# Firstapp has several variations, build all of them
for tag in libcloud dotnet fog pkgcloud shade; do
for tag in libcloud dotnet fog openstacksdk pkgcloud shade; do
tox -evenv "sphinx-build -j $NUMBER_OF_CORES -q -E -t $tag -D language=${language} \
${DOC_DIR}${book}/source/ \
${DOC_DIR}${book}/build-${tag}/html"
@ -202,7 +202,7 @@ function handle_draft_language {
rmdir publish-docs/$language/draft || true
;;
firstapp)
for tag in libcloud dotnet fog pkgcloud shade; do
for tag in libcloud dotnet fog openstacksdk pkgcloud shade; do
mv publish-docs/$language/$book-${tag} \
publish-docs/draft/$language/$book-${tag}
done