[zorg] r223256 - Switch to the BuildAndIntegration configuration by default to avoid trying to codesign.
Sean Callanan
scallanan at apple.com
Wed Dec 3 10:43:03 PST 2014
Author: spyffe
Date: Wed Dec 3 12:43:02 2014
New Revision: 223256
URL: http://llvm.org/viewvc/llvm-project?rev=223256&view=rev
Log:
Switch to the BuildAndIntegration configuration by default to avoid trying to codesign.
Thanks to Jim Ingham for the solution.
Modified:
zorg/trunk/zorg/jenkins/build.py
Modified: zorg/trunk/zorg/jenkins/build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/build.py?rev=223256&r1=223255&r2=223256&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Wed Dec 3 12:43:02 2014
@@ -174,7 +174,7 @@ def clang_builder(target):
def lldb_builder():
"""Do an Xcode build of lldb."""
- xcodebuild_cmd = ["xcodebuild", "-configuration", "DebugClang", "-scheme", "lldb-tool"]
+ xcodebuild_cmd = ["xcodebuild", "-configuration", "BuildAndIntegration", "-scheme", "lldb-tool"]
header("Make All")
run_cmd("lldb", xcodebuild_cmd)
More information about the llvm-commits
mailing list