15 lines
445 B
Groovy
15 lines
445 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s152483/s152483-mlworkshops'
|
|
}
|
|
}
|
|
stage('copy Artifacts') {
|
|
steps {
|
|
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
}
|
|
}
|
|
}
|
|
} |