This commit is contained in:
s460941 2020-04-22 16:31:19 +02:00
parent 8a9e206d29
commit 4283e2b207

12
Jenkinsfile vendored
View File

@ -1,11 +1,19 @@
pipeline {
agent any
stages {
stage('CopyArtifacts') {
stages
{
stage('CopyArtifacts')
{
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
archiveArtifacts 'wikiniews_results.tsv'
}
}
stage('Shell Script')
{
steps {
sh label:"", script:"bash ./lines.sh"
}
}
}
}