ium_444501/training.Jenkinsfile
s444501 f9ac0dc219
All checks were successful
s444501-training/pipeline/head This commit looks good
.
2022-05-01 14:28:34 +02:00

31 lines
618 B
Plaintext

pipeline {
agent {
docker {image 'zadanie'}
}
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Copy artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444501-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('Train model') {
steps {
sh 'python biblioteki_ml.py'
}
}
stage('Archive model') {
steps {
archiveArtifacts artifacts: 'model.pkl'
}
}
}
}