s442639-mlworkshops/Jenkinsfile

9 lines
450 B
Plaintext
Raw Normal View History

2019-04-26 10:47:25 +02:00
node {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 10:53:20 +02:00
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'
2019-04-26 10:54:19 +02:00
archiveArtifacts 'output'
2019-04-26 10:47:25 +02:00
sh 'ls -l'
2019-04-26 11:18:37 +02:00
sh 'cat output'
2019-04-26 10:47:25 +02:00
}