s460941-metrics/Jenkinsfile
2020-04-22 16:31:19 +02:00

20 lines
374 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 ./lines.sh"
}
}
}
}