s421813-mlworkshops/Jenkinsfile

12 lines
485 B
Plaintext
Raw Normal View History

2019-04-26 10:49:06 +02:00
node {
2019-04-26 10:46:36 +02:00
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts:
true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 10:52:19 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg:
[], userRemoteConfigs: [[url:
'https://git.wmi.amu.edu.pl/s421813/s421813-mlworkshops.git']]])
2019-04-26 11:03:43 +02:00
sh label: '', script: 'chmod 777 counter.sh'
sh label: '', script: './counter.sh'
archiveArtifacts 'txt.txt'
2019-04-26 10:49:06 +02:00
}