This commit is contained in:
s434695 2021-05-15 14:09:44 +02:00
parent 251926f864
commit 9884244768

View File

@ -1,6 +1,6 @@
pipeline {
agent {
dockerfile true
any;
}
parameters{
buildSelector(
@ -26,11 +26,17 @@ pipeline {
copyArtifacts fingerprintArtifacts: true, projectName: 's434695-create-dataset', selector: buildParameter('WHICH_BUILD')
}
}
stage('Docker'){
stage('docker-training') {
steps {
sh 'python3 "./train.py"'
sh 'python3 "./sacred1.py"'
sh 'python3 "./sacred2.py"'
script {
def img = docker.build('shroomy/ium:5')
img.inside {
sh "python3 train.py"
sh "python3 sacred1.py"
sh "python3 sacred2.py"
}
}
}
}
stage('archiveArtifacts') {