This commit is contained in:
s460941 2020-04-22 16:31:19 +02:00
parent 8a9e206d29
commit 4283e2b207

12
Jenkinsfile vendored
View File

@ -1,11 +1,19 @@
pipeline { pipeline {
agent any agent any
stages { stages
stage('CopyArtifacts') { {
stage('CopyArtifacts')
{
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
archiveArtifacts 'wikiniews_results.tsv' archiveArtifacts 'wikiniews_results.tsv'
} }
} }
stage('Shell Script')
{
steps {
sh label:"", script:"bash ./lines.sh"
}
}
} }
} }