25 lines
553 B
Groovy
25 lines
553 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages
|
|
{
|
|
stage('CopyArtifacts')
|
|
{
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
archiveArtifacts 'wikiniews_results.tsv'
|
|
}
|
|
}
|
|
stage('Shell Script')
|
|
{
|
|
steps {
|
|
sh label:"", script:"bash ./count.sh"
|
|
archiveArtifacts 'test.txt'
|
|
archiveArtifacts 'lines_number.txt'
|
|
archiveArtifacts 'wer_results.txt'
|
|
archiveArtifacts 'wer.txt'
|
|
archiveArtifacts 'srr.txt'
|
|
}
|
|
}
|
|
}
|
|
}
|