ium_444421/training.Jenkinsfile
2022-05-01 09:25:07 +02:00

39 lines
1.1 KiB
Plaintext

pipeline {
agent {
dockerfile true
}
options {
copyArtifactPermission('s444421-evaluation');
}
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
string(
defaultValue: '1000',
description: 'Number of epochs',
name: 'EPOCHS'
)
}
stages {
stage('Check out from version control') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/training_and_evaluation']], extensions: [], userRemoteConfigs: [[credentialsId: 's444421', url: 'https://git.wmi.amu.edu.pl/s444421/ium_444421.git']]])
}
}
stage('Script') {
steps {
copyArtifacts filter: '*', projectName:'s444421-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh 'ipython ./training.py $EPOCHS'
archiveArtifacts artifacts: 'model.pth'
}
}
}
post {
success {
build job: 's444421-evaluation/training_and_evaluation'
}
}