s426274-mlworkshops/Jenkinsfile
2020-04-21 19:18:24 +02:00

24 lines
612 B
Groovy

pipeline {
agent any
stages {
stage('checkout: Check out from version control') {
steps {
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops.git'
}
}
stage('Copy Archive') {
steps {
script {
copyArtifacts filter: 'wikinews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
stage('Count lines'){
steps {
sh('chmod +x ./countLines.sh')
sh('./countLines.sh')
}
}
}
}