Example #1
0
def setup_universal(context):
    env = context.env
    env.update(
        OHNET_ARTIFACTS=context.options.artifacts or 'http://www.openhome.org/releases/artifacts',
        OHOS_PUBLISH="[email protected]:/home/releases/www/artifacts/ohOs",
        BUILDDIR='buildhudson',
        WAFLOCK='.lock-wafbuildhudson')
    context.configure_args = get_dependency_args(ALL_DEPENDENCIES)
    version = context.options.publish_version or context.env.get("RELEASE_VERSION", "UNKNOWN")
    context.configure_args += ["--ohos-version", version]
def setup_universal(context):
    env = context.env
    env.update(
        OH_PUBLISHDIR="[email protected]:/home/artifacts/public_html/artifacts",
        OH_PROJECT="ohTopologyC",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR='buildhudson',
        WAFLOCK='.lock-wafbuildhudson',
        OH_VERSION=context.options.publish_version or context.env.get('RELEASE_VERSION', 'UNKNOWN'))
    context.configure_args = get_dependency_args(env={'debugmode':env['OH_DEBUG']})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode.lower()]
Example #3
0
def setup_universal(context):
    env = context.env
    env.update(
        OH_PUBLISHDIR="[email protected]:~/www/artifacts",
        OH_PROJECT="ohNetmon",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR='buildhudson',
        WAFLOCK='.lock-wafbuildhudson',
        OH_VERSION=context.options.publish_version or context.env.get('RELEASE_VERSION', 'UNKNOWN'))
    context.configure_args = get_dependency_args(env={'debugmode':env['OH_DEBUG']})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode.lower()]
Example #4
0
def setup_universal(context):
    env = context.env
    env.update(
        OH_PUBLISHDIR="[email protected]:~/www/artifacts",
        OH_PROJECT="ohNetmon",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR="buildhudson",
        WAFLOCK=".lock-wafbuildhudson",
        OH_VERSION=context.options.publish_version or context.env.get("RELEASE_VERSION", "UNKNOWN"),
    )
    context.configure_args = get_dependency_args(env={"debugmode": env["OH_DEBUG"]})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode.lower()]
def setup_universal(context):
    env = context.env
    env.update(
        OHNET_ARTIFACTS=context.options.artifacts or "http://www.openhome.org/releases/artifacts",
        OH_PUBLISHDIR="[email protected]:/home/releases/www/artifacts",
        OH_PROJECT="ohTopology",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR="buildhudson",
        WAFLOCK=".lock-wafbuildhudson",
        OH_VERSION=context.options.publish_version or context.env.get("RELEASE_VERSION", "UNKNOWN"),
    )
    context.configure_args = get_dependency_args(ALL_DEPENDENCIES)
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode]
def setup_universal(context):
    env = context.env
    env.update(
        OH_PUBLISHDIR="[email protected]:~/www/artifacts",
        OH_PROJECT="ohMediaPlayer",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR='buildhudson',
        WAFLOCK='.lock-wafbuildhudson',
        OH_VERSION=context.options.publish_version or context.env.get('RELEASE_VERSION', 'UNKNOWN'))
    context.configure_args = get_dependency_args(env={'debugmode': env['OH_DEBUG']})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode.lower()]
    context.integration_test_media_server = context.env.get('MEDIA_SERVER', 'N/A')
    context.integration_test_dacp_server = context.env.get('DACP_SERVER', 'N/A')
    context.integration_test_log_dir = context.env.get('LOG_DIR', 'NightlyLogs')
Example #7
0
def setup_universal(context):
    env = context.env
    env.update(
        OH_PUBLISHDIR=
        "[email protected]:/home/artifacts/public_html/artifacts",
        OH_PROJECT="ohTopologyC",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR='buildhudson',
        WAFLOCK='.lock-wafbuildhudson',
        OH_VERSION=context.options.publish_version
        or context.env.get('RELEASE_VERSION', 'UNKNOWN'))
    context.configure_args = get_dependency_args(
        env={'debugmode': env['OH_DEBUG']})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode.lower()]
Example #8
0
def setup_universal(context):
    env = context.env
    env.update(
        OHNET_ARTIFACTS=context.options.artifacts or 'http://www.openhome.org/releases/artifacts',
        OH_PUBLISHDIR="[email protected]:/home/releases/www/artifacts",
        OH_PROJECT="ohTopology",
        OH_PROJECT_NET="ohTopology.net",
        OH_DEBUG=context.options.debugmode.title(),
        BUILDDIR='buildhudson',
        BUILDDIR_NET='build/packages',
        WAFLOCK='.lock-wafbuildhudson',
        OH_VERSION=context.options.publish_version or context.env.get('RELEASE_VERSION', 'UNKNOWN'))
    context.configure_args = get_dependency_args(env={'debugmode':context.options.debugmode})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode]
Example #9
0
def setup_universal(context):
    env = context.env
    env.update(
        OH_PUBLISHDIR="[email protected]:/home/artifacts/public_html/artifacts/",
        OH_PROJECT="ohMediaPlayer",
        OH_DEBUG=context.options.debugmode,
        BUILDDIR='buildhudson',
        WAFLOCK='.lock-wafbuildhudson',
        OH_VERSION=context.options.publish_version or context.env.get('RELEASE_VERSION', 'UNKNOWN'))
    context.configure_args = get_dependency_args(env={'debugmode':env['OH_DEBUG']})
    context.configure_args += ["--dest-platform", env["OH_PLATFORM"]]
    context.configure_args += ["--" + context.options.debugmode.lower()]
    context.integration_test_media_server = context.env.get('MEDIA_SERVER', 'N/A')
    context.integration_test_dacp_server = context.env.get('DACP_SERVER', 'N/A')
    context.integration_test_log_dir = context.env.get('LOG_DIR', 'NightlyLogs')