Issue Type: Improvement Improvement
Assignee: Unassigned
Components: copyartifact
Created: 27/Sep/14 6:01 AM
Description:

With supporting SimpleBuildStep introduced in Jenkins 1.577...

(copied from https://github.com/jenkinsci/copyartifact-plugin/pull/43)
Atm, it works using the base 'step' step (i.e. you need to specify the $class) e.g.

node('master') {
  // Do stuff....
  step($class: 'hudson.plugins.copyartifact.CopyArtifact', projectName: 'project1', filter: 'hellothere.txt')
  // More stuff
}

Once the workflow apis are published we can build a dedicated step for this, it would look something like the following:

node('master') {
  // Do stuff....
  copy(projectName: 'project1', filter: 'hellothere.txt')
  // More stuff
}
Project: Jenkins
Priority: Major Major
Reporter: ikedam
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to