s416122-mlworkshops/Jenkinsfile

17 lines
440 B
Plaintext
Raw Normal View History

2020-04-03 11:29:56 +02:00
pipeline {
2020-04-03 11:32:12 +02:00
agent any
2020-04-03 11:29:56 +02:00
2020-04-03 11:32:12 +02:00
stages {
2020-04-03 13:10:35 +02:00
stage('checkout: Check out from version control') {
2020-04-03 11:32:12 +02:00
steps {
2020-04-03 13:10:35 +02:00
git 'https://git.wmi.amu.edu.pl/s416122/s416122-mlworkshops'
2020-04-03 11:32:12 +02:00
}
2020-04-03 13:16:03 +02:00
}
stage('copyArtifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s416122-mlworkshops'
}
2020-04-03 11:32:12 +02:00
}
}
2020-04-03 13:10:35 +02:00
}