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


Python Module.refresh_build方法代码示例

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


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

示例1: do_build

# 需要导入模块: from module import Module [as 别名]
# 或者: from module.Module import refresh_build [as 别名]
def do_build(module_configs, log_dir, options):
    result = BuildResult()
    nb_modules = len(module_configs)
    for idx, config in enumerate(module_configs):
        name = config.flat_get("name")
        assert name
        flog.h1("%d/%d %s" % (idx + 1, nb_modules, name))
        module = Module(config)
        log_file_name = os.path.join(log_dir, name.replace("/", "_") + ".log")
        log_file = open(log_file_name, "w")
        runner = Runner(log_file, options.verbose)

        # update/checkout
        if options.switch_branch and module.has_checkout():
            module.switch_branch(runner)

        if not options.no_src:
            try:
                if module.has_checkout():
                    module.update(runner)
                else:
                    module.checkout(runner)
            except BatchBuildError, exc:
                flog.error("%s failed to update/checkout: %s", name, exc)
                flog.p("See %s", log_file_name)
                result.vcs_fails.append([name, str(exc), log_file_name])
                nanotify.notify(name, "Failed to update/checkout", icon="dialog-warning")
                if options.fatal:
                    return result

        # Build
        try:
            if not options.src_only:
                if options.refresh_build:
                    module.refresh_build()
                module.configure(runner)
                module.build(runner)
                module.install(runner)
                nanotify.notify(name, "Build successfully", icon="dialog-ok")
        except BatchBuildError, exc:
            flog.error("%s failed to build: %s", name, exc)
            flog.p("See %s", log_file_name)
            result.build_fails.append([name, str(exc), log_file_name])
            nanotify.notify(name, "Failed to build", icon="dialog-error")
            if options.fatal:
                return result
开发者ID:agateau,项目名称:devo-batchbuild,代码行数:48,代码来源:devo-batchbuild.py


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