From 26ee06d10556029147c660fe2745715fb3807028 Mon Sep 17 00:00:00 2001 From: Tom Fifield Date: Wed, 14 Oct 2015 17:17:37 +0800 Subject: [PATCH] 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 --- bin/doc-tools-check-languages | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/doc-tools-check-languages b/bin/doc-tools-check-languages index b6c4a689..b7db6286 100755 --- a/bin/doc-tools-check-languages +++ b/bin/doc-tools-check-languages @@ -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