openstack-manuals/tools/build-all-rst.sh
Andreas Jaeger a7180f39b5 Remove ha-guide-draft
Change https://review.openstack.org/618057 imported the ha-guide-draft
into the ha-guide repo, we can delete this one now completely.

Change-Id: I477efa414b6130e8cea591b09544021345b4d045
2018-11-23 08:38:28 +01:00

49 lines
1.2 KiB
Bash
Executable File

#!/bin/bash -e
mkdir -p publish-docs
# Set this to a sensible value if not set by OpenStack CI.
if [ -z "$ZUUL_BRANCH" ] ; then
ZUUL_BRANCH="master"
fi
# This marker is needed for infra publishing.
# Note for stable branches, this needs to be the top of each manual.
MARKER_TEXT="Project: $ZUUL_PROJECT Ref: $ZUUL_BRANCH Build: $ZUUL_UUID Revision: $ZUUL_NEWREF"
LINKCHECK=""
PDF_OPTION=""
while [[ $# > 0 ]] ; do
option="$1"
case $option in
--linkcheck)
LINKCHECK="--linkcheck"
;;
--pdf)
PDF_OPTION="--pdf"
;;
esac
shift
done
# PDF targets for Install guides are dealt in build-install-guides-rst.sh
PDF_TARGETS=( 'arch-design'\
'image-guide' \
'install-guide')
for guide in arch-design doc-contrib-guide glossary \
image-guide install-guide; do
if [[ ${PDF_TARGETS[*]} =~ $guide ]]; then
tools/build-rst.sh doc/$guide --build build \
--target $guide $LINKCHECK $PDF_OPTION
else
tools/build-rst.sh doc/$guide --build build \
--target $guide $LINKCHECK
fi
done
# For master, just mark the root
if [ "$ZUUL_BRANCH" = "master" ] ; then
echo $MARKER_TEXT > publish-docs/.root-marker
fi