s416422-mlworkshops/Jenkinsfile

8 lines
445 B
Plaintext
Raw Normal View History

2019-04-26 10:51:29 +02:00
node {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh 'ls -l'
2019-04-26 11:02:06 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416422/s416422-mlworkshops.git']]])
sh label: '', script: 'wc -l > lines.txt'
archiveArtifacts 'lines.txt'
2019-04-26 10:51:29 +02:00
}