Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 79C4017633 for ; Mon, 9 Mar 2015 18:23:06 +0000 (UTC) Received: (qmail 96727 invoked by uid 500); 9 Mar 2015 18:22:44 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 96684 invoked by uid 500); 9 Mar 2015 18:22:44 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 96673 invoked by uid 99); 9 Mar 2015 18:22:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Mar 2015 18:22:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7E281E180E; Mon, 9 Mar 2015 18:22:43 +0000 (UTC) From: dmitriy-barkalov To: dev@cordova.apache.org Reply-To: dev@cordova.apache.org References: In-Reply-To: Subject: [GitHub] cordova-medic pull request: Medic Refactor Content-Type: text/plain Message-Id: <20150309182243.7E281E180E@git1-us-west.apache.org> Date: Mon, 9 Mar 2015 18:22:43 +0000 (UTC) Github user dmitriy-barkalov commented on a diff in the pull request: https://github.com/apache/cordova-medic/pull/37#discussion_r26061070 --- Diff: buildbot-conf/cordova.conf --- @@ -0,0 +1,326 @@ +import os +import re +import json + +from buildbot.schedulers.basic import SingleBranchScheduler, AnyBranchScheduler +from buildbot.schedulers.forcesched import ForceScheduler +from buildbot.schedulers.timed import Nightly + +from buildbot.changes.gitpoller import GitPoller +from buildbot.changes import filter as change_filter + +from buildbot.process.factory import BuildFactory +from buildbot.config import BuilderConfig + +from buildbot.process.properties import renderer +from buildbot.process.properties import Property as P +from buildbot.process.properties import Interpolate as I + +from buildbot.steps.source.git import Git +from buildbot.steps.transfer import FileDownload +from buildbot.steps.shell import ShellCommand +from buildbot.steps.master import SetProperty + +from buildbot.status.results import SUCCESS + +# config +MEDIC_CONFIG_FILE = os.path.join(FP, 'cordova-config.json') +PROJECTS_CONFIG_FILE = os.path.join(FP, 'cordova-repos.json') + +def parse_config_file(file_name): + with open(file_name, 'r') as config_file: + return json.load(config_file) + +medic_config = parse_config_file(MEDIC_CONFIG_FILE) +projects_config = parse_config_file(PROJECTS_CONFIG_FILE) + +# constants +DEFAULT_REPO_NAME = 'src' +BASE_WORKDIR = '.' + +OSX = 'osx' +LINUX = 'linux' +WINDOWS = 'windows' + +# patterns +CORDOVA_REPO_PATTERN = r'^.*(cordova-[^\.]+)\.git$' + +# interpretation of every byte-sized return code as success +ALWAYS_SUCCESS = {i: SUCCESS for i in range(0, 256)} + +####### UTILITIES + +# helper functions +def cordova_builders(): + return [b.name for b in c['builders'] if b.name.startswith('cordova_')] + +def repo_name_from_url(url): + match = re.match(CORDOVA_REPO_PATTERN, url) + if match is not None: + return match.group(1) + return DEFAULT_REPO_NAME + +def repo_codebase_from_name(name): + repo = projects_config[name] + codebase_name = repo['codebase'] + return repo['codebases'][codebase_name] + +def repo_url_from_name(name): + return repo_codebase_from_name(name)['repo'] + +def repo_branch_from_name(name): + return repo_codebase_from_name(name)['branch'] + +def slugify(string): + return string.replace(' ', '-') + +def running_tasks_on_platform(platform_name, os_name): + """ + Return the names of tasks possibly started by + builds on the given platform and OS. + """ + if platform_name == 'windows': + return ['WWAHost.exe'] + elif platform_name == 'wp8': + return ['Xde.exe'] + elif platform_name == 'ios': + return ['iOS Simulator'] + elif platform_name == 'android': + if os_name == WINDOWS: + return ['emulator-arm.exe', 'adb.exe'] + elif os_name == OSX: + return ['emulator64-x86'] + return [] + +def can_find_running_tasks(step): + """ + Return true if an OS and a platform is specified. Those are the + criteria for finding a task because running_tasks_on_platform uses + those properties to determine which tasks could be running. + """ + return ( + (step.build.getProperty('slaveos') is not None) and + (step.build.getProperty('platform') is not None) + ) + +# renderers +@renderer +def render_repo_name(props): + repo_url = props.getProperty('repository') + return repo_name_from_url(repo_url) + +@renderer +def render_task_kill_command(props): + + os_name = props.getProperty('slaveos') + platform_name = props.getProperty('platform') + running_tasks = running_tasks_on_platform(platform_name, os_name) + + if not running_tasks: + return ['echo', 'No tasks to kill known.'] + + if os_name == WINDOWS: + command = ['taskkill', '/F'] + for task in running_tasks: + command.append('/IM') + command.append(task) + + else: + command = ['killall'] + command.extend(running_tasks) + + return command + +@renderer +def render_run_args(props): + platform = props.getProperty('platform') + if platform == 'windows': + return '--win' + return '' + +# step wrappers +def DescribedStep(step_class, description, haltOnFailure=True, **kwargs): + return step_class(description=description, descriptionDone=description, name=slugify(description), haltOnFailure=haltOnFailure, **kwargs) + +def SH(workdir=BASE_WORKDIR, timeout=medic_config['app']['timeout'], **kwargs): + return DescribedStep(ShellCommand, workdir=workdir, timeout=timeout, **kwargs) + +def NPM(npm_command, command=list(), what='code', **kwargs): + return SH(command=['npm', npm_command] + command, description='npm ' + npm_command + 'ing ' + what, **kwargs) + +def NPMInstall(command=list(), **kwargs): + # NOTE: + # adding the --cache parameter so that we don't use the global + # npm cache, which is shared with other processes + return NPM('install', command=command + [I('--cache=%(prop:workdir)s/npm_cache')], **kwargs) + +def NPMTest(**kwargs): + return NPM('test', **kwargs) + +def BuildbotClone(repourl, what='code', workdir=None, **kwargs): + if workdir is None: + workdir = what + return DescribedStep(Git, 'cloning ' + what, repourl=repourl, workdir=workdir, mode='full', method='clobber', shallow=True, **kwargs) + +def CordovaClone(project_name, **kwargs): + branch = repo_branch_from_name(project_name) + repo_url = repo_url_from_name(project_name) + return BuildbotClone(repourl=repo_url, branch=branch, what=project_name, **kwargs) + +def MedicClone(project_name=None, **kwargs): + """ + Clone repositories using medic's checkout.js script. + """ + + command = ['node', 'cordova-medic/bin/checkout.js', '--config=cordova-medic/cordova-repos.json'] + + if project_name is not None: + command += ['--project=' + project_name] + description = 'cloning ' + project_name + else: + description = 'cloning all cordova projects' + + return SH(command=command, description=description) + +def RMRF(path, description=None, **kwargs): + + if description is None: + description = 'removing ' + path + + # this is better than 'rm -rf' because it removes excessively long paths on Windows + js_script = "var s = require('shelljs'); console.log('removing {path}'); s.rm('-rf', '{path}');".format(path=path) + + return SH(command=['node', '-e', js_script], description=description, **kwargs) + +def Set(name, value, **kwargs): + return DescribedStep(SetProperty, 'setting ' + name, property=name, value=value, **kwargs) + +def Download(mastersrc, slavedest): + return FileDownload(mastersrc=mastersrc, slavedest=slavedest, workdir=BASE_WORKDIR) + +####### SLAVES + +OSX_SLAVES = ['cordova-ios-slave'] +WINDOWS_SLAVES = ['cordova-windows-slave'] + +####### CHANGESOURCES + +# None, because Apache manages them, and we should not touch them. + +####### CHANGE FILTERS + +# None + +####### BUILDERS + +common_setup_steps = [ + + # set build properties + Set('repositoryname', render_repo_name), + + # kill running emulators + SH( + command = render_task_kill_command, + doStepIf = can_find_running_tasks, + description = 'killing running tasks', + haltOnFailure = False, + flunkOnWarnings = False, + warnOnWarnings = False, + decodeRC = ALWAYS_SUCCESS, + ), --- End diff -- I think killing all emulators and reinitializing them on each build is time consuming. Also it could lead to timeout build failures. I propose to remove this step. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org For additional commands, e-mail: dev-help@cordova.apache.org