2020-04-03 13:00:25 +02:00
|
|
|
pipeline {
|
2020-04-22 17:04:11 +02:00
|
|
|
agent { dockerfile true }
|
2020-04-22 16:31:19 +02:00
|
|
|
stages
|
|
|
|
{
|
|
|
|
stage('CopyArtifacts')
|
|
|
|
{
|
2020-04-03 13:00:25 +02:00
|
|
|
steps {
|
2020-04-22 16:11:24 +02:00
|
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
2020-04-22 16:23:26 +02:00
|
|
|
archiveArtifacts 'wikiniews_results.tsv'
|
2020-04-03 13:00:25 +02:00
|
|
|
}
|
2020-04-22 16:31:19 +02:00
|
|
|
}
|
|
|
|
stage('Shell Script')
|
|
|
|
{
|
|
|
|
steps {
|
2020-04-22 16:32:48 +02:00
|
|
|
sh label:"", script:"bash ./count.sh"
|
2020-04-23 21:36:49 +02:00
|
|
|
archiveArtifacts 'test.txt'
|
2020-04-22 16:55:50 +02:00
|
|
|
archiveArtifacts 'lines_number.txt'
|
2020-04-23 20:42:39 +02:00
|
|
|
archiveArtifacts 'wer_results.txt'
|
|
|
|
archiveArtifacts 'wer.txt'
|
|
|
|
archiveArtifacts 'srr.txt'
|
2020-04-22 16:31:19 +02:00
|
|
|
}
|
2020-04-03 13:00:25 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-22 15:59:59 +02:00
|
|
|
}
|