2020-04-03 11:32:48 +02:00
|
|
|
pipeline {
|
2020-04-03 11:51:05 +02:00
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage('checkout: Check out from version control') {
|
|
|
|
steps {
|
|
|
|
git 'https://git.wmi.amu.edu.pl/s152483/s152483-mlworkshops'
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 12:07:34 +02:00
|
|
|
stage('copy Artifacts') {
|
|
|
|
steps {
|
|
|
|
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 11:51:05 +02:00
|
|
|
}
|
2020-04-03 11:32:48 +02:00
|
|
|
}
|