12 lines
485 B
Groovy
12 lines
485 B
Groovy
node {
|
|
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts:
|
|
true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
|
|
doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg:
|
|
[], userRemoteConfigs: [[url:
|
|
'https://git.wmi.amu.edu.pl/s421813/s421813-mlworkshops.git']]])
|
|
sh label: '', script: 'chmod 777 counter.sh'
|
|
sh label: '', script: './counter.sh'
|
|
archiveArtifacts 'txt.txt'
|
|
}
|