forked from skoczen/django-seo-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fabfile.py
77 lines (57 loc) · 2.24 KB
/
fabfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import os
import tempfile
from django_seo_js import VERSION
from fabric.api import *
SITE_DIR = "site"
WHITELIST_DIRS = [".git", ]
WHITELIST_FILES = [".gitignore", ]
SANITY_CHECK_PROJECT_FILES = ["fabfile.py", "setup.py", "mkdocs.yml"]
SANITY_CHECK_BUILD_FILES = ["index.html", "js", "css"]
def _splitpath(path):
path = os.path.normpath(path)
return path.split(os.sep)
def tag_release():
# Tag the release:
local("git tag %s" % VERSION)
local("git push --tags")
def upload_release():
local("python setup.py sdist upload")
def release():
# deploy_docs()
upload_release()
tag_release()
def deploy_docs():
# For someday move to mkdocs. Stolen verbatim from will.
# Sanity check dir.
root_dir = os.getcwd()
assert all([os.path.exists(os.path.join(root_dir, f)) for f in SANITY_CHECK_PROJECT_FILES])
local("rm -rf %s" % SITE_DIR)
local("mkdocs build")
tempdir = tempfile.mkdtemp()
local("mv %s/* %s" % (SITE_DIR, tempdir))
current_branch = local("git rev-parse --abbrev-ref HEAD", capture=True)
last_commit = local("git log -1 --pretty=\%B", capture=True)
# Add the new site to build
local("git checkout gh-pages")
# Sanity check dir.
root_dir = os.getcwd()
assert all([os.path.exists(os.path.join(root_dir, f)) for f in SANITY_CHECK_BUILD_FILES])
for root, dirs, files in os.walk(root_dir, topdown=False):
for name in files:
if name not in WHITELIST_FILES and not any([r in WHITELIST_DIRS for r in _splitpath(root)]):
# print "removing %s" % (os.path.join(root, name))
os.remove(os.path.join(root, name))
for name in dirs:
if name not in WHITELIST_DIRS and not any([r in WHITELIST_DIRS for r in _splitpath(root)]):
# print "removing %s" % (os.path.join(root, name))
os.rmdir(os.path.join(root, name))
local("cp -rv %s/* ." % tempdir)
with settings(warn_only=True):
result = local("git diff --exit-code")
if result.return_code != 0:
local("git add -A .")
local("git commit -m 'Auto-update of docs: %s'" % last_commit)
local("git push")
else:
print "No changes to the docs."
local("git checkout %s" % current_branch)