ium_444356/Jenkinsfile_registry
Maciej Czajka e45315a8ed
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good
update registry.py, jenkinsfile_registry
2022-05-11 20:55:45 +02:00

15 lines
283 B
Plaintext

pipeline {
agent {
image 'maciejczajka'
args '-v /mlruns:/mlruns'
}
stages {
stage('Script') {
steps {
copyArtifacts projectName: 's444409-training/main'
sh 'python3 ./registry.py'
}
}
}
}