s152483-mlworkshops/Jenkinsfile
2020-04-03 12:39:23 +02:00

20 lines
564 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: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
}
}
stage('count lines') {
steps {
sh './cl.sh'
}
}
}
}