14 lines
552 B
Groovy
14 lines
552 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Zad_1_5') {
|
|
steps {
|
|
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/**'
|
|
}
|
|
}
|
|
}
|
|
}
|