24 lines
662 B
Plaintext
24 lines
662 B
Plaintext
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.build("ium")
|
|
sh "chmod +x -R ${env.WORKSPACE}"
|
|
testImage.inside{
|
|
copyArtifacts filter: 'baltimore_train.csv', projectName: 's487197-create-dataset'
|
|
sh "python3 ium_train.py"
|
|
archiveArtifacts artifacts: 'baltimore_model3.pth'
|
|
|
|
|
|
}
|
|
|
|
}
|
|
} |