Fix Jenkinsfile

This commit is contained in:
s416178 2020-04-03 11:33:43 +02:00
parent a1b20d9270
commit a05dcc4384

6
Jenkinsfile vendored
View File

@ -9,17 +9,17 @@ pipeline {
}
stage('copyArtifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s416178-mlworkshops'
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
}
}
stage('sh: Shell Script') {
steps {
sh('./s416178-mlworkshops/shell_script.sh')
sh('./shell_script.sh')
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts './s416178-mlworkshops/result.log'
archiveArtifacts './result.log'
}
}
}