commit cc8347dfa92a5e169d79c3e5418db8e3b69f93b9
parent 2e4fccbbb32d9b133e7dd40dd336c4ce49afd683
Author: Daniel Moch <daniel@danielmoch.com>
Date: Mon, 11 Feb 2019 19:17:22 -0500
Update build factories to clobber build folder
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/server/master.cfg b/server/master.cfg
@@ -76,14 +76,14 @@ c['schedulers'].append(schedulers.ForceScheduler(
# only take place on one worker.
nncli_factory = util.BuildFactory()
-nncli_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/nncli.git', mode='incremental'))
+nncli_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/nncli.git', mode='full', method='clobber', shallow=True))
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.ShellCommand(name="Sphinx", command=["make","html"], workdir="build/docs"))
nncli_factory.addStep(steps.ShellCommand(name="Deploy Docs", command=['rsync', '-aPe', 'ssh', '--del', 'html', 'danielmoch.com:/srv/http/www/nncli'], workdir='build/docs/build'))
hookmeup_factory = util.BuildFactory()
-hookmeup_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/hookmeup.git', mode='incremental'))
+hookmeup_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/hookmeup.git', mode='full', method='clobber', shallow=True))
hookmeup_factory.addStep(steps.Configure(command=["pipenv", "--bare", "install", "--dev", "--skip-lock"], env={"PYTHONPATH": "."}))
hookmeup_factory.addStep(steps.Test(command=["make", "test-all"], env={"PYTHONPATH": "."}))
@@ -106,8 +106,8 @@ c['builders'].append(
mn = reporters.MailNotifier(fromaddr="buildbot@danielmoch.com",
sendToInterestedUsers=True,
extraRecipients=["webmaster@danielmoch.com"],
- useTls=True, relayhost="smtp.sendgrid.net",
- smtpPort=587, smtpUser="apikey",
+ useTls=True, relayhost="smtp.danielmoch.com",
+ smtpPort=587, smtpUser="djmoch",
smtpPassword=util.Secret('fb633d11-12bd-4060-b7b6-7f21dec90ae7'))
c['services'] = [mn]