From e7454a7eab698a581cb93b26ac655f31d7e35849 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Thu, 4 Dec 2025 15:31:16 -0500 Subject: [PATCH] Persist default value for DRY_RUN when promoting build The decision was to make dry run off by default as it is primarily useful when testing changes to the scripts which isn't common. The change was previously made in the [job config](https://ci.eclipse.org/packaging/job/promote-a-build/configure) on Jenkins directly, but it will be overridden on the next build because the Jenkinsfile controls that setting. --- releng/org.eclipse.epp.config/tools/promote-a-build.Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/org.eclipse.epp.config/tools/promote-a-build.Jenkinsfile b/releng/org.eclipse.epp.config/tools/promote-a-build.Jenkinsfile index a4154f77..26e11d39 100644 --- a/releng/org.eclipse.epp.config/tools/promote-a-build.Jenkinsfile +++ b/releng/org.eclipse.epp.config/tools/promote-a-build.Jenkinsfile @@ -2,7 +2,7 @@ pipeline { agent any parameters { - booleanParam(defaultValue: true, description: 'Do a dry run of the build. Everything will be done except the final copy to download which will be echoed', name: 'DRY_RUN') + booleanParam(defaultValue: false, description: 'Do a dry run of the build. Everything will be done except the final copy to download which will be echoed', name: 'DRY_RUN') } options { timestamps()