ium_487197/Jenkinsfile_train

24 lines
658 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'){
def testImage = docker.image("ium")
sh "chmod +x -R ${env.WORKSPACE}"
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'
sh "python3 train.py"
archiveArtifacts artifacts: 'baltimore_model3.pth'
2023-05-11 19:03:24 +02:00
2023-05-11 18:48:20 +02:00
}
}
}