copyArtifacts fix (Jenkinsfile)

This commit is contained in:
s407323 2019-04-26 11:29:26 +02:00
parent 0ad62dec49
commit f4f8d96291

12
Jenkinsfile vendored
View File

@ -6,15 +6,11 @@ pipeline {
echo 'Hello world!' echo 'Hello world!'
} }
} }
stage('Copy Archive') {
stage('Stage 2') {
steps { steps {
script { copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: 'ASR-eval/'
step ([$class: 'CopyArtifact',
projectName: 'Create_archive',
filter: "packages/infra*.zip",
target: 'Infra']);
}
} }
} }
} }
} }