Github user dmitriy-barkalov commented on a diff in the pull request:

    https://github.com/apache/cordova-medic/pull/37#discussion_r26201989
  
    --- Diff: buildbot-conf/cordova.conf ---
    @@ -0,0 +1,336 @@
    +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      = '.'
    +TEST_APP_NAME     = 'mobilespec'
    +
    +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']
    +    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):
    --- End diff --
    
    Seems it is not using anywhere 


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to