From 3900eab6185a4143570194495de45b9f1ad8152f Mon Sep 17 00:00:00 2001 From: caviedesj Date: Thu, 12 Feb 2026 10:44:53 +0100 Subject: [PATCH] Fix. Remove unused parameters from the new Jenkinsfile Change-Id: I3acbbb97420727b7a95765cfdee33e5da7dd9011 Signed-off-by: caviedesj --- Jenkinsfile.new | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Jenkinsfile.new b/Jenkinsfile.new index 856945a8..0131a86a 100644 --- a/Jenkinsfile.new +++ b/Jenkinsfile.new @@ -13,8 +13,6 @@ limitations under the License. */ -def DEFAULT_MODULE_NAME = 'devops' - pipeline { agent { label 'pool' } // options { disableConcurrentBuilds() } @@ -33,13 +31,9 @@ pipeline { // Pipeline control flags booleanParam(name: 'DO_INSTALL', defaultValue: true, description: '') - booleanParam(name: 'DO_DOCKERPUSH', defaultValue: true, description: '') booleanParam(name: 'DO_ROBOT', defaultValue: true, description: '') booleanParam(name: 'SAVE_CONTAINER_ON_FAIL', defaultValue: false, description: '') booleanParam(name: 'SAVE_CONTAINER_ON_PASS', defaultValue: false, description: '') - - // Docker image configuration - string(name: 'IMAGENAME', defaultValue: 'opensourcemano/devops', description: 'Image name for publish (reserved)') } environment { MDG = "${params.GERRIT_PROJECT?.contains('/') ? params.GERRIT_PROJECT.split('/')[1] : params.GERRIT_PROJECT}" @@ -139,4 +133,3 @@ pipeline { } } } - -- 2.25.1