From 1656c9426812720a48ed635df1dc66dbb0ac878c Mon Sep 17 00:00:00 2001 From: Dawid Jurkiewicz Date: Fri, 3 Apr 2020 11:28:15 +0200 Subject: [PATCH] Count lines and archive --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9025534..1ebe5fd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' + } + } } } \ No newline at end of file