Update plots

This commit is contained in:
s416178 2020-04-03 14:56:41 +02:00
parent f9e2f2471f
commit a897617e51
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ pipeline {
stage('Draw and save plots') {
steps {
sh('chmod +x ./draw_plots.sh')
sh('./draw_plots.sh wer.txt srr.txt')
sh('./draw_plots.sh wer srr')
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}

View File

@ -5,6 +5,6 @@ do
gnuplot <<- EOF
set term png
set output "${FILE}.png"
plot "${FILE}" using 1
plot "${FILE}.txt" using 1
EOF
done