| Index: native_client_sdk/src/build_tools/buildbot_run.py
|
| diff --git a/native_client_sdk/src/build_tools/buildbot_run.py b/native_client_sdk/src/build_tools/buildbot_run.py
|
| index f6e4ee79d2137fb8739e88fd713ca010693195fe..5971a58c1647c36a2a851a979d4b0ba0bee38fc5 100755
|
| --- a/native_client_sdk/src/build_tools/buildbot_run.py
|
| +++ b/native_client_sdk/src/build_tools/buildbot_run.py
|
| @@ -63,6 +63,8 @@
|
| new_script_dir = SCRIPT_DIR
|
|
|
| args = [sys.executable, 'build_sdk.py']
|
| + if 'bionic' in os.getenv('BUILDBOT_BUILDERNAME', ''):
|
| + args.append('--bionic')
|
|
|
| try:
|
| Run(args, cwd=new_script_dir)
|
| @@ -85,6 +87,11 @@
|
| ])
|
|
|
| cmd.extend([sys.executable, 'test_sdk.py'])
|
| +
|
| + # TODO(noelallen): crbug 386332
|
| + # For Bionic SDK, only build do a build test until we have hardware.
|
| + if 'bionic' in os.getenv('BUILDBOT_BUILDERNAME', ''):
|
| + cmd.extend(['build_examples', 'copy_tests', 'build_tests'])
|
| Run(cmd, cwd=SCRIPT_DIR)
|
|
|
|
|
|
|