s416072-mlworkshops/Jenkinsfile

11 lines
501 B
Plaintext
Raw Normal View History

2019-04-26 12:19:53 +02:00
node {
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/s416072/s416072-mlworkshops.git']]])
2019-04-26 12:23:06 +02:00
sh label: '', script: './skrypt.sh'
2019-04-26 12:19:53 +02:00
archiveArtifacts 'output'
2019-04-26 12:37:30 +02:00
def customImage = docker.build("my-custom-image")
customImage.inside {
sh 'echo aaaa'
}
2019-04-26 12:19:53 +02:00
}