s452094-mlworkshops/Jenkinsfile

14 lines
552 B
Plaintext
Raw Normal View History

2020-04-03 11:18:54 +02:00
pipeline {
agent any
stages {
2020-04-03 12:44:21 +02:00
stage('Zad_1_5') {
2020-04-03 11:18:54 +02:00
steps {
2020-04-03 12:44:21 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452094/s452094-mlworkshops']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh label: '', script: 'wc -l wikiniews_results.tsv > results/result.txt'
archive 'results/**'
2020-04-03 11:18:54 +02:00
}
}
}
}