"Tag this build" link repeated in Pipeline job with multiple svn step

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      If you create a pipeline script like this

      node {
          svn 'https://SVN_URL/REPO_NAME/branches/branch1'
          svn 'https://SVN_URL/REPO_NAME/branches/branch2'
      }
      

      or

      node {
          checkout([
              $class: 'SubversionSCM',
              locations: [
                  [
                      credentialsId: '083ca939-470f-4bbd-9f32-30fc845fbb45',
                      depthOption: 'infinity',
                      ignoreExternalsOption: true,
                      local: './tmp', remote: 'https://SVN_URL/REPO_NAME/branches/branch2'
                  ]
              ],
              workspaceUpdater: [$class: 'CheckoutUpdater']
          ])
          checkout([
              $class: 'SubversionSCM',
              locations: [
                  [
                      credentialsId: '083ca939-470f-4bbd-9f32-30fc845fbb45',
                      depthOption: 'infinity',
                      ignoreExternalsOption: true,
                      local: '.', remote: 'https://SVN_URL/REPO_NAME/branches/branch2'
                  ]
              ],
              workspaceUpdater: [$class: 'CheckoutUpdater']
          ])
      }
      

      In the job build page appears the "Tag this build" link repeated.

      Both links are the same and shows the same information. This behaviour can not be reproduced with Freestyle because in Freestyle jobs you only can add one source code repository.

        1. image-2019-02-15-12-42-31-236.png
          55 kB
          Michael Kostukov
        2. tag-this-build-repeated.png
          38 kB
          Darío Villadiego

            Assignee:
            Diego Díez
            Reporter:
            Darío Villadiego
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: