Index: buildbot/buildbot_selector.py |
=================================================================== |
--- buildbot/buildbot_selector.py (revision 6583) |
+++ buildbot/buildbot_selector.py (working copy) |
@@ -243,6 +243,15 @@ |
env = os.environ.copy() |
env['ARCHIVE_IRT'] = builder in IRT_ARCHIVE_BUILDERS and '1' or '0' |
+ cmd_patch = python + ' ' + \ |
+ os.path.join('..', 'native_client', 'buildbot', 'patch.py') + ' ' + \ |
+ os.path.join('..', 'native_client', 'ppapi.patch') |
+ print cmd_patch |
+ subprocess.call( |
+ cmd_patch, |
+ env=env, |
+ cwd=os.path.join('..','ppapi'), |
+ shell=True) |
print "%s runs: %s\n" % (builder, cmd) |
retcode = subprocess.call(cmd, env=env, shell=True) |
sys.exit(retcode) |