Buildbot每晚构建都无法检查分支

时间:2014-10-06 10:09:00

标签: gerrit buildbot

我正在使用buildbot来构建和测试铬源。我们有一个为铬源维护的本地仓库。我们使用Gerrit来维护存储库。签入某些更改后,buildbot会成功触发。

我遇到Nightly版本的问题。我希望buildbot获得源代码和构建,即使没有变化。但是,它失败并出现以下错误:

===Running git checkout --force origin/ ===
error: pathspec 'origin/' did not match any file(s) know to git.
===Failed in 0.0. mins===

有人可以告诉我如何让这个工作吗?

我的master.cfg如下:

    from master import master_utils
    from master import slaves_list
    from buildbot.schedulers import timed
    from buildbot.changes import filter 

    import config
    import master_site_config

    ActiveMaster = master_site_config.Chromium
    c = BuildmasterConfig = {}

    c['change_source'] = []
    c['schedulers'] = []
    c['status'] = [] pendingRequests = {}
    c['builders'] = []

    import master_source_cfg
    import master_full_cfg

    master_source_cfg.Update(config, ActiveMaster, c)
    master_full_cfg.Update(config, ActiveMaster, c)

    c['logCompressionLimit'] = False
    c['projectName'] = ActiveMaster.project_name
    c['projectURL'] = config.Master.project_url
    c['buildbotURL'] = 'build.chromium.org/p/chromium/';
    slaves = slaves_list.SlavesList('slaves.cfg', 'Chromium')

    # Trying to find the location of adding factories to the builder
    from twisted.python import log
    for builder in c['builders']:
        log.msg('My BUILDER',builder)
        log.msg(dir(builder['factory']))
        builder['slavenames'] = slaves.GetSlavesName(builder=builder['name'])

    c['slaves'] = master_utils.AutoSetupSlaves(
        c['builders'],
        config.Master.GetBotPassword(),
        missing_recipients=['buildbot@chromium-build-health.appspotmail.com'])
    master_utils.VerifySetup(c, slaves)

    master_utils.AutoSetupMaster(c, ActiveMaster, enable_http_status_push=ActiveMaster.is_production_host)
    c['buildHorizon'] = 3000
    c['logHorizon'] = 3000
    c['eventHorizon'] = 200

我错过了添加master.cfg的最后一部分,其中包含nightly的配置:

    c['schedulers'].append(
        timed.Nightly(name='nightly',
            branch='src',
            change_filter=filter.ChangeFilter(project_re='pj/Sample/chromium.*', branch=['buildbot-testing1']),
            builderNames=['Linux x64'],
            hour=8,
            minute=15))

使用上述配置,每晚都会在正确的时间触发。 但是,它并没有检查出' buildbot-testing1'根据需要分支。 相反,它退出时出现以下错误:

===Running git checkout --force origin/ ===
error: pathspec 'origin/' did not match any file(s) know to git.
===Failed in 0.0. mins===

0 个答案:

没有答案
相关问题