count lines

This commit is contained in:
s152483 2020-04-03 12:39:23 +02:00
parent 7e5c14a74b
commit 4ce0d21aac
2 changed files with 8 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -11,5 +11,10 @@ pipeline {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
}
}
stage('count lines') {
steps {
sh './cl.sh'
}
}
}
}

3
cl.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
wc -l wikiniews_results.tsv > cl_result.txt