From caf4afc15b1a48b04147f13c4df099d24d404d26 Mon Sep 17 00:00:00 2001 From: caviedesj Date: Thu, 12 Feb 2026 10:49:00 +0100 Subject: [PATCH] Fix. Remove unused parameters from the new Jenkinsfile Change-Id: I35db7017b372f23bd303079ea6f62ee42ce049d2 Signed-off-by: caviedesj --- Jenkinsfile.new | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Jenkinsfile.new b/Jenkinsfile.new index 31e7dbf..0587842 100644 --- a/Jenkinsfile.new +++ b/Jenkinsfile.new @@ -13,8 +13,6 @@ limitations under the License. */ -def DEFAULT_MODULE_NAME = 'im' - pipeline { agent { label 'pool' } options { disableConcurrentBuilds() } @@ -26,23 +24,10 @@ 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: 'IM', 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}" - CONTAINER_NAME = "${params.GERRIT_PROJECT}-${params.GERRIT_BRANCH}".toLowerCase() TEST_IMAGE = 'overdrive3000/tox-osm:v1.6' - DOCKER_REGISTRY = 'osm.etsi.org:5050/devops/cicd/' } stages { stage('Prepare') { steps { sh 'env' } } -- 2.25.1