jenkinsfile modified

This commit is contained in:
Yevheniia Tsapkova 2020-04-03 12:42:18 +02:00
parent ca9f5520f7
commit 2f32f635d0
1 changed files with 6 additions and 0 deletions

6
Jenkinsfile vendored
View File

@ -12,6 +12,12 @@ pipeline {
steps {
echo 'Hello World'
}
stage('Copy artifacts'){
steps{
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
}
}