s416422-mlworkshops/Jenkinsfile
2019-04-26 11:45:22 +02:00

8 lines
446 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 'sh script.sh test_lines.txt lines.txt'
archiveArtifacts 'lines.txt'
}