[zorg] r367913 - Add remaining parameters to the Jenkins LLDB pipeline descriptions.
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 5 12:43:02 PDT 2019
Author: adrian
Date: Mon Aug 5 12:43:02 2019
New Revision: 367913
URL: http://llvm.org/viewvc/llvm-project?rev=367913&view=rev
Log:
Add remaining parameters to the Jenkins LLDB pipeline descriptions.
Modified:
zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone
Modified: zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix?rev=367913&r1=367912&r2=367913&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix Mon Aug 5 12:43:02 2019
@@ -3,6 +3,8 @@ pipeline {
agent {label 'green-dragon-23'}
parameters {
string(name: 'ARTIFACT', defaultValue: 'clang-stage1-RA/latest', description: 'Compiler artifact to use for building the project')
+ string(name: 'BUILD_TYPE', defaultValue: 'Release', description: 'Default CMake build type; one of: Release, Debug, ...')
+ string(name: 'CLEAN', defaultValue: false, description: 'Whether or not to clean the build directory before building')
}
stages {
stage('Subversion Checkout') {
Modified: zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone?rev=367913&r1=367912&r2=367913&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone Mon Aug 5 12:43:02 2019
@@ -3,6 +3,8 @@ pipeline {
agent {label 'green-dragon-23'}
parameters {
string(name: 'ARTIFACT', defaultValue: 'clang-stage1-RA/latest', description: 'Compiler artifact to use for building the project')
+ string(name: 'BUILD_TYPE', defaultValue: 'Release', description: 'Default CMake build type; one of: Release, Debug, ...')
+ string(name: 'CLEAN', defaultValue: false, description: 'Whether or not to clean the build directory before building')
}
stages {
stage('Subversion Checkout') {
More information about the llvm-commits
mailing list