s416072-mlworkshops/Jenkinsfile

7 lines
409 B
Plaintext
Raw Normal View History

2019-04-26 12:19:53 +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/s416072/s416072-mlworkshops.git']]])
2019-04-26 12:23:06 +02:00
sh label: '', script: './skrypt.sh'
2019-04-26 12:19:53 +02:00
archiveArtifacts 'output'
}