From 9b9b6bd254f5bb9418eeb6d5f79aad6defefd591 Mon Sep 17 00:00:00 2001 From: caviedesj Date: Thu, 12 Feb 2026 10:24:20 +0100 Subject: [PATCH] Fix. Remove unused parameters from the new Jenkinsfile Change-Id: I303e29956eb0fafde44b751340174560c99fc5fa Signed-off-by: caviedesj --- Jenkinsfile.new | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Jenkinsfile.new b/Jenkinsfile.new index fc9edc8..ee4a5fe 100644 --- a/Jenkinsfile.new +++ b/Jenkinsfile.new @@ -13,8 +13,6 @@ limitations under the License. */ -def DEFAULT_MODULE_NAME = 'common' - pipeline { agent { label 'pool' } options { disableConcurrentBuilds() } @@ -26,17 +24,6 @@ pipeline { string(name: 'GERRIT_PATCHSET_REVISION', defaultValue: env.GERRIT_PATCHSET_REVISION ?: '', description: '') string(name: 'PROJECT_URL_PREFIX', defaultValue: 'https://osm.etsi.org/gerrit', description: '') string(name: 'DOCKER_ARGS', defaultValue: '', description: 'Extra docker args for docker run') - - // E2E test parameters - string(name: 'OPENSTACK_BASE_IMAGE', defaultValue: 'ubuntu24.04', description: '') - string(name: 'OPENSTACK_OSM_FLAVOR', defaultValue: 'osm.sanity', description: '') - - booleanParam(name: 'DO_INSTALL', defaultValue: true, description: '') - booleanParam(name: 'DO_ROBOT', defaultValue: true, description: '') - string(name: 'MODULE_NAME', defaultValue: 'common', description: 'Name of the module under test') - - booleanParam(name: 'SAVE_CONTAINER_ON_FAIL', defaultValue: false, description: '') - booleanParam(name: 'SAVE_CONTAINER_ON_PASS', defaultValue: false, description: '') } environment { MDG = "${params.GERRIT_PROJECT?.contains('/') ? params.GERRIT_PROJECT.split('/')[1] : params.GERRIT_PROJECT}" -- 2.25.1