zad4 zmiana sposobu zapisu plikow FIX2

This commit is contained in:
alicja.m.musial 2020-04-03 18:25:41 +02:00
parent ce26da4d53
commit 7f72b0f35b
2 changed files with 3 additions and 2 deletions

1
Jenkinsfile vendored
View File

@ -31,6 +31,7 @@ pipeline {
stage('Archive WER and SRR results') {
steps {
copyArtifacts filter: 'wer.txt srr.txt', fingerprintArtifacts: true, projectName: 's452097-metrics', selector: lastSuccessful(), target: 'previousResults'
sh('chmod +x ./addResults.sh')
sh label: 'Add results to file', script: './addResults.sh'
}
}

View File

@ -3,8 +3,8 @@
mv previousResults/wer.txt werNew.txt
mv previousResults/srr.txt srrNew.txt
tail -n199 werNew.txt > werNew2.txt
tail -n199 srrNew.txt > srrNew2.txt
tail -n99 werNew.txt > werNew2.txt
tail -n99 srrNew.txt > srrNew2.txt
cat wer.txt >> werNew2.txt
cat srr.txt >> srrNew2.txt