s460941-metrics/Jenkinsfile

20 lines
374 B
Plaintext
Raw Normal View History

2020-04-03 13:00:25 +02:00
pipeline {
agent any
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-22 16:31:19 +02:00
}
2020-04-03 13:00:25 +02:00
}
}
2020-04-22 15:59:59 +02:00
}