Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2699)

Unified Diff: buildbot/buildbot_selector.py

Issue 2624913002: Set bot names back to 'precise' for trybots (Closed)
Patch Set: Also fix non-pnacl toolchain bots Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/buildbot_selector.py
diff --git a/buildbot/buildbot_selector.py b/buildbot/buildbot_selector.py
index c9c3e3bf8aeaae069e129681902f11f1c7829f18..3d7cb422151c15b50c0832ff1f3924a1416bb61c 100755
--- a/buildbot/buildbot_selector.py
+++ b/buildbot/buildbot_selector.py
@@ -180,7 +180,7 @@ BOT_ASSIGNMENT = {
bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu mips32',
# Toolchain trybots.
- 'nacl-toolchain-linux64-newlib-arm': # TODO(bradnelson): rename
+ 'nacl-toolchain-precise64-newlib-arm': # TODO(bradnelson): rename
python +
' buildbot/buildbot_toolchain_build.py'
' --trybot'
@@ -196,7 +196,7 @@ BOT_ASSIGNMENT = {
' buildbot/buildbot_toolchain_build.py'
' --trybot'
' toolchain_build',
- 'nacl-toolchain-linux64-glibc':
+ 'nacl-toolchain-precise64-glibc':
bash + ' buildbot/buildbot_linux-glibc-makefile.sh',
'nacl-toolchain-mac-glibc':
bash + ' buildbot/buildbot_mac-glibc-makefile.sh',
@@ -278,7 +278,8 @@ for platform in [
mode + ' ' + real_arch + ' ' + libc + arch_flags)
# Trybots
for arch_sep in ['', '-', '_']:
- name = 'nacl-' + platform + arch_sep + arch + '_' + libc + '_' + mode
+ p = platform.replace('linux', 'precise')
+ name = 'nacl-' + p + arch_sep + arch + '_' + libc + '_' + mode
assert name not in BOT_ASSIGNMENT, name
BOT_ASSIGNMENT[name] = (
python + ' buildbot/buildbot_standard.py ' +
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698