6.1 first attempt

This commit is contained in:
Anna Nowak 2021-04-28 20:21:08 +02:00
parent 1d7aa10b57
commit 1df69c4ccf

27
Jenkinsfile-train Normal file
View File

@ -0,0 +1,27 @@
pipeline {
agent {
docker { image 'adnovac/ium_s434760:latest' }
}
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD'
)
}
stages {
stage('copy artifacts')
{
steps
{
copyArtifacts(fingerprintArtifacts: true, projectName: 's434760-create-dataset', selector: buildParameter('WHICH_BUILD'))
sh 'python3.8 train.py'
}
}
stage('archive artifacts') {
steps {
archiveArtifacts 'model.h5'
}
}
}
}