s416178-mlworkshops/Jenkinsfile

27 lines
710 B
Plaintext
Raw Normal View History

2020-04-03 10:47:06 +02:00
pipeline {
agent any
stages {
2020-04-03 11:31:21 +02:00
stage('checkout: Check out from version control') {
2020-04-03 10:47:06 +02:00
steps {
2020-04-03 11:31:21 +02:00
git 'https://git.wmi.amu.edu.pl/s416178/s416178-mlworkshops'
}
}
stage('copyArtifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s416178-mlworkshops'
}
}
stage('sh: Shell Script') {
steps {
sh('./s416178-mlworkshops/shell_script.sh')
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts './s416178-mlworkshops/result.log'
2020-04-03 10:47:06 +02:00
}
}
}
}