s426274-mlworkshops/Jenkinsfile

27 lines
713 B
Plaintext
Raw Normal View History

2020-04-03 16:17:28 +02:00
pipeline {
agent any
stages {
2020-04-21 20:55:53 +02:00
stage('Checkout') {
2020-04-03 16:17:28 +02:00
steps {
2020-04-21 20:55:53 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops']]])
2020-04-03 16:17:28 +02:00
}
}
2020-04-21 20:55:53 +02:00
stage('Copy artifacts'){
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Count lines and metrics'){
2020-04-21 19:04:45 +02:00
steps {
2020-04-21 20:33:28 +02:00
sh('chmod +x ./script.sh')
sh('./script.sh')
2020-04-21 19:04:45 +02:00
}
}
2020-04-21 20:44:36 +02:00
stage('Save result'){
steps {
archiveArtifacts 'lines_number.txt'
}
}
}
2020-04-21 20:55:53 +02:00
}