-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: active-choices-plugin
-
None
-
Environment:Jenkins 2.303.1
Active choices 2.6.1
Hello,
I work actually on jenkins version Jenkins 2.303.1 and i use active choice plugin version 2.6.1. When i use a Jenkinsfile declaration, the active choices is not shown but when i try in web UI on pipeline it's work.
can you help me please?
======The content of Jenkinsfile is =====
properties([
  [$class: 'BuildConfigProjectProperty',
    name: '',
    namespace: '',
    resourceVersion: '',
    uid: ''
  ],
  parameters([
    choice(choices: ['ruf', 'med'], description: 'Choisir le site emplacement', name: 'site'),
    [$class: 'CascadeChoiceParameter', choiceType: 'PT_RADIO', description: 'Merci de selectionner un datacenter',
      filterLength: 1,
      filterable: false,
      name: 'datacenter_name',
      randomName: 'choice-parameter-8649817365215456',
      referencedParameters: 'site, platform',
      script: [$class: 'GroovyScript',
        fallbackScript: [classpath: [],
        sandbox: false,
        script: ''
      ],
      script: [classpath: [],
        sandbox: false,
        script: '''if ( site == "med")
              else
{ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â return ["Rufisque"] Â Â Â Â Â Â Â Â Â Â Â Â Â Â }Â Â Â Â Â Â Â Â Â Â Â Â '''
          ]
      ]
    ]
  ])
])