This commit is contained in:
s460941 2020-04-23 22:05:33 +02:00
parent e5bf02b999
commit 62628a3f88

5
Jenkinsfile vendored
View File

@ -5,14 +5,15 @@ pipeline {
stage('CopyArtifacts') stage('CopyArtifacts')
{ {
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
archiveArtifacts 'wikiniews_results.tsv' archiveArtifacts 'wikiniews_results.tsv'
} }
} }
stage('Shell Script') stage('Shell Script')
{ {
steps { steps {
sh label:"", script:"bash ./count.sh" sh('chmod +x ./count.sh')
sh('./count.sh')
archiveArtifacts 'test.txt' archiveArtifacts 'test.txt'
archiveArtifacts 'lines_number.txt' archiveArtifacts 'lines_number.txt'
archiveArtifacts 'wer_results.txt' archiveArtifacts 'wer_results.txt'