s442639-mlworkshops/Jenkinsfile

12 lines
476 B
Plaintext
Raw Normal View History

2019-04-26 10:47:25 +02:00
node {
2019-04-26 12:24:59 +02:00
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']]])
2019-04-26 12:33:05 +02:00
docker.build("the_docker_image")
2019-04-26 12:24:59 +02:00
sh label: '', script: './script.sh'
archiveArtifacts 'output'
sh 'ls -l'
sh 'cat output'
2019-04-26 10:47:25 +02:00
}