s452088-mlworkshops/Jenkinsfile

14 lines
608 B
Plaintext
Raw Normal View History

2019-04-26 11:16:15 +02:00
node {
sh 'echo hello world'
2019-04-26 11:18:35 +02:00
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 11:22:57 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452088/s452088-mlworkshops.git']]])
2019-04-26 11:34:00 +02:00
sh label: '', script: 'chmod +x metrics.sh'
2019-04-26 11:31:19 +02:00
sh label: '', script: './metrics.sh'
2019-04-26 12:41:51 +02:00
archive 'wyniki.out'
2019-04-26 12:27:13 +02:00
def customImage = docker.build("my-custom-image")
customImage.inside {
sh 'echo Wooooot Whaaat'
}
2019-04-26 11:09:39 +02:00
}