gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated: Remove dead code


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: Remove dead code
Date: Thu, 16 Feb 2017 16:21:32 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 7c3ed41  Remove dead code
7c3ed41 is described below

commit 7c3ed411931a397e573874e537d837827a84eb44
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Feb 16 16:21:36 2017 +0100

    Remove dead code
---
 buildbot/master_buggy.cfg | 149 ----------------------------------------------
 1 file changed, 149 deletions(-)

diff --git a/buildbot/master_buggy.cfg b/buildbot/master_buggy.cfg
deleted file mode 100644
index a037951..0000000
--- a/buildbot/master_buggy.cfg
+++ /dev/null
@@ -1,149 +0,0 @@
-# -*- python -*-
-# ex: set syntax=python:
-
-c = BuildmasterConfig = {}
-local = "${HOME}/local"
-
-####### LOGS SIZE
-
-c['changeHorizon'] = 20
-c['buildHorizon'] = 10
-c['logHorizon'] = 4
-c['buildCacheSize'] = 2 
-
-####### BUILDSLAVES
-
-from buildbot.worker import Worker
-c['workers'] = [Worker("lcovSlave", "taler"),
-                Worker("containersSlave", "taler")]
-
-c['protocols'] = {'pb': {'port': 9989}}
-
-####### CHANGESOURCES
-# They are just "pointers" to monitored codebases.
-
-from buildbot.changes.gitpoller import GitPoller
-c['change_source'] = []
-c['change_source'].append(GitPoller(
-        'git://git.taler.net/exchange.git',
-        workdir='gitpoller-workdir', branches=True,
-        pollinterval=300))
-c['change_source'].append(GitPoller(
-        'git://git.taler.net/merchant.git',
-        workdir='gitpoller-workdir', branches=True,
-        pollinterval=300))
-c['change_source'].append(GitPoller(
-        'git://git.taler.net/bank.git',
-        workdir='gitpoller-workdir', branches=True,
-        pollinterval=300))
-c['change_source'].append(GitPoller(
-        'git://git.taler.net/merchant-frontends.git',
-        workdir='gitpoller-workdir', branches=True,
-        pollinterval=300))
-
-####### SCHEDULERS
-# They take action: actually trigger the build.
-
-from buildbot.schedulers.basic import SingleBranchScheduler
-from buildbot.schedulers.forcesched import ForceScheduler
-from buildbot.schedulers.timed import *
-from buildbot.changes import filter
-
-gitMaster = SingleBranchScheduler(
-    name="global-master",
-    reason="Commit pushed for one of the sub-projects",
-    change_filter=filter.ChangeFilter(branch='master'),
-    treeStableTimer=300,
-    builderNames=["lcov-build", "auto-click"])
-
-force = ForceScheduler(name="force-build",
-                       builderNames=["lcov-build", "auto-click"])
-
-c['schedulers'] = []
-c['schedulers'].append(gitMaster)
-c['schedulers'].append(force)
-
-####### BUILDERS
-
-from buildbot.process.factory import BuildFactory
-from buildbot.steps.source.git import Git
-from buildbot.steps.shell import ShellCommand
-from buildbot.steps.shell import Configure
-from buildbot.steps.shell import Compile
-from buildbot.steps.shell import Test
-import os
-
-lcov = BuildFactory()
-lcov.addStep(Git(repourl='git://git.taler.net/deployment.git',
-                 mode='full',
-                 method='fresh',
-                 alwaysUseLatest=True,
-                 haltOnFailure=True,
-                 branch='master'))
-lcov.addStep(ShellCommand(name="invalidation",
-                          description="Invalidating timestamps",
-                          descriptionDone="timestamps invalidated",
-                          command=["./invalidate.sh"], 
-                          workdir="build/taler-build"))
-lcov.addStep(ShellCommand(name="builder",
-                          description="Compiling..",
-                          descriptionDone="lcov files generated",
-                          command=["make", "lcov"], 
-                          workdir="build/taler-build",
-                          env={'PATH': "${HOME}/local/bin:${PATH}",
-                          'TALER_CHECKDB' : 
"postgresql:///talercheck?host=/home/${USER}/sockets"}))
-
-autoClick = BuildFactory()
-autoClick.addStep(ShellCommand(name="clicker",
-                               description="Performing demo",
-                               descriptionDone="Demo finished",
-                               command=["launch_selenium_test"],
-                               env={'PATH': "${HOME}/local/bin:${PATH}"}))
-
-from buildbot.config import BuilderConfig
-
-c['builders'] = []
-c['builders'].append(
-    BuilderConfig(name="lcov-build",
-                  workernames=["lcovSlave"],
-                  factory=lcov))
-c['builders'].append(
-    BuilderConfig(name="auto-click",
-                  workernames=["containersSlave"],
-                  factory=autoClick))
-
-
-####### STATUS TARGETS
-
-c['status'] = []
-from buildbot.plugins import util
-
-authz = util.Authz(
-    allowRules=[
-        util.StopBuildEndpointMatcher(role="admins"),
-        util.ForceBuildEndpointMatcher(role="admins"),
-        util.RebuildBuildEndpointMatcher(role="admins")
-    ],
-    roleMatchers=[
-        util.RolesFromEmails(admins=["address@hidden"])
-    ]
-)
-
-auth=util.UserPasswordAuth({'address@hidden': 'mstantaler'})
-
-c['www'] = dict(port=8010,
-                plugins=dict(waterfall_view={}, console_view={}),
-                auth=auth,
-                authz=authz)
-
-
-####### PROJECT IDENTITY
-c['title'] = "Taler"
-c['titleURL'] = "https://taler.net/";
-
-c['buildbotURL'] = "https://buildbot.taler.net/";
-
-####### DB URL
-c['db'] = {
-    'db_url' : "sqlite:///state.sqlite",
-}

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]