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') { stage('Draw and save plots') {
steps { steps {
sh('chmod +x ./draw_plots.sh') sh('chmod +x ./draw_plots.sh')
sh('./draw_plots.sh wer.txt srr.txt') sh('./draw_plots.sh wer srr')
archiveArtifacts 'wer.png' archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png' archiveArtifacts 'srr.png'
} }

View File

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