2022-05-06 18:56:43 +02:00
|
|
|
pipeline {
|
|
|
|
agent {
|
|
|
|
dockerfile {
|
|
|
|
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t sebastianwalesa"
|
|
|
|
}
|
|
|
|
}
|
2022-05-06 20:19:11 +02:00
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
defaultValue: '1000',
|
|
|
|
description: 'Number of epochs',
|
|
|
|
name: 'EPOCHS',
|
|
|
|
trim: false
|
|
|
|
)
|
|
|
|
}
|
2022-05-06 18:56:43 +02:00
|
|
|
stages {
|
2022-05-06 19:30:09 +02:00
|
|
|
stage('Train-stage'){
|
|
|
|
steps {
|
|
|
|
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
|
2022-05-06 20:19:11 +02:00
|
|
|
sh 'python3 ./ml_pytorch.py $EPOCHS'
|
2022-05-06 19:30:09 +02:00
|
|
|
archiveArtifacts artifacts: 'Model_xPosition.pkl', followSymlinks: false
|
|
|
|
}
|
|
|
|
}
|
2022-05-06 22:57:40 +02:00
|
|
|
stage('Evaluation-job'){
|
|
|
|
steps {
|
|
|
|
build job: 's478839-evaluation/feature/'
|
|
|
|
}
|
|
|
|
}
|
2022-05-06 18:56:43 +02:00
|
|
|
}
|
2022-05-06 20:09:56 +02:00
|
|
|
post {
|
|
|
|
success {
|
|
|
|
emailext body: 'SUCCESS', subject: 's478839-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
failure {
|
|
|
|
emailext body: 'FAILURE', subject: 's478839-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
unstable {
|
|
|
|
emailext body: 'UNSTABLE', subject: 's478839-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
changed {
|
|
|
|
emailext body: 'CHANGED', subject: 's478839-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-06 18:56:43 +02:00
|
|
|
}
|