8 lines
457 B
Groovy
8 lines
457 B
Groovy
node {
|
|
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
sh 'ls -l'
|
|
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 test_lines.txt > lines.txt'
|
|
archiveArtifacts 'lines.txt'
|
|
}
|