[zorg] r367934 - Change CLEAN to a string parameter so it appears in the shell environment
    Adrian Prantl via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Aug  5 14:36:07 PDT 2019
    
    
  
Author: adrian
Date: Mon Aug  5 14:36:07 2019
New Revision: 367934
URL: http://llvm.org/viewvc/llvm-project?rev=367934&view=rev
Log:
Change CLEAN to a string parameter so it appears in the shell environment
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=367934&r1=367933&r2=367934&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix Mon Aug  5 14:36:07 2019
@@ -4,7 +4,7 @@ pipeline {
     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, ...')
-        booleanParam(name: 'CLEAN', defaultValue: false, description: 'Whether or not to clean the build directory before building')
+        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=367934&r1=367933&r2=367934&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-standalone Mon Aug  5 14:36:07 2019
@@ -4,7 +4,7 @@ pipeline {
     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, ...')
-        booleanParam(name: 'CLEAN', defaultValue: false, description: 'Whether or not to clean the build directory before building')
+        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