[zorg] r280160 - [zorg] Add a step to run NDK update step to the scripted LLDB builder
Jesik Min via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 30 14:27:04 PDT 2016
Author: jesikmin
Date: Tue Aug 30 16:27:04 2016
New Revision: 280160
URL: http://llvm.org/viewvc/llvm-project?rev=280160&view=rev
Log:
[zorg] Add a step to run NDK update step to the scripted LLDB builder
Summary:
This is an additional step to the lldb buildbots for automating NDKs to
the latest version.
Reviewers: chying, gkistanova
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D22552
Modified:
zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py?rev=280160&r1=280159&r2=280160&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py Tue Aug 30 16:27:04 2016
@@ -948,6 +948,13 @@ def getLLDBScriptCommandsFactory(
property="got_revision",
workdir="scripts"))
+ # Update NDK and create toolchains
+ getShellCommandStep(f, name='ndk download and toolchains update',
+ command=[pathSep + 'updateToolChain' + scriptExt],
+ description=["Update NDK toolchain"],
+ flunkOnFailure=False,
+ warnOnFailure=False)
+
# Configure
getShellCommandStep(f, name='cmake local',
command=[pathSep + 'cmake' + scriptExt])
More information about the llvm-commits
mailing list