aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_llvm.py
diff options
context:
space:
mode:
authorYunlian Jiang <yunlian@google.com>2017-11-27 10:59:30 -0800
committerchrome-bot <chrome-bot@chromium.org>2017-11-27 13:10:46 -0800
commitbddbcd3a08c1e15c01e391595964eb6aa817c808 (patch)
tree220a9dde1051736fc858129a0fd28931417ea04d /buildbot_test_llvm.py
parent2e0ad05834bfc3ce47e97af06f36d0e6a1fb7957 (diff)
downloadtoolchain-utils-bddbcd3a08c1e15c01e391595964eb6aa817c808.tar.gz
Add '-tryjob' suffix to build name.
We got some errors like These configs are not tryjob safe: link-llvm-next-toolchain Consider these configs instead: link-llvm-next-toolchain-tryjob when lauching tryjobs to get the image. This CL fixes that. BUG=none TEST=The build name is changed. Change-Id: I56ef66dfb1071367b78ee8a7335552cdae5a5b44 Reviewed-on: https://chromium-review.googlesource.com/791391 Commit-Ready: Yunlian Jiang <yunlian@chromium.org> Tested-by: Yunlian Jiang <yunlian@chromium.org> Reviewed-by: Caroline Tice <cmtice@chromium.org>
Diffstat (limited to 'buildbot_test_llvm.py')
-rwxr-xr-xbuildbot_test_llvm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildbot_test_llvm.py b/buildbot_test_llvm.py
index e1b515df..6c39c3a6 100755
--- a/buildbot_test_llvm.py
+++ b/buildbot_test_llvm.py
@@ -86,7 +86,7 @@ class ToolchainVerifier(object):
self._ce = command_executer.GetCommandExecuter()
self._l = logger.GetLogger()
self._compiler = compiler
- self._build = '%s-%s-toolchain' % (board, compiler)
+ self._build = '%s-%s-toolchain-tryjob' % (board, compiler)
self._patches = patches.split(',') if patches else []
self._patches_string = '_'.join(str(p) for p in self._patches)