[zorg] r368314 - [LLDB] Add install target

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 8 10:17:58 PDT 2019


Author: jdevlieghere
Date: Thu Aug  8 10:17:58 2019
New Revision: 368314

URL: http://llvm.org/viewvc/llvm-project?rev=368314&view=rev
Log:
[LLDB] Add install target

Modified:
    zorg/trunk/zorg/jenkins/monorepo_build.py

Modified: zorg/trunk/zorg/jenkins/monorepo_build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/monorepo_build.py?rev=368314&r1=368313&r2=368314&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/monorepo_build.py (original)
+++ zorg/trunk/zorg/jenkins/monorepo_build.py Thu Aug  8 10:17:58 2019
@@ -469,6 +469,11 @@ def lldb_cmake_builder(target):
 	run_cmd(conf.lldbbuilddir(), [NINJA, '-v'])
 	footer()
 
+    if target == 'all' or target == 'install':
+	header("Install")
+	run_cmd(conf.lldbbuilddir(), [NINJA, '-v', 'install'])
+	footer()
+
     if target == 'all' or target == 'testlong':
 	header("Run Debug Info Tests")
 	run_cmd(conf.lldbbuilddir(), [NINJA, '-v', 'check-debuginfo'])
@@ -662,7 +667,7 @@ def run_cmd_errors_okay(working_dir, cmd
         (end_time - start_time).seconds, result))
 
 
-KNOWN_TARGETS = ['all', 'build', 'test', 'testlong']
+KNOWN_TARGETS = ['all', 'build', 'test', 'testlong', 'install']
 KNOWN_BUILDS = ['clang', 'cmake', 'lldb-cmake', 'fetch', 'artifact',
                 'static-analyzer-benchmarks']
 




More information about the llvm-commits mailing list