From 8b0ea1fd07c940e0aec5027a06a94b584ff9b7c9 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Mon, 22 Aug 2022 18:10:12 -0400 Subject: [PATCH] Default to not publish standalone As we don't publish it anymore normally, make that the default --- releng/promote-a-build.Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/promote-a-build.Jenkinsfile b/releng/promote-a-build.Jenkinsfile index d286ad47b71..ebc10af6d2f 100644 --- a/releng/promote-a-build.Jenkinsfile +++ b/releng/promote-a-build.Jenkinsfile @@ -3,7 +3,7 @@ pipeline { agent any parameters { booleanParam(defaultValue: true, description: 'Do a dry run of the build. All commands will be echoed.First run with this on, then when you are sure it is right, choose rebuild in the passing job and uncheck this box', name: 'DRY_RUN') - booleanParam(defaultValue: true, description: 'Include CDT standalone debugger when publishing (if applicable)', name: 'STANDALONE') + booleanParam(defaultValue: false, description: 'Include CDT standalone debugger when publishing (if applicable)', name: 'STANDALONE') booleanParam(defaultValue: false, description: 'Publish only the standalon debugger. This is used to add the standalone debugger from a different job to the already published CDT release', name: 'STANDALONE_ONLY') string(defaultValue: '9.8', description: 'The major and minor version of CDT being released (e.g. 9.7, 9.8, 10.0).', name: 'MINOR_VERSION') string(defaultValue: 'cdt-9.8.0', description: 'The full name of this release (e.g. cdt-9.4.2, cdt-9.5.0-rc1, cdt-9.5.0-photon-m7, cdt-9.5.0-photon-rc1)', name: 'MILESTONE')