tox -e fast-specs

Add a utility, tools/fast-specs.sh, and a corresponding tox target,
fast-specs, to build only spec files changed since the last commit. This
is way faster than building all the specs with tox -e docs, and saves
you having to know several quirks of sphinx-build to do it yourself.

Change-Id: I32223c10cd86379b4d5c337e31d36f5d7820459e
This commit is contained in:
Eric Fried 2019-07-29 14:21:38 -05:00
parent 4498387731
commit 4990806a8d
2 changed files with 74 additions and 1 deletions

66
tools/fast-specs.sh Normal file
View File

@ -0,0 +1,66 @@
#!/bin/bash
#
# Build only spec files changed since the last git commit.
#
# Takes no arguments.
#
# Outputs the full path of built files, for paste-into-browser convenience.
#
# How it works:
# - Determines files changed since last commit
# - Filters to only specs (specs/*/*/*.rst)
# - Maps those by release subdir (second part of the path)
# - Builds all the changed specs in each release subdir
#
# Why it's fast:
# Not, as you may think, because we're only building the specific spec files.
# It is actually because we're restricting sphinx-build to only looking at the
# specific subdirectory/ies of those changed files. Even if only building a
# subset of files, sphinx-build normally parses all of them anyway (probably
# for index-building purposes). Since you're normally building (one spec in)
# the latest release's directory, this saves sphinx-build parsing the 600-ish
# specs from previous releases.
# Temp file storing the full path to built specs
tmpf=/tmp/specs.$$
function cleanup {
rm -f $tmpf
}
trap cleanup EXIT
# Map, keyed by release dir name, of spec files thereunder
declare -A specs_by_release
# Look for specs changed since last commit
for f in $(git diff --name-only HEAD~1 | grep -E 'specs/[^/]+/[^/]+/[^/]+\.rst'); do
# echo $f | cut -d/ -f2, but faster
release=${f#*/}
release=${release%%/*}
# doc/source/... has symlinks, and is where sphinx-build expects sources
specs_by_release[$release]=${specs_by_release[$release]}" doc/source/$f"
done
if [[ ${#specs_by_release[@]} -eq 0 ]]; then
echo "No spec files changed, nothing to build."
exit 0
fi
# Build all changed specs per release directory
for release in "${!specs_by_release[@]}"; do
src=doc/source/specs/$release
bld=doc/build/html/specs/$release
files=${specs_by_release[$release]}
echo "fast-specs: Building for ${release}:$files"
sphinx-build -c doc/source $src $bld $files
# Save the full path to built files. (Wait until the end to output these, so
# they're not lost between subdirectories.)
for f in $files; do
p=$(echo $f | sed 's,/source/,/build/html/,; s/rst$/html/')
realpath $p >> $tmpf
done
done
echo "================"
echo "fast-specs built:"
cat $tmpf
exit 0

View File

@ -8,7 +8,9 @@ usedevelop = True
setenv = VIRTUAL_ENV={envdir}
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/doc/requirements.txt
whitelist_externals = find
whitelist_externals =
find
bash
[testenv:venv]
commands = {posargs}
@ -16,6 +18,11 @@ commands = {posargs}
[testenv:docs]
commands = sphinx-build -W -b html doc/source doc/build/html
[testenv:fast-specs]
description = Build only specs that have changed since last commit
envdir = {toxworkdir}/docs
commands = bash tools/fast-specs.sh
[testenv:pep8]
deps =
-r{toxinidir}/doc/requirements.txt