diff --git a/Jenkinsfile b/Jenkinsfile index dde4554..7c488d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,8 +16,15 @@ pipeline { stage('Copy artifacts'){ steps{ - copyArtifacts filter: 'wikiniews_results.tsv ', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() + copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() } } + + stage('Shell script'){ + steps{ + sh label: '', script: 'wc -l wikiniews_results.tsv' + } + } + } } \ No newline at end of file