s412146-mlworkshops/Jenkinsfile

6 lines
424 B
Plaintext
Raw Normal View History

2019-04-26 11:13:08 +02:00
node{
copyArtifacts filter: '*', 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/s412146/s412146-mlworkshops.git']]])
sh label: '', script: 'Jenkinsfile'
archiveArtifacts 'Jenkinsfile'
2019-04-26 10:45:44 +02:00
}