From 706f6789dcb40ee37f44afc404a52754ef13715c Mon Sep 17 00:00:00 2001 From: Larry Grill Date: Wed, 21 Mar 2018 09:07:11 -0400 Subject: [PATCH] [CLEANUP] Fix wrong parameter for cache cleaning Tidy up some param description text a bit too. --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d028e1f79..74e1c655d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,7 +41,7 @@ pipeline { booleanParam(defaultValue: true, description: 'Archive the artifacts', name: 'ARCHIVE_ARTIFACTS') booleanParam(defaultValue: false, description: 'No op build (test the build config)', name: 'NOOP') booleanParam(defaultValue: false, description: 'Distributes source checkouts on remote nodes ' + - '(otherwise assume workspace is shared on all', name: 'USE_DISTRIBUTED_SOURCE_CACHING') + '(Otherwise assume workspace is shared on all). Not yet fully implmented--do not use.', name: 'USE_DISTRIBUTED_SOURCE_CACHING') } environment { @@ -60,7 +60,7 @@ pipeline { } steps { dir( "${LIB_CACHE_ROOT_PATH}" ) { - println "Add cross-platform custom removal method here" + println "Add cross-platform custom removal method here--implement me!" } } } @@ -68,7 +68,7 @@ pipeline { stage('Clean Caches') { when { expression { - return params.CLEAN_DEPENDENCY_CACHES + return params.CLEAN_ALL_CACHES } } steps {