16 lines
854 B
Groovy
16 lines
854 B
Groovy
node {
|
|
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416072/s416072-mlworkshops.git']]])
|
|
sh label: '', script: './skrypt.sh'
|
|
archiveArtifacts 'output'
|
|
def customImage = docker.build("my-custom-image")
|
|
customImage.inside {
|
|
sh 'echo aaaa'
|
|
sh 'awk -f file.awk < wikiniews_results.tsv > hypothesis.txt'
|
|
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 -p > tmp_metrics'
|
|
}
|
|
}
|