summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-11-27 11:32:39 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-11-27 11:32:39 +0100
commit0ed09aa4df8135c1cb064d028cabfc044eaf20d9 (patch)
treea584b41e763c8dbac80d24ee2d8d34e614883fe4
parent5cf8fba0d8e7c7019ccfb7e6a329a45028887458 (diff)
downloaddeployment-0ed09aa4df8135c1cb064d028cabfc044eaf20d9.tar.gz
deployment-0ed09aa4df8135c1cb064d028cabfc044eaf20d9.tar.bz2
deployment-0ed09aa4df8135c1cb064d028cabfc044eaf20d9.zip
aggregating all linters under one builder
-rw-r--r--buildbot/master.cfg20
1 files 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(