s416094-mlworkshops/Jenkinsfile

6 lines
403 B
Plaintext
Raw Normal View History

2019-04-26 10:20:17 +02:00
node {
2019-04-26 10:31:12 +02:00
copyArtifacts 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/s416094/s416094-mlworkshops']]])
2019-04-26 10:41:58 +02:00
files = findFiles(glob: '*.*')
2019-04-26 10:31:12 +02:00
sh label: '', script: 'counter.sh'
2019-04-26 10:20:17 +02:00
}