Test Jenkins_train

This commit is contained in:
Wojciech Lidwin 2023-05-11 18:48:20 +02:00
parent 192b04b1cb
commit a9aa119e82

24
Jenkinsfile_train Normal file
View File

@ -0,0 +1,24 @@
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}"
testImage.inside("""-w=${WORKSPACE} """){ {
copyArtifacts filter: 'baltimore_train.csv', projectName: 's487197-create-dataset'
sh "python3 train.py"
archiveArtifacts artifacts: 'baltimore_model3.pth'
}
}
}
}