add ex1 ii and iii

This commit is contained in:
Olga 2020-04-03 14:01:10 +02:00
parent ecd46b6275
commit 09b5c5403b
2 changed files with 11 additions and 0 deletions

10
Jenkinsfile vendored
View File

@ -13,5 +13,15 @@ pipeline {
url: 'https://git.wmi.amu.edu.pl/s452092/s4520929-mlworkshops.git']]])
}
}
stage('Copy Archive') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Count Words') {
steps {
sh './count.sh'
}
}
}
}

1
count.sh Normal file
View File

@ -0,0 +1 @@
wc -l wikiniews_results.tsv > results.txt