taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 0ed09aa4df8135c1cb064d028cabfc044eaf20d9
parent 5cf8fba0d8e7c7019ccfb7e6a329a45028887458
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Mon, 27 Nov 2017 11:32:39 +0100

aggregating all linters under one builder

Diffstat:
Mbuildbot/master.cfg | 20+++++++++++---------
1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -99,7 +99,7 @@ LINT_SCHEDULER = schedulers.SingleBranchScheduler( name="lint-scheduler", change_filter=util.ChangeFilter( branch="master", - project_re="bank"), + project_re="bank|donations|survey|blog"), treeStableTimer=None, builderNames=["lint-builder"]) @@ -161,15 +161,17 @@ DEBUG_FACTORY.addStep(ShellCommand( LINT_FACTORY = util.BuildFactory() LINT_FACTORY.addStep(git_step( - "git://git.taler.net/bank.git")) + "git://git.taler.net/deployment.git")) +LINT_FACTORY.addStep(ShellCommand( + name="invalidation", + description="checking changes", + descriptionDone="changes checked", + command=["./invalidate.sh"])) LINT_FACTORY.addStep(ShellCommand( - name="code linter", - description="running static analysis", - descriptionDone="static analysis done", - command=["pylint", - "--load-plugins", - "pylint_django", - "talerbank/"])) + name="linting", + description="Linting..", + descriptionDone="Linted", + command=["make", "-f", "MakefileLint"])) LCOV_FACTORY = util.BuildFactory() LCOV_FACTORY.addStep(git_step(