小编Fat*_*son的帖子

将 Bitbucket Approve Plugin 包含到 Jenkins 管道

我想将Bitbucket Approve Plugin包含到我的 Jenkins Pipeline 步骤之一中。这可能吗?

node {
stage 'Checkout'
    checkout scm

stage 'Build'
    bat 'nuget restore SolutionName.sln'
    bat "\"${tool 'MSBuild'}\" SolutionName.sln /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=1.0.0.${env.BUILD_NUMBER}"

stage 'Archive'
    archive 'ProjectName/bin/Release/**'
Run Code Online (Sandbox Code Playgroud)

所以如果这将是我的管道。我如何将插件添加到舞台?

jenkins jenkins-plugins jenkins-pipeline

7
推荐指数
1
解决办法
397
查看次数