Groovy:在步骤中找不到这样的DSL方法“ansible”

bjg7j2ky  于 2022-11-01  发布在  其他
关注(0)|答案(1)|浏览(211)

我们为jenkins准备了一个复杂的groovy脚本,看起来像

def run_pipeline() {
  try {
    stage('Build') {
      sh "docker build . -t ansible"
    }
    stage('Linux Common Tag') {
      def stage_common = [
        [tag: 'common', serial: '100%', user: "${env.ANSIBLE_USER}", playbook: 'platform.yml'],
      ]

      run_stages(stage_common, serial)
    }
}

def run_stages(stages, serial) {
  stages.each { phase ->
    def serial_percent=serial.containsKey(phase.tag) ? serial[phase.tag]: phase.serial
    ansible(phase.tag, phase.user, phase.password, limit=phase.limit, playbook=phase.playbook, serial=serial_percent)
  }

  execute_stages()
}

def ansible(tag, user, password, limit='', serial='100%' playbook='platform.yml') {
    // stuff in here
}

我们得到的是

java.lang.NoSuchMethodError: No such DSL method 'ansible' found among steps

它似乎发生在run_stages函数中
有什么意见吗?谢谢!

u5i3ibmn

u5i3ibmn1#

该错误消息表示您正在使用的命令或“步骤”无效。这可能是因为您键入了错误的内容,或者没有安装提供该步骤的插件。我猜您没有安装ansible插件。

相关问题