35 lines
992 B
Plaintext
35 lines
992 B
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'
|
|
}
|
|
}
|
|
}
|
|
}
|