Count lines and archive

This commit is contained in:
Dawid Jurkiewicz 2020-04-03 11:28:15 +02:00
parent 260a247aff
commit 1656c94268

6
Jenkinsfile vendored
View File

@ -7,5 +7,11 @@ pipeline {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Count lines') {
steps {
sh label: '', script: './count_lines.sh wikiniews_results.tsv > line_count.txt'
archiveArtifacts 'line_count.txt'
}
}
}
}