s426266-mlworkshops/Jenkinsfile
Lukasz Tatrocki 58bcd21462 count lines
2020-04-03 11:44:28 +02:00

25 lines
678 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
git 'https://git.wmi.amu.edu.pl/s426266/s426266-mlworkshops'
}
}
stage('Copy artifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
}
}
stage('Count lines') {
steps{
sh label: '', script: './count_lines.sh'
}
}
stage('Archive artifacts') {
steps{
archiveArtifacts 'count_lines.txt'
}
}
}
}