commit 7d6983b182f74dd24f362cf9ac12b93519d548d4
parent 79bc38364c5a0c0503af92a4a7d9a2d4c811ed8a
Author: Daniel Moch <daniel@danielmoch.com>
Date: Sat, 8 Dec 2018 21:46:10 -0500
Configure nncli for Sphinx
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/server/master.cfg b/server/master.cfg
@@ -77,8 +77,8 @@ nncli_factory = util.BuildFactory()
nncli_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/nncli.git', mode='incremental'))
nncli_factory.addStep(steps.Configure(command=["make", "test-install"], env={"PYTHONPATH": "."}))
nncli_factory.addStep(steps.Test(command=["make", "test-all"], env={"PYTHONPATH": "."}))
-nncli_factory.addStep(steps.Sphinx(sphinx_builddir="docs/build", sphinx_sourcedir="docs", sphinx="make html")
-nncli_factory.addStep(steps.CopyDirectory(src="docs/build", dest="/srv/http/www/nncli")
+nncli_factory.addStep(steps.Sphinx(sphinx_builddir="docs/build/html", sphinx_sourcedir="docs/source"))
+nncli_factory.addStep(steps.ShellCommand(name="Deploy Docs", command=['cp', '-R', 'html', '/srv/http/www/nncli'], workdir='docs/build'))
hookmeup_factory = util.BuildFactory()
hookmeup_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/hookmeup.git', mode='incremental'))