s460941-metrics/Jenkinsfile
2020-04-22 16:55:50 +02:00

21 lines
412 B
Groovy

pipeline {
agent any
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'
}
}
}
}