Fix. Remove unused parameters from the new Jenkinsfile 24/15724/1
authorcaviedesj <juancamilo.caviedesvalencia.ext@telefonica.com>
Thu, 12 Feb 2026 09:24:20 +0000 (10:24 +0100)
committercaviedesj <juancamilo.caviedesvalencia.ext@telefonica.com>
Thu, 12 Feb 2026 09:24:20 +0000 (10:24 +0100)
Change-Id: I303e29956eb0fafde44b751340174560c99fc5fa
Signed-off-by: caviedesj <juancamilo.caviedesvalencia.ext@telefonica.com>
Jenkinsfile.new

index fc9edc8..ee4a5fe 100644 (file)
@@ -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}"