Jenkinsfile update

This commit is contained in:
Damian Michalski 2020-04-03 13:07:58 +02:00
parent 517147318c
commit d4e97af54a

12
Jenkinsfile vendored
View File

@ -7,13 +7,19 @@ pipeline {
}
}
stage('Copy artifacts') {
copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
steps {
copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Shell') {
sh label: 'count lines', script: './count.sh'
steps {
sh label: 'count lines', script: './count.sh'
}
}
stage('Archive') {
archive './**'
steps {
archive './**'
}
}
}
}