0c8798bf2d
Check RST files for valid links. This is a separte target for now to evaluate how useful it is. Whitelist build.opensuse.org URL for user-guide. Remove also checklang from default tox invocation since it's not needed to run by default. Change-Id: I6c275518b9e55ab3b6bcea52894ea851924bee94
28 lines
597 B
Bash
Executable File
28 lines
597 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p publish-docs
|
|
|
|
GLOSSARY="--glossary"
|
|
|
|
LINKCHECK=""
|
|
if [[ $# > 0 ]] ; then
|
|
if [ "$1" = "--linkcheck" ] ; then
|
|
LINKCHECK="$1"
|
|
fi
|
|
fi
|
|
|
|
for guide in user-guide user-guide-admin networking-guide admin-guide-cloud; do
|
|
tools/build-rst.sh doc/$guide $GLOSSARY --build build \
|
|
--target $guide $LINKCHECK
|
|
# Build it only the first time
|
|
GLOSSARY=""
|
|
done
|
|
|
|
# Draft guides
|
|
for guide in contributor-guide; do
|
|
tools/build-rst.sh doc/$guide --build build \
|
|
--target "draft/$guide" $LINKCHECK
|
|
done
|
|
|
|
tools/build-install-guides-rst.sh $LINKCHECK
|