[zorg] r367927 - Fix groovy type error

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 5 14:01:17 PDT 2019


Author: adrian
Date: Mon Aug  5 14:01:17 2019
New Revision: 367927

URL: http://llvm.org/viewvc/llvm-project?rev=367927&view=rev
Log:
Fix groovy type error

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=367927&r1=367926&r2=367927&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:01:17 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, ...')
-        string(name: 'CLEAN', defaultValue: false, description: 'Whether or not to clean the build directory before building')
+        booleanParam(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=367927&r1=367926&r2=367927&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:01:17 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, ...')
-        string(name: 'CLEAN', defaultValue: false, description: 'Whether or not to clean the build directory before building')
+        booleanParam(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