s460941-metrics/Jenkinsfile
2020-04-22 17:04:11 +02:00

21 lines
428 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 'lines_number.txt'
}
}
}
}