Testing from the inside
This commit is contained in:
parent
ba172c80b3
commit
14accac42d
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -2,7 +2,12 @@ node {
|
|||||||
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
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']]])
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s442639/s442639-mlworkshops.git']]])
|
||||||
|
|
||||||
docker.build("the_docker_image")
|
def docker_image = docker.build("the_docker_image")
|
||||||
|
|
||||||
|
docker_image.inside{
|
||||||
|
sh "echo echo inside"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
sh label: '', script: './script.sh'
|
sh label: '', script: './script.sh'
|
||||||
archiveArtifacts 'output'
|
archiveArtifacts 'output'
|
||||||
|
Loading…
Reference in New Issue
Block a user