Jenkins Cloud Foundry插件似乎没有正确使用manifest.yml

Jenkins Cloud Foundry插件似乎没有正确使用manifest.yml,jenkins,jenkins-plugins,cloud-foundry,ibm-cloud,Jenkins,Jenkins Plugins,Cloud Foundry,Ibm Cloud,我正试图在CloudFoundry(Bluemix)上使用staticfile buildpack创建一个简单的HTML/CSS页面。使用以下清单进行手动CF推送时,我没有任何问题: --- applications: - name: rrn-hasher memory: 64M host: rrn-hasher buildpack: https://github.com/cloudfoundry/staticfile-buil

我正试图在CloudFoundry(Bluemix)上使用staticfile buildpack创建一个简单的HTML/CSS页面。使用以下清单进行手动CF推送时,我没有任何问题:

   ---
     applications:
     - name: rrn-hasher
       memory: 64M
       host: rrn-hasher
       buildpack: https://github.com/cloudfoundry/staticfile-buildpack.git
       stack: cflinuxfs2
当我尝试使用并将其设置为选择manifest.yml而不是手动配置Jenkins中的所有属性时,会出现以下异常

 It looks like you're deploying on a stack (currently set to *lucid64*) that's not supported by this buildpack.

出于某种原因,插件似乎没有使用manifest.yml中的堆栈

快速查看插件的属性后,它似乎没有考虑堆栈属性。。我必须提交一个问题或提出一个请求来支持它。

堆栈选项是一个相当新的选项,看起来CF插件还不支持它,因为我看不到它被解析


您可以向该GitHub提交一个包含支持它的更改的pull请求,或者提交一个作为有效配置参数的.not list
堆栈。我已经提交了一份申请,将其添加到Jenkins插件中。

是的,我注意到,我想知道我是否需要将其提交到Jenkins存储库还是上游存储库?我在上游ActiveState存储库中制作了一张处理堆栈属性的票据。这已经被合并到云铸造詹金斯插件。完美!我希望它能很快被合并和发布,因为这是一个让人头疼的问题非常感谢。