s396302-mlworkshops/Jenkinsfile

24 lines
729 B
Plaintext
Raw Permalink Normal View History

2020-04-03 11:09:05 +02:00
pipeline {
2020-04-03 12:09:40 +02:00
agent any
2020-04-03 11:09:05 +02:00
stages {
2020-04-03 12:09:40 +02:00
stage('Stage 1') {
2020-04-03 11:09:05 +02:00
steps {
2020-04-03 12:09:40 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s396302/s396302-mlworkshops']]])
2020-04-03 11:09:05 +02:00
}
}
2020-04-03 12:26:13 +02:00
stage('Artefacts') {
steps {
2020-04-03 15:09:32 +02:00
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-03 15:12:07 +02:00
2020-04-03 15:09:32 +02:00
2020-04-03 12:26:13 +02:00
}
}
2020-04-03 12:54:10 +02:00
stage('Count lines') {
steps {
2020-04-03 14:47:43 +02:00
sh label: '', script: './count_lines.sh wikiniews_results.tsv > line_count.txt'
archiveArtifacts 'line_count.txt'
2020-04-03 12:54:10 +02:00
}
}
2020-04-03 12:09:40 +02:00
}
2020-04-03 11:09:05 +02:00
}