s416094-mlworkshops/Jenkinsfile

6 lines
458 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()
2019-04-26 10:48:03 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '8cdbf19a-e62d-4807-9112-bc7a8d225074', url: 'https://git.wmi.amu.edu.pl/s416094/s416094-mlworkshops']]])
2019-04-26 10:49:45 +02:00
sh label: '', script: 'ls -la'
2019-04-26 10:31:12 +02:00
sh label: '', script: 'counter.sh'
2019-04-26 10:20:17 +02:00
}