17 lines
440 B
Groovy
17 lines
440 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s416122/s416122-mlworkshops'
|
|
}
|
|
}
|
|
stage('copyArtifacts') {
|
|
steps {
|
|
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s416122-mlworkshops'
|
|
}
|
|
}
|
|
}
|
|
}
|