ium_487197/Jenkinsfile_train

23 lines
637 B
Plaintext
Raw Normal View History

2023-05-11 18:48:20 +02:00
node {
stage('Preparation') {
properties([
parameters([
])
])
}
stage('checkout: Check out from version control') {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's487197', url: 'https://git.wmi.amu.edu.pl/s487197/ium_487197']]])
}
stage('Dockerfile'){
2023-05-11 19:34:01 +02:00
def testImage = docker.image('s487197/ium:33')
2023-05-11 19:03:24 +02:00
testImage.inside{
2023-05-11 18:48:20 +02:00
copyArtifacts filter: 'baltimore_train.csv', projectName: 's487197-create-dataset'
2023-05-11 19:06:23 +02:00
sh "python3 ium_train.py"
2023-05-11 18:48:20 +02:00
archiveArtifacts artifacts: 'baltimore_model3.pth'
2023-05-11 19:03:24 +02:00
2023-05-11 18:48:20 +02:00
}
}
}