From: caviedesj Date: Thu, 12 Feb 2026 09:49:00 +0000 (+0100) Subject: Fix. Remove unused parameters from the new Jenkinsfile X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F26%2F15726%2F1;p=osm%2FIM.git Fix. Remove unused parameters from the new Jenkinsfile Change-Id: I35db7017b372f23bd303079ea6f62ee42ce049d2 Signed-off-by: caviedesj --- 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' } }