Jenkinsfile update

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

6
Jenkinsfile vendored
View File

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