s442639-mlworkshops/Jenkinsfile
2019-04-26 10:53:20 +02:00

7 lines
402 B
Groovy

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/s442639/s442639-mlworkshops.git']]])
sh label: '', script: './script.sh'
sh 'ls -l'
}