-
Improvement
-
Resolution: Fixed
-
Major
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 }
- depends on
-
JENKINS-25625 SECURITY-144-compat usage breaks tests due to code signing
- Resolved
-
JENKINS-30357 CopyArtifact step fails when using ParameterizedBuildSelector class for selecting build
- Closed
- is duplicated by
-
JENKINS-26068 ClassCastException when using Copy Artifact plugin with Workflow
- Resolved
- links to