This commit is contained in:
Dominika Grajewska 2019-04-26 13:57:34 +02:00
parent 50718cc018
commit 4ae26dc0d3
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN apt install -y gawk
RUN gcc --version
RUN apt install -y build-essential
RUN git clone https://github.com/usnistgov/SCTK.git

2
Jenkinsfile vendored
View File

@ -10,6 +10,6 @@ customImage.inside {
sh 'awk -f file2.awk < wikiniews_results.tsv > reference.txt'
sh 'awk -f file3.awk < reference.txt > reference.trn
sh 'awk -f file3.awk < hypothesis.txt > hypothesis.trn
sh 'sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all srdout'
sh 'sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout'
}
}