[PATCH] D22552: [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 Jul 19 16:54:22 PDT 2016
jesikmin created this revision.
jesikmin added reviewers: chying, gkistanova.
jesikmin added a subscriber: llvm-commits.
This is an additional step to the lldb buildbots for automating NDKs to
the latest version.
https://reviews.llvm.org/D22552
Files:
.arcconfig
zorg/buildbot/builders/LLDBBuilder.py
Index: zorg/buildbot/builders/LLDBBuilder.py
===================================================================
--- zorg/buildbot/builders/LLDBBuilder.py
+++ zorg/buildbot/builders/LLDBBuilder.py
@@ -948,6 +948,13 @@
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])
Index: .arcconfig
===================================================================
--- .arcconfig
+++ .arcconfig
@@ -1,4 +1,4 @@
{
"project_id" : "zorg",
- "conduit_uri" : "http://reviews.llvm.org/"
+ "conduit_uri" : "https://reviews.llvm.org/"
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22552.64610.patch
Type: text/x-patch
Size: 1028 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160719/60bb91b7/attachment.bin>
More information about the llvm-commits
mailing list