This commit is contained in:
Kamil Paprota 2020-04-03 16:48:41 +02:00
parent c3fd9b0214
commit 2d522622b1
3 changed files with 16 additions and 0 deletions

View File

@ -6,6 +6,8 @@ RUN apt install -y gcc
RUN gcc --version
RUN apt install -y build-essential
RUN git clone https://github.com/usnistgov/SCTK.git
RUN apt-get update && \
apt-get install -y gnuplot5
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin

5
Jenkinsfile vendored
View File

@ -16,6 +16,11 @@ pipeline {
archiveArtifacts 'wer.tsv'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
}
}
stage('Wykresiki'){
steps{
build 's416267-plots'
}
}
}
}

9
plots.sh Normal file
View File

@ -0,0 +1,9 @@
for FILE in "$@"
do
gnuplot <<- EOF
set term png
set title "Graph - ${FILE}"
set output "${FILE}.png"
plot "${FILE}.txt" with points pointtype 5 notitle
EOF
done