jira-importer / jira-github-issues-cifs

0 stars 0 forks source link

[JENKINS-28744] Support for confguring publish over CIFS Plugin #44

Closed jira-importer closed 8 years ago

jira-importer commented 9 years ago

Add support for configuring the Publish over CIFS plugin to the DSL.

https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+CIFS+Plugin


Originally reported by marksyms, imported from: Support for confguring publish over CIFS Plugin
  • assignee: marksyms
  • status: Closed
  • priority: Minor
  • resolution: Fixed
  • resolved: 2016-04-19T02:02:03+10:00
  • imported: 2022/01/10
jira-importer commented 9 years ago

daspilker:

Added a label for publish-over-cifs-plugin because the DSL can also be added to that plugin through the Job DSL extension point.

jira-importer commented 8 years ago

daspilker:

The upcoming generic DSL (https://github.com/jenkinsci/job-dsl-plugin/pull/816) will enable support for the CIFS Publisher plugin:

job('example') {
  publishers {
    cifsPublisherPlugin {
      continueOnError(false)
      failOnError(true)
      alwaysPublishFromMaster(false)
      masterNodeName('')
      paramPublish {
parameterName('FOO')
      }
      publishers {
cifsPublisher {
  configName('')
  verbose(false)
  useWorkspaceInPromotion(false)
  usePromotionTimestamp(false)
  retry {
    retries(5)
    retryDelay(10)
  }
  label {
    label('')
  }
  transfers {
    cifsTransfer {
      sourceFiles('')
      excludes('')
      remoteDirectory('')
      removePrefix('')
      remoteDirectorySDF(false)
      flatten(false)
      cleanRemote(true)
      noDefaultExcludes(false)
      makeEmptyDirs(true)
      patternSeparator('')
    }
  }
}
      }
    }
  }
}