From 0ed09aa4df8135c1cb064d028cabfc044eaf20d9 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Mon, 27 Nov 2017 11:32:39 +0100 Subject: aggregating all linters under one builder --- buildbot/master.cfg | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/buildbot/master.cfg b/buildbot/master.cfg index 2769fb8..fb96730 100644 --- 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( -- cgit v1.2.3