コード例 #1
0
def install(ctx):
	with log_task("Installing...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "install" in builder.tags:
					builder.execute()
コード例 #2
0
def tail(ctx):
	with log_task("Tailing python.log...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "tail" in builder.tags:
					builder.execute()
コード例 #3
0
def clean(ctx):
	with log_task("Cleaning...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in reversed(builders):
				if "clean" in builder.tags:
					builder.clean()
コード例 #4
0
def futes(ctx):
	with log_task("Running functional tests...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "futes" in builder.tags:
					builder.execute()
コード例 #5
0
ファイル: make.py プロジェクト: chipsi007/wot-teamspeak-mod
def preview_settingsui(ctx):
	with log_task("Opening url(s) to browser...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "preview-settingsui" in builder.tags:
					builder.execute()
コード例 #6
0
ファイル: make.py プロジェクト: chipsi007/wot-teamspeak-mod
def tail(ctx):
	with log_task("Tailing log files:", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "tail" in builder.tags:
					builder.execute()
コード例 #7
0
ファイル: make.py プロジェクト: chipsi007/wot-teamspeak-mod
def install(ctx):
	with log_task("Installing...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "install" in builder.tags:
					builder.execute()
コード例 #8
0
ファイル: make.py プロジェクト: chipsi007/wot-teamspeak-mod
def futes(ctx):
	with log_task("Running functional tests...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in builders:
				if "futes" in builder.tags:
					builder.execute()
コード例 #9
0
ファイル: make.py プロジェクト: chipsi007/wot-teamspeak-mod
def clean(ctx):
	with log_task("Cleaning...", ctx.verbose) as logger:
		with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders:
			for builder in reversed(builders):
				if "clean" in builder.tags:
					builder.clean()