当前位置: 首页>>代码示例>>Python>>正文


Python Repository.repository_head方法代码示例

本文整理汇总了Python中repository.Repository.repository_head方法的典型用法代码示例。如果您正苦于以下问题:Python Repository.repository_head方法的具体用法?Python Repository.repository_head怎么用?Python Repository.repository_head使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在repository.Repository的用法示例。


在下文中一共展示了Repository.repository_head方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Repository

# 需要导入模块: from repository import Repository [as 别名]
# 或者: from repository.Repository import repository_head [as 别名]
    # from here on, only one repository is possible
    # create a repository instance
    repository = Repository(config, database, config.get('repository-url'), config.get('cache-dir'))
    repository.handle_update(True, log_data)
    # from here on a local copy of the repository is available

    # create a list of all jobs
    jobs = []
    for branch in config.get('build-branch'):
        job = {}
        job['added_ts'] = int(time.time())
        job['repository'] = config.get('repository-url')
        job['repository_type'] = repository.repository_type
        job['branch'] = branch
        if (config.get('build-revision') == 'HEAD'):
            job['revision'] = repository.repository_head(repository.full_path, branch)
            job['is_head'] = True
        else:
            job['revision'] = config.get('build-revision')
            job['is_head'] = False

        job['extra-configure'] = config.get('extra-configure')
        job['extra-make'] = config.get('extra-make')
        job['extra-install'] = config.get('extra-install')
        job['extra-tests'] = config.get('extra-tests')
        job['run-extra-targets'] = config.get('test-extra-targets')
        job['test-locales'] = config.get('test-locales')

        # create one job with Orca=off in any case, just to ensure that we test this case
        job['orca'] = False
        jobs.append(job)
开发者ID:andreasscherbaum,项目名称:buildfarm-client,代码行数:33,代码来源:buildclient.py


注:本文中的repository.Repository.repository_head方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。