20 lines
374 B
Groovy
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"
|
|
}
|
|
}
|
|
}
|
|
}
|