aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_llvm.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2017-08-11 13:02:29 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-08-15 08:43:47 -0700
commit09cacd0d5fc2dc60a3c21796703a72dd61e2e5ed (patch)
treea5e21bbd8ba45fa7d75a3a3ff22f310032306d8a /buildbot_test_llvm.py
parent0b9bcfe22761f29eb6f4975e3ac1e370a4b4ff84 (diff)
downloadtoolchain-utils-09cacd0d5fc2dc60a3c21796703a72dd61e2e5ed.tar.gz
Update rotating builders list to match chromeos_config.
Add 3 new boards and remove 2 redundant boards from the rotating builders list, to match the complete list for the rotating builders in chromeos_config. This should (currently) represent a complete list of platforms to test before toolchain upgrades. BUG=chromium:754803 CQ-DEPEND=CL:611486 TEST=None Change-Id: Idf8da7e1660e4ad3716fd813e46f7b3c62d0bf7a Reviewed-on: https://chromium-review.googlesource.com/612215 Commit-Ready: Caroline Tice <cmtice@chromium.org> Tested-by: Caroline Tice <cmtice@chromium.org> Reviewed-by: Rahul Chaudhry <rahulchaudhry@chromium.org>
Diffstat (limited to 'buildbot_test_llvm.py')
-rwxr-xr-xbuildbot_test_llvm.py49
1 files changed, 36 insertions, 13 deletions
diff --git a/buildbot_test_llvm.py b/buildbot_test_llvm.py
index 5d686891..8e604782 100755
--- a/buildbot_test_llvm.py
+++ b/buildbot_test_llvm.py
@@ -30,21 +30,44 @@ MAIL_PROGRAM = '~/var/bin/mail-sheriff'
VALIDATION_RESULT_DIR = os.path.join(CROSTC_ROOT, 'validation_result')
START_DATE = datetime.date(2016, 1, 1)
TEST_PER_DAY = 3
+
+# Information about Rotating Boards
+# Board Arch Reference Platform Kernel
+# Board Version
+# -------- ------ --------- ---------- -------
+# caroline x86_64 glados skylake-y 3.18
+# daisy armv7 daisy exynos-5250 3.8.11
+# eve x86_64 poppy kabylake-y 4.4.79
+# gale armv7 3.18
+# kevin armv7 gru rockchip-3399 4.4.79
+# lakitu x86_64 4.4.79
+# link x86_64 ivybridge ivybridge 3.8.11
+# lumpy x86_64 -- sandybridge 3.8.11
+# nyan_big armv7 nyan tegra 3.10.18
+# peach_pit armv7 peach exynos-5420 3.8.11
+# peppy x86_64 slippy haswell 3.8.11
+# reef x86_64 reef apollo lake 4.4.79
+# sentry x86_64 kunimitsu skylake-u 3.18
+# squawks x86_64 rambi baytrail 4.4.79
+# terra x86_64 strago braswell 3.18
+# whirlwind armv7 3.14
+
TEST_BOARD = [
- 'squawks', # x86_64, rambi (baytrail)
- 'terra', # x86_64, strago (braswell)
- 'lulu', # x86_64, auron (broadwell)
- 'peach_pit', # arm, peach (exynos-5420)
- 'peppy', # x86_64, slippy (haswell celeron)
- 'link', # x86_64, ivybridge (ivybridge)
- 'nyan_big', # arm, nyan (tegra)
- 'sentry', # x86_64, kunimitsu (skylake-u)
- 'chell', # x86_64, glados (skylake-y)
- 'daisy', # arm, daisy (exynos)
- 'caroline', # x86_64, glados (skylake-y)
- 'kevin', # arm, gru (Rockchip)
- 'reef', # x86_64, reef (Apollo Lake)
+ 'caroline',
+ 'daisy',
+ 'eve',
+ 'gale',
+ 'kevin',
'lakitu',
+ 'link',
+ 'lumpy',
+ 'nyan_big',
+ 'peach_pit',
+ 'peppy',
+ 'reef',
+ 'sentry',
+ 'squawks',
+ 'terra',
'whirlwind',
]