diff options
author | Georg Brandl <georg@python.org> | 2016-06-15 08:57:32 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-06-15 08:57:32 +0200 |
commit | 5096e8bfe6f37608ffa515a78afe81d715870e8a (patch) | |
tree | d921c6556ba8aff488f51aac9cf7ef7dbc71ec43 | |
parent | af31279f301588bed55896044512de3dd24a569b (diff) | |
download | cpython-5096e8bfe6f37608ffa515a78afe81d715870e8a.tar.gz |
Docs: add html-stable autobuild variant
-rw-r--r-- | Doc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index ea3023157d..2220d92d91 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -161,7 +161,7 @@ autobuild-dev: -make suspicious # for quick rebuilds (HTML only) -autobuild-html: +autobuild-dev-html: make html SPHINXOPTS='-A daily=1 -A versionswitcher=1' # for stable releases: only build if not in pre-release stage (alpha, beta) @@ -173,3 +173,9 @@ autobuild-stable: esac @make autobuild-dev +autobuild-stable-html: + @case $(DISTVERSION) in *[ab]*) \ + echo "Not building; $(DISTVERSION) is not a release version."; \ + exit 1;; \ + esac + @make autobuild-dev-html |